variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v1
Sensor network script: Node: uv_index | code: gst | fields: ts, lat, type, lon Sensor: drought_index | fields: depth, value, lon, reading Task: Fetch level from uv_index where qc exists in drought_index sensor data for the same qc. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005600
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: type, reading, level, ts Sensor: uv_index | fields: unit, level, type, value Task: Get level from soil_moisture where ts appears in uv_index readings with matching type. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="type", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005601
train
v2
Sensor network script: Node: sunlight | code: thr | fields: level, unit, qc, reading Sensor: rainfall | fields: level, value, depth, lat Task: Get depth from sunlight where a corresponding entry exists in rainfall with the same depth. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005602
train
v1
Sensor network script: Node: dew_point | code: prt | fields: unit, lon, depth, ts Sensor: cloud_cover | fields: type, value, ts, level Task: Retrieve lon from dew_point whose unit is found in cloud_cover records where depth matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005603
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: depth, level, unit, lon Sensor: snow_depth | fields: qc, level, reading, ts Task: Get lat from soil_moisture where unit appears in snow_depth readings with matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="qc", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005604
train
v1
Sensor network script: Node: evaporation | code: gst | fields: type, ts, depth, qc Sensor: dew_point | fields: qc, type, value, ts Task: Retrieve depth from evaporation whose unit is found in dew_point records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="ts", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005605
train
v3
Sensor network script: Node: temperature | code: stn | fields: unit, level, lat, qc Sensor: dew_point | fields: depth, lon, ts, type Task: Get level from temperature where value exceeds the count of value from dew_point for the same unit. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("dew_point", code="cnd"), match="unit"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005606
train
v1
Sensor network script: Node: dew_point | code: prt | fields: value, lat, depth, unit Sensor: humidity | fields: ts, reading, depth, level Task: Retrieve depth from dew_point whose type is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="qc", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005607
train
v1
Sensor network script: Node: air_quality | code: mst | fields: depth, qc, ts, value Sensor: lightning | fields: lon, reading, value, qc Task: Fetch lat from air_quality where type exists in lightning sensor data for the same qc. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="qc", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005608
train
v3
Sensor network script: Node: air_quality | code: thr | fields: level, ts, type, depth Sensor: soil_moisture | fields: type, value, ts, reading Task: Get lat from air_quality where value exceeds the minimum depth from soil_moisture for the same ts. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005609
train
v2
Sensor network script: Node: frost | code: gst | fields: qc, value, ts, level Sensor: turbidity | fields: lat, value, level, unit Task: Get value from frost where a corresponding entry exists in turbidity with the same unit. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="value", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005610
train
v2
Sensor network script: Node: pressure | code: ref | fields: depth, lon, unit, qc Sensor: dew_point | fields: value, ts, lon, level Task: Get lon from pressure where a corresponding entry exists in dew_point with the same qc. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005611
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: level, reading, lon, value Sensor: visibility | fields: depth, qc, reading, value Task: Get reading from wind_speed where unit appears in visibility readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="depth", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005612
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: level, reading, depth, unit Sensor: humidity | fields: unit, lat, ts, depth Task: Get level from snow_depth where depth appears in humidity readings with matching type. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="type", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005613
train
v2
Sensor network script: Node: pressure | code: prt | fields: value, type, lon, reading Sensor: snow_depth | fields: type, reading, value, ts Task: Get depth from pressure where a corresponding entry exists in snow_depth with the same ts. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005614
train
v1
Sensor network script: Node: turbidity | code: hub | fields: depth, value, reading, type Sensor: drought_index | fields: ts, qc, unit, type Task: Get lon from turbidity where unit appears in drought_index readings with matching type. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="type", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005615
train
v2
Sensor network script: Node: air_quality | code: clr | fields: reading, qc, unit, level Sensor: soil_moisture | fields: level, ts, value, depth Task: Retrieve lat from air_quality that have at least one matching reading in soil_moisture sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005616
train
v2
Sensor network script: Node: temperature | code: mst | fields: reading, level, lon, unit Sensor: pressure | fields: ts, unit, type, reading Task: Retrieve reading from temperature that have at least one matching reading in pressure sharing the same type. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "reading", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005617
train
v1
Sensor network script: Node: temperature | code: thr | fields: lat, unit, type, qc Sensor: dew_point | fields: lon, lat, type, ts Task: Retrieve lon from temperature whose qc is found in dew_point records where type matches the outer node. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="type", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005618
train
v1
Sensor network script: Node: dew_point | code: stn | fields: ts, value, level, reading Sensor: turbidity | fields: depth, reading, qc, lon Task: Fetch lat from dew_point where qc exists in turbidity sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="unit", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005619
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: reading, lat, type, lon Sensor: sunlight | fields: qc, value, depth, lon Task: Get depth from snow_depth where ts appears in sunlight readings with matching qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="qc", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005620
train
v2
Sensor network script: Node: pressure | code: thr | fields: lon, reading, lat, depth Sensor: turbidity | fields: ts, unit, value, depth Task: Retrieve lon from pressure that have at least one matching reading in turbidity sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lon", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005621
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: type, qc, lat, ts Sensor: rainfall | fields: ts, lat, reading, qc Task: Retrieve level from wind_speed that have at least one matching reading in rainfall sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "level", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005622
train
v3
Sensor network script: Node: dew_point | code: hub | fields: type, lat, level, unit Sensor: soil_moisture | fields: depth, level, reading, type Task: Retrieve depth from dew_point with reading above the MAX(depth) of soil_moisture readings sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005623
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: qc, reading, ts, depth Sensor: drought_index | fields: ts, level, unit, qc Task: Retrieve lat from soil_moisture whose ts is found in drought_index records where depth matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="depth", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005624
train
v1
Sensor network script: Node: rainfall | code: clr | fields: reading, lat, depth, value Sensor: air_quality | fields: qc, type, lon, lat Task: Fetch lat from rainfall where depth exists in air_quality sensor data for the same depth. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="depth", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005625
train
v3
Sensor network script: Node: temperature | code: clr | fields: value, qc, depth, unit Sensor: humidity | fields: lat, type, value, qc Task: Get reading from temperature where value exceeds the count of depth from humidity for the same qc. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("humidity", code="hgr"), match="qc"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005626
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: lat, lon, reading, level Sensor: air_quality | fields: ts, lat, unit, depth Task: Retrieve lon from cloud_cover whose depth is found in air_quality records where type matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="type", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005627
train
v3
Sensor network script: Node: frost | code: stn | fields: unit, value, reading, ts Sensor: temperature | fields: qc, reading, level, value Task: Get depth from frost where value exceeds the minimum reading from temperature for the same ts. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("temperature", code="thr"), match="ts"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005628
train
v3
Sensor network script: Node: drought_index | code: gst | fields: reading, level, qc, unit Sensor: soil_moisture | fields: depth, qc, ts, level Task: Retrieve level from drought_index with value above the MAX(reading) of soil_moisture readings sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005629
train
v2
Sensor network script: Node: temperature | code: mst | fields: ts, unit, reading, depth Sensor: wind_speed | fields: ts, qc, lat, unit Task: Get value from temperature where a corresponding entry exists in wind_speed with the same ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="value", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005630
train
v1
Sensor network script: Node: cloud_cover | code: prt | fields: unit, value, type, level Sensor: visibility | fields: value, level, ts, depth Task: Get value from cloud_cover where qc appears in visibility readings with matching type. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="type", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005631
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: type, unit, reading, ts Sensor: lightning | fields: reading, unit, type, depth Task: Fetch depth from soil_moisture that have at least one corresponding lightning measurement for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005632
train
v3
Sensor network script: Node: air_quality | code: gst | fields: reading, depth, value, level Sensor: uv_index | fields: level, unit, reading, qc Task: Retrieve value from air_quality with value above the SUM(reading) of uv_index readings sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005633
train
v3
Sensor network script: Node: turbidity | code: thr | fields: unit, type, lon, level Sensor: soil_moisture | fields: depth, lon, qc, value Task: Fetch lon from turbidity where value is greater than the total of depth in soil_moisture for matching unit. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005634
train
v1
Sensor network script: Node: air_quality | code: ref | fields: level, reading, ts, depth Sensor: sunlight | fields: lat, qc, lon, ts Task: Get reading from air_quality where qc appears in sunlight readings with matching qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005635
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: ts, lon, level, unit Sensor: turbidity | fields: qc, unit, value, ts Task: Fetch lon from snow_depth where type exists in turbidity sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="ts", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005636
train
v2
Sensor network script: Node: evaporation | code: gst | fields: level, reading, lon, type Sensor: turbidity | fields: type, level, value, lat Task: Fetch reading from evaporation that have at least one corresponding turbidity measurement for the same depth. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "reading", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005637
train
v1
Sensor network script: Node: uv_index | code: hub | fields: depth, unit, reading, type Sensor: visibility | fields: value, qc, depth, type Task: Get lat from uv_index where qc appears in visibility readings with matching type. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="type", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005638
train
v1
Sensor network script: Node: drought_index | code: mst | fields: type, ts, value, lon Sensor: temperature | fields: depth, lat, value, unit Task: Get reading from drought_index where unit appears in temperature readings with matching type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="type", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005639
train
v2
Sensor network script: Node: humidity | code: prt | fields: reading, level, ts, value Sensor: sunlight | fields: lon, ts, unit, reading Task: Retrieve reading from humidity that have at least one matching reading in sunlight sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "reading", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005640
train
v1
Sensor network script: Node: rainfall | code: gst | fields: lon, level, value, lat Sensor: evaporation | fields: reading, lon, level, unit Task: Retrieve level from rainfall whose unit is found in evaporation records where qc matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="qc", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005641
train
v3
Sensor network script: Node: evaporation | code: clr | fields: level, reading, qc, value Sensor: drought_index | fields: lat, unit, value, level Task: Retrieve level from evaporation with depth above the COUNT(reading) of drought_index readings sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("drought_index", code="drt"), match="ts"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005642
train
v1
Sensor network script: Node: rainfall | code: thr | fields: value, qc, lat, unit Sensor: lightning | fields: unit, level, reading, value Task: Get depth from rainfall where depth appears in lightning readings with matching depth. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="depth", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005643
train
v3
Sensor network script: Node: wind_speed | code: thr | fields: level, value, lat, unit Sensor: uv_index | fields: lat, type, value, ts Task: Get lon from wind_speed where reading exceeds the total depth from uv_index for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("uv_index", code="flx"), match="ts"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005644
train
v1
Sensor network script: Node: turbidity | code: clr | fields: reading, qc, ts, level Sensor: evaporation | fields: type, lat, ts, reading Task: Fetch level from turbidity where unit exists in evaporation sensor data for the same qc. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="qc", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005645
train
v1
Sensor network script: Node: dew_point | code: clr | fields: ts, qc, lat, value Sensor: drought_index | fields: unit, lat, type, lon Task: Get reading from dew_point where unit appears in drought_index readings with matching qc. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="qc", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005646
train
v2
Sensor network script: Node: temperature | code: mst | fields: lon, lat, depth, unit Sensor: wind_speed | fields: value, type, qc, ts Task: Retrieve lon from temperature that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lon", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005647
train
v1
Sensor network script: Node: uv_index | code: mst | fields: reading, depth, lon, type Sensor: humidity | fields: lon, lat, ts, depth Task: Retrieve value from uv_index whose qc is found in humidity records where type matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005648
train
v3
Sensor network script: Node: humidity | code: clr | fields: lat, reading, qc, level Sensor: dew_point | fields: lon, type, value, qc Task: Fetch depth from humidity where value is greater than the total of depth in dew_point for matching qc. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("dew_point", code="cnd"), match="qc"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005649
train
v3
Sensor network script: Node: sunlight | code: ref | fields: qc, depth, unit, ts Sensor: visibility | fields: qc, reading, value, unit Task: Retrieve value from sunlight with reading above the MAX(depth) of visibility readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("visibility", code="clr"), match="depth"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005650
train
v2
Sensor network script: Node: sunlight | code: thr | fields: lon, reading, depth, ts Sensor: cloud_cover | fields: qc, reading, value, lon Task: Get level from sunlight where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "level", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005651
train
v2
Sensor network script: Node: rainfall | code: prt | fields: reading, ts, lon, level Sensor: lightning | fields: unit, ts, level, type Task: Get level from rainfall where a corresponding entry exists in lightning with the same qc. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "level", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005652
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: ts, reading, qc, lon Sensor: drought_index | fields: lon, level, value, reading Task: Get depth from soil_moisture where a corresponding entry exists in drought_index with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005653
train
v1
Sensor network script: Node: dew_point | code: clr | fields: lon, qc, lat, reading Sensor: rainfall | fields: ts, lat, level, lon Task: Get level from dew_point where unit appears in rainfall readings with matching ts. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="ts", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005654
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: unit, qc, depth, lon Sensor: turbidity | fields: lat, lon, ts, depth Task: Retrieve lat from wind_speed with reading above the AVG(value) of turbidity readings sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("turbidity", code="ftu"), match="depth"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005655
train
v3
Sensor network script: Node: turbidity | code: gst | fields: level, ts, value, lon Sensor: evaporation | fields: level, value, type, ts Task: Retrieve value from turbidity with value above the MIN(depth) of evaporation readings sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="type"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005656
train
v2
Sensor network script: Node: visibility | code: ref | fields: level, depth, ts, lat Sensor: turbidity | fields: lat, depth, value, lon Task: Get lon from visibility where a corresponding entry exists in turbidity with the same ts. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lon", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005657
train
v2
Sensor network script: Node: lightning | code: hub | fields: type, value, ts, lat Sensor: temperature | fields: qc, depth, type, reading Task: Get value from lightning where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "value", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005658
train
v3
Sensor network script: Node: rainfall | code: stn | fields: level, type, reading, qc Sensor: soil_moisture | fields: lat, lon, reading, ts Task: Retrieve reading from rainfall with depth above the MAX(value) of soil_moisture readings sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005659
train
v3
Sensor network script: Node: temperature | code: prt | fields: lon, reading, level, value Sensor: frost | fields: lat, depth, qc, ts Task: Get lat from temperature where reading exceeds the average value from frost for the same unit. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("frost", code="frs"), match="unit"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005660
train
v2
Sensor network script: Node: temperature | code: ref | fields: value, ts, depth, lat Sensor: air_quality | fields: lat, reading, value, ts Task: Get value from temperature where a corresponding entry exists in air_quality with the same type. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "value", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005661
train
v2
Sensor network script: Node: temperature | code: hub | fields: lat, value, qc, reading Sensor: visibility | fields: unit, qc, lon, depth Task: Get reading from temperature where a corresponding entry exists in visibility with the same unit. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005662
train
v2
Sensor network script: Node: drought_index | code: thr | fields: type, unit, reading, lat Sensor: visibility | fields: lat, type, ts, unit Task: Retrieve lon from drought_index that have at least one matching reading in visibility sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005663
train
v2
Sensor network script: Node: air_quality | code: clr | fields: type, reading, lat, ts Sensor: drought_index | fields: depth, unit, lat, lon Task: Get lat from air_quality where a corresponding entry exists in drought_index with the same ts. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005664
train
v3
Sensor network script: Node: air_quality | code: thr | fields: lat, level, lon, unit Sensor: visibility | fields: level, lat, qc, type Task: Retrieve level from air_quality with depth above the COUNT(value) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("visibility", code="clr"), match="qc"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005665
train
v2
Sensor network script: Node: rainfall | code: mst | fields: reading, depth, lon, ts Sensor: drought_index | fields: value, type, unit, level Task: Fetch lat from rainfall that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lat", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005666
train
v2
Sensor network script: Node: frost | code: stn | fields: ts, lon, qc, depth Sensor: dew_point | fields: depth, reading, level, type Task: Retrieve reading from frost that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="reading", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005667
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: level, depth, ts, type Sensor: visibility | fields: unit, lat, value, depth Task: Fetch level from wind_speed where depth is greater than the minimum of value in visibility for matching unit. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("visibility", code="clr"), match="unit"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005668
train
v1
Sensor network script: Node: pressure | code: ref | fields: ts, qc, reading, level Sensor: uv_index | fields: reading, qc, depth, unit Task: Fetch lon from pressure where ts exists in uv_index sensor data for the same type. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="type", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005669
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: lat, type, level, qc Sensor: soil_moisture | fields: value, reading, lon, type Task: Get level from wind_speed where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "level", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005670
train
v2
Sensor network script: Node: uv_index | code: gst | fields: value, lat, unit, reading Sensor: turbidity | fields: ts, level, qc, type Task: Retrieve value from uv_index that have at least one matching reading in turbidity sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "value", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005671
train
v2
Sensor network script: Node: temperature | code: clr | fields: ts, lat, reading, unit Sensor: sunlight | fields: unit, reading, ts, lat Task: Get value from temperature where a corresponding entry exists in sunlight with the same qc. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="value", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "value", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005672
train
v3
Sensor network script: Node: frost | code: mst | fields: type, qc, lon, reading Sensor: dew_point | fields: lat, value, lon, unit Task: Fetch depth from frost where value is greater than the minimum of depth in dew_point for matching type. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("dew_point", code="cnd"), match="type"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005673
train
v2
Sensor network script: Node: air_quality | code: hub | fields: qc, reading, lon, lat Sensor: humidity | fields: value, reading, level, lat Task: Retrieve value from air_quality that have at least one matching reading in humidity sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "value", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005674
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: unit, ts, depth, reading Sensor: dew_point | fields: unit, lat, reading, lon Task: Get depth from snow_depth where a corresponding entry exists in dew_point with the same qc. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005675
train
v2
Sensor network script: Node: turbidity | code: mst | fields: value, lon, level, qc Sensor: temperature | fields: reading, lon, qc, unit Task: Get value from turbidity where a corresponding entry exists in temperature with the same qc. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005676
train
v1
Sensor network script: Node: evaporation | code: thr | fields: value, qc, depth, type Sensor: drought_index | fields: unit, lon, reading, qc Task: Retrieve value from evaporation whose type is found in drought_index records where depth matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="depth", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005677
train
v3
Sensor network script: Node: humidity | code: thr | fields: reading, value, ts, qc Sensor: uv_index | fields: qc, value, lat, type Task: Get level from humidity where depth exceeds the minimum reading from uv_index for the same ts. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("uv_index", code="flx"), match="ts"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005678
train
v3
Sensor network script: Node: air_quality | code: clr | fields: lat, type, ts, level Sensor: drought_index | fields: value, ts, unit, depth Task: Get level from air_quality where depth exceeds the total depth from drought_index for the same depth. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("drought_index", code="drt"), match="depth"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005679
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: value, depth, ts, unit Sensor: air_quality | fields: unit, value, level, ts Task: Retrieve reading from cloud_cover whose unit is found in air_quality records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="unit", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005680
train
v1
Sensor network script: Node: pressure | code: thr | fields: level, lon, type, lat Sensor: dew_point | fields: level, value, lon, reading Task: Get value from pressure where type appears in dew_point readings with matching ts. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="ts", ), output="value", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005681
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: depth, unit, level, lat Sensor: turbidity | fields: qc, depth, ts, type Task: Fetch reading from soil_moisture that have at least one corresponding turbidity measurement for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "reading", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005682
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: unit, level, depth, type Sensor: rainfall | fields: type, lat, level, unit Task: Fetch depth from snow_depth that have at least one corresponding rainfall measurement for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005683
train
v3
Sensor network script: Node: visibility | code: clr | fields: lon, level, ts, value Sensor: air_quality | fields: level, unit, lon, qc Task: Get lon from visibility where value exceeds the maximum depth from air_quality for the same depth. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="depth"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005684
train
v1
Sensor network script: Node: sunlight | code: thr | fields: type, unit, lon, level Sensor: turbidity | fields: qc, lon, type, value Task: Retrieve level from sunlight whose type is found in turbidity records where depth matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005685
train
v1
Sensor network script: Node: rainfall | code: clr | fields: qc, depth, level, type Sensor: temperature | fields: lon, type, reading, level Task: Fetch reading from rainfall where type exists in temperature sensor data for the same type. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="type", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005686
train
v1
Sensor network script: Node: drought_index | code: clr | fields: level, value, lat, depth Sensor: humidity | fields: ts, lon, type, reading Task: Retrieve value from drought_index whose unit is found in humidity records where ts matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="ts", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005687
train
v1
Sensor network script: Node: humidity | code: mst | fields: unit, value, lat, reading Sensor: lightning | fields: depth, lon, level, value Task: Retrieve lon from humidity whose depth is found in lightning records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="ts", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005688
train
v2
Sensor network script: Node: drought_index | code: prt | fields: type, ts, lon, reading Sensor: soil_moisture | fields: depth, unit, lon, level Task: Get lat from drought_index where a corresponding entry exists in soil_moisture with the same unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005689
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: qc, value, unit, ts Sensor: snow_depth | fields: qc, ts, value, depth Task: Fetch lon from cloud_cover where type exists in snow_depth sensor data for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005690
train
v2
Sensor network script: Node: dew_point | code: stn | fields: lon, reading, qc, level Sensor: wind_speed | fields: lat, reading, depth, type Task: Get lon from dew_point where a corresponding entry exists in wind_speed with the same depth. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lon", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005691
train
v1
Sensor network script: Node: lightning | code: thr | fields: value, type, lat, unit Sensor: turbidity | fields: lat, unit, depth, reading Task: Fetch lon from lightning where qc exists in turbidity sensor data for the same unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005692
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: ts, lon, depth, type Sensor: temperature | fields: level, lat, type, reading Task: Retrieve lat from wind_speed with depth above the COUNT(depth) of temperature readings sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005693
train
v1
Sensor network script: Node: drought_index | code: mst | fields: level, type, lat, lon Sensor: visibility | fields: reading, qc, unit, value Task: Get depth from drought_index where unit appears in visibility readings with matching depth. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="depth", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005694
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: unit, type, reading, value Sensor: evaporation | fields: unit, lat, value, level Task: Fetch lon from snow_depth where depth exists in evaporation sensor data for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="depth", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005695
train
v1
Sensor network script: Node: sunlight | code: prt | fields: depth, unit, lat, qc Sensor: evaporation | fields: value, reading, unit, type Task: Fetch depth from sunlight where unit exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="unit", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005696
train
v1
Sensor network script: Node: drought_index | code: stn | fields: lon, qc, value, type Sensor: visibility | fields: unit, type, reading, lat Task: Retrieve lon from drought_index whose type is found in visibility records where qc matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="qc", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_005697
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: reading, value, ts, unit Sensor: drought_index | fields: level, depth, unit, reading Task: Retrieve value from wind_speed whose ts is found in drought_index records where depth matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="depth", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005698
train
v1
Sensor network script: Node: uv_index | code: prt | fields: value, lat, depth, type Sensor: rainfall | fields: type, value, unit, qc Task: Retrieve depth from uv_index whose qc is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_005699
train