variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v1
Sensor network script: Node: turbidity | code: prt | fields: type, qc, value, depth Sensor: visibility | fields: lat, ts, level, depth Task: Get reading from turbidity where unit appears in visibility readings with matching qc. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="qc", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069600
train
v1
Sensor network script: Node: uv_index | code: stn | fields: unit, depth, value, qc Sensor: snow_depth | fields: level, lon, ts, reading Task: Get lat from uv_index where depth appears in snow_depth readings with matching type. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="type", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "filter_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069601
train
v1
Sensor network script: Node: frost | code: ref | fields: ts, lon, depth, qc Sensor: lightning | fields: lon, lat, ts, reading Task: Fetch reading from frost where depth exists in lightning sensor data for the same type. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="type", ), output="reading", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069602
train
v2
Sensor network script: Node: rainfall | code: gst | fields: reading, value, qc, lon Sensor: lightning | fields: qc, lon, reading, unit Task: Get lon from rainfall where a corresponding entry exists in lightning with the same ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lon", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069603
train
v3
Sensor network script: Node: dew_point | code: gst | fields: reading, depth, value, qc Sensor: humidity | fields: lat, value, ts, reading Task: Get reading from dew_point where depth exceeds the average value from humidity for the same type. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("humidity", code="hgr"), match="type"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069604
train
v2
Sensor network script: Node: sunlight | code: gst | fields: reading, qc, depth, value Sensor: lightning | fields: depth, type, unit, lat Task: Fetch value from sunlight that have at least one corresponding lightning measurement for the same depth. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "value", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069605
train
v2
Sensor network script: Node: frost | code: mst | fields: lat, value, qc, reading Sensor: evaporation | fields: lat, lon, value, depth Task: Fetch depth from frost that have at least one corresponding evaporation measurement for the same depth. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="depth", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069606
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: unit, reading, level, lat Sensor: dew_point | fields: qc, value, reading, depth Task: Fetch lon from wind_speed that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lon", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069607
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: reading, lat, lon, level Sensor: frost | fields: depth, qc, lat, value Task: Get lat from soil_moisture where reading exceeds the average reading from frost for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("frost", code="frs"), match="depth"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069608
train
v1
Sensor network script: Node: dew_point | code: clr | fields: type, depth, unit, reading Sensor: evaporation | fields: ts, reading, type, depth Task: Retrieve level from dew_point whose qc is found in evaporation records where depth matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="depth", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069609
train
v2
Sensor network script: Node: rainfall | code: mst | fields: depth, value, ts, qc Sensor: humidity | fields: depth, lat, qc, lon Task: Retrieve reading from rainfall that have at least one matching reading in humidity sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069610
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: ts, unit, type, qc Sensor: humidity | fields: lat, depth, reading, value Task: Fetch value from cloud_cover that have at least one corresponding humidity measurement for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "value", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069611
train
v3
Sensor network script: Node: dew_point | code: hub | fields: depth, reading, level, ts Sensor: drought_index | fields: value, type, lat, lon Task: Fetch level from dew_point where depth is greater than the minimum of value in drought_index for matching type. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("drought_index", code="drt"), match="type"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069612
train
v3
Sensor network script: Node: rainfall | code: prt | fields: qc, ts, reading, level Sensor: soil_moisture | fields: lat, unit, ts, level Task: Fetch reading from rainfall where depth is greater than the count of of reading in soil_moisture for matching type. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069613
train
v3
Sensor network script: Node: frost | code: prt | fields: level, ts, qc, unit Sensor: humidity | fields: type, level, unit, depth Task: Retrieve depth from frost with value above the SUM(depth) of humidity readings sharing the same type. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("humidity", code="hgr"), match="type"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069614
train
v3
Sensor network script: Node: pressure | code: prt | fields: lat, type, unit, ts Sensor: uv_index | fields: ts, qc, level, type Task: Get lat from pressure where reading exceeds the count of depth from uv_index for the same ts. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("uv_index", code="flx"), match="ts"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069615
train
v3
Sensor network script: Node: lightning | code: gst | fields: depth, lat, ts, qc Sensor: visibility | fields: type, qc, ts, lon Task: Get depth from lightning where reading exceeds the minimum depth from visibility for the same type. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("visibility", code="clr"), match="type"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069616
train
v1
Sensor network script: Node: rainfall | code: hub | fields: unit, level, reading, qc Sensor: dew_point | fields: unit, value, type, level Task: Fetch reading from rainfall where qc exists in dew_point sensor data for the same ts. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="ts", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069617
train
v1
Sensor network script: Node: dew_point | code: clr | fields: value, depth, reading, type Sensor: cloud_cover | fields: qc, type, reading, depth Task: Fetch depth from dew_point where depth exists in cloud_cover sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069618
train
v2
Sensor network script: Node: temperature | code: thr | fields: depth, value, type, lat Sensor: cloud_cover | fields: depth, lon, qc, lat Task: Retrieve lon from temperature that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069619
train
v2
Sensor network script: Node: air_quality | code: hub | fields: value, qc, lon, type Sensor: drought_index | fields: value, lon, unit, level Task: Get value from air_quality where a corresponding entry exists in drought_index with the same type. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069620
train
v3
Sensor network script: Node: uv_index | code: clr | fields: type, ts, level, unit Sensor: frost | fields: value, level, lon, qc Task: Retrieve value from uv_index with value above the SUM(reading) of frost readings sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("frost", code="frs"), match="depth"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069621
train
v3
Sensor network script: Node: pressure | code: clr | fields: type, value, level, lat Sensor: evaporation | fields: lat, value, lon, unit Task: Get reading from pressure where depth exceeds the count of depth from evaporation for the same unit. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("evaporation", code="evp"), match="unit"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "reading", "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_069622
train
v2
Sensor network script: Node: uv_index | code: mst | fields: reading, unit, lat, depth Sensor: frost | fields: ts, unit, level, reading Task: Fetch lat from uv_index that have at least one corresponding frost measurement for the same type. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lat", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069623
train
v3
Sensor network script: Node: rainfall | code: clr | fields: type, reading, ts, qc Sensor: frost | fields: lat, reading, unit, qc Task: Retrieve value from rainfall with depth above the MAX(value) of frost readings sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("frost", code="frs"), match="qc"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069624
train
v3
Sensor network script: Node: turbidity | code: stn | fields: reading, qc, depth, unit Sensor: frost | fields: unit, reading, qc, value Task: Get lon from turbidity where reading exceeds the count of reading from frost for the same depth. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="depth"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069625
train
v3
Sensor network script: Node: rainfall | code: hub | fields: ts, type, depth, qc Sensor: dew_point | fields: lat, level, ts, qc Task: Retrieve depth from rainfall with reading above the SUM(reading) of dew_point readings sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="type"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069626
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: qc, level, unit, type Sensor: dew_point | fields: level, unit, value, reading Task: Fetch level from soil_moisture where depth is greater than the average of reading in dew_point for matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("dew_point", code="cnd"), match="qc"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069627
train
v2
Sensor network script: Node: frost | code: mst | fields: ts, level, depth, value Sensor: drought_index | fields: qc, value, type, reading Task: Get lon from frost where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="lon", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lon", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069628
train
v3
Sensor network script: Node: frost | code: stn | fields: lon, reading, depth, ts Sensor: humidity | fields: level, lon, lat, value Task: Fetch depth from frost where value is greater than the minimum of depth in humidity for matching qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("humidity", code="hgr"), match="qc"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069629
train
v3
Sensor network script: Node: lightning | code: clr | fields: value, type, unit, ts Sensor: cloud_cover | fields: type, lon, lat, qc Task: Get lat from lightning where reading exceeds the total depth from cloud_cover for the same type. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069630
train
v2
Sensor network script: Node: evaporation | code: prt | fields: unit, value, depth, qc Sensor: visibility | fields: reading, value, qc, depth Task: Fetch lat from evaporation that have at least one corresponding visibility measurement for the same unit. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lat", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069631
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: unit, type, reading, lon Sensor: dew_point | fields: unit, level, lon, ts Task: Get lat from soil_moisture where qc appears in dew_point readings with matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="ts", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069632
train
v2
Sensor network script: Node: air_quality | code: prt | fields: level, qc, lat, depth Sensor: soil_moisture | fields: type, lon, ts, qc Task: Get lon from air_quality where a corresponding entry exists in soil_moisture with the same qc. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069633
train
v1
Sensor network script: Node: dew_point | code: hub | fields: qc, type, unit, reading Sensor: lightning | fields: reading, depth, ts, type Task: Fetch lat from dew_point where ts exists in lightning sensor data for the same type. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="type", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069634
train
v3
Sensor network script: Node: humidity | code: mst | fields: value, type, reading, ts Sensor: frost | fields: reading, type, lon, lat Task: Retrieve lon from humidity with value above the MAX(depth) of frost readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("frost", code="frs"), match="unit"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069635
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: level, value, lat, depth Sensor: turbidity | fields: lon, depth, ts, value Task: Get value from soil_moisture where a corresponding entry exists in turbidity with the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "value", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069636
train
v1
Sensor network script: Node: sunlight | code: thr | fields: lat, level, ts, depth Sensor: rainfall | fields: lat, lon, unit, reading Task: Get value from sunlight where ts appears in rainfall readings with matching ts. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="ts", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069637
train
v2
Sensor network script: Node: rainfall | code: stn | fields: type, value, lat, ts Sensor: pressure | fields: qc, value, reading, type Task: Get value from rainfall where a corresponding entry exists in pressure with the same unit. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "value", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069638
train
v1
Sensor network script: Node: humidity | code: mst | fields: reading, qc, type, unit Sensor: frost | fields: depth, type, level, lat Task: Fetch value from humidity where type exists in frost sensor data for the same unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="unit", ), output="value", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "value", "filter_col": "type", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069639
train
v2
Sensor network script: Node: turbidity | code: prt | fields: lat, type, reading, level Sensor: temperature | fields: ts, value, lon, type Task: Fetch level from turbidity that have at least one corresponding temperature measurement for the same depth. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069640
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: unit, reading, level, ts Sensor: evaporation | fields: lat, lon, type, ts Task: Fetch level from cloud_cover where unit exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="unit", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069641
train
v2
Sensor network script: Node: temperature | code: gst | fields: unit, value, level, lat Sensor: rainfall | fields: unit, lon, value, level Task: Fetch depth from temperature that have at least one corresponding rainfall measurement for the same qc. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069642
train
v1
Sensor network script: Node: temperature | code: ref | fields: depth, ts, value, reading Sensor: sunlight | fields: level, lon, ts, type Task: Get lon from temperature where depth appears in sunlight readings with matching depth. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069643
train
v3
Sensor network script: Node: sunlight | code: thr | fields: reading, value, lon, ts Sensor: evaporation | fields: type, lat, ts, level Task: Fetch reading from sunlight where value is greater than the minimum of reading in evaporation for matching type. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("evaporation", code="evp"), match="type"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069644
train
v3
Sensor network script: Node: evaporation | code: thr | fields: qc, reading, level, value Sensor: rainfall | fields: ts, lat, qc, depth Task: Get depth from evaporation where reading exceeds the total reading from rainfall for the same unit. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069645
train
v1
Sensor network script: Node: uv_index | code: stn | fields: level, qc, ts, value Sensor: pressure | fields: qc, reading, lon, depth Task: Retrieve level from uv_index whose ts is found in pressure records where depth matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="depth", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069646
train
v1
Sensor network script: Node: sunlight | code: gst | fields: lon, reading, type, ts Sensor: rainfall | fields: reading, unit, ts, value Task: Get lon from sunlight where unit appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="unit", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069647
train
v1
Sensor network script: Node: lightning | code: prt | fields: lat, level, value, reading Sensor: soil_moisture | fields: unit, type, depth, ts Task: Fetch value from lightning where ts exists in soil_moisture sensor data for the same unit. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="value", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069648
train
v1
Sensor network script: Node: pressure | code: stn | fields: lon, unit, reading, type Sensor: evaporation | fields: reading, lat, depth, type Task: Fetch reading from pressure where type exists in evaporation sensor data for the same type. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069649
train
v3
Sensor network script: Node: temperature | code: stn | fields: reading, qc, ts, value Sensor: frost | fields: ts, qc, lon, depth Task: Retrieve level from temperature with reading above the SUM(value) of frost readings sharing the same depth. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("frost", code="frs"), match="depth"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069650
train
v1
Sensor network script: Node: turbidity | code: hub | fields: lon, type, reading, lat Sensor: rainfall | fields: lon, unit, reading, lat Task: Fetch depth from turbidity where ts exists in rainfall sensor data for the same ts. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="ts", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069651
train
v2
Sensor network script: Node: drought_index | code: stn | fields: lat, qc, lon, level Sensor: snow_depth | fields: type, level, lon, value Task: Retrieve level from drought_index that have at least one matching reading in snow_depth sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "level", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069652
train
v3
Sensor network script: Node: visibility | code: thr | fields: lon, qc, lat, type Sensor: frost | fields: level, lon, ts, value Task: Get value from visibility where reading exceeds the minimum value from frost for the same type. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("frost", code="frs"), match="type"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069653
train
v2
Sensor network script: Node: rainfall | code: stn | fields: value, unit, lat, lon Sensor: cloud_cover | fields: unit, reading, type, lon Task: Retrieve lon from rainfall that have at least one matching reading in cloud_cover sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lon", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069654
train
v1
Sensor network script: Node: rainfall | code: mst | fields: type, ts, reading, unit Sensor: sunlight | fields: qc, reading, depth, level Task: Fetch level from rainfall where qc exists in sunlight sensor data for the same qc. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="qc", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069655
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: qc, lat, value, ts Sensor: snow_depth | fields: unit, qc, lon, lat Task: Get reading from wind_speed where reading exceeds the minimum value from snow_depth for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="unit"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069656
train
v2
Sensor network script: Node: dew_point | code: ref | fields: lat, level, ts, depth Sensor: soil_moisture | fields: type, value, level, unit Task: Retrieve lon from dew_point that have at least one matching reading in soil_moisture sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069657
train
v2
Sensor network script: Node: dew_point | code: clr | fields: lon, reading, depth, type Sensor: turbidity | fields: level, lat, lon, unit Task: Fetch level from dew_point that have at least one corresponding turbidity measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "level", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069658
train
v3
Sensor network script: Node: pressure | code: hub | fields: value, lon, qc, lat Sensor: evaporation | fields: value, qc, type, lon Task: Get depth from pressure where value exceeds the total depth from evaporation for the same qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069659
train
v3
Sensor network script: Node: turbidity | code: hub | fields: ts, type, qc, unit Sensor: sunlight | fields: qc, lat, type, unit Task: Retrieve depth from turbidity with value above the AVG(depth) of sunlight readings sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("sunlight", code="brt"), match="qc"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069660
train
v3
Sensor network script: Node: air_quality | code: ref | fields: unit, lat, depth, ts Sensor: evaporation | fields: reading, level, value, lat Task: Get depth from air_quality where reading exceeds the minimum value from evaporation for the same ts. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("evaporation", code="evp"), match="ts"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069661
train
v2
Sensor network script: Node: pressure | code: ref | fields: qc, value, ts, depth Sensor: snow_depth | fields: level, reading, type, value Task: Get reading from pressure where a corresponding entry exists in snow_depth with the same qc. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "reading", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069662
train
v2
Sensor network script: Node: uv_index | code: gst | fields: value, lon, reading, unit Sensor: temperature | fields: lat, type, reading, unit Task: Get depth from uv_index where a corresponding entry exists in temperature with the same ts. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069663
train
v1
Sensor network script: Node: rainfall | code: clr | fields: qc, level, depth, lat Sensor: air_quality | fields: value, reading, lon, qc Task: Retrieve reading from rainfall whose ts is found in air_quality records where depth matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="depth", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "ts", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069664
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: type, level, ts, lat Sensor: temperature | fields: value, level, qc, ts Task: Retrieve depth from wind_speed with depth above the SUM(reading) of temperature readings sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("temperature", code="thr"), match="unit"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069665
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: ts, type, depth, level Sensor: lightning | fields: depth, lat, ts, value Task: Get lat from cloud_cover where depth exceeds the average value from lightning for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("lightning", code="tnd"), match="unit"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069666
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: ts, depth, qc, lon Sensor: visibility | fields: unit, value, lat, qc Task: Retrieve value from cloud_cover that have at least one matching reading in visibility sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "value", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069667
train
v1
Sensor network script: Node: uv_index | code: ref | fields: qc, ts, lon, depth Sensor: turbidity | fields: value, lat, level, lon Task: Retrieve reading from uv_index whose type is found in turbidity records where type matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="type", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069668
train
v2
Sensor network script: Node: lightning | code: ref | fields: lon, level, qc, lat Sensor: wind_speed | fields: qc, type, level, lon Task: Get level from lightning where a corresponding entry exists in wind_speed with the same ts. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="level", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069669
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: ts, value, lat, type Sensor: temperature | fields: type, depth, lat, ts Task: Get value from snow_depth where unit appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="unit", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069670
train
v3
Sensor network script: Node: drought_index | code: hub | fields: reading, unit, lat, level Sensor: evaporation | fields: reading, level, unit, value Task: Get level from drought_index where depth exceeds the count of reading from evaporation for the same unit. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("evaporation", code="evp"), match="unit"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069671
train
v1
Sensor network script: Node: pressure | code: stn | fields: lat, type, ts, qc Sensor: turbidity | fields: level, type, ts, reading Task: Retrieve value from pressure whose ts is found in turbidity records where depth matches the outer node. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="depth", ), output="value", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069672
train
v2
Sensor network script: Node: sunlight | code: clr | fields: lon, level, qc, ts Sensor: drought_index | fields: depth, qc, lat, ts Task: Retrieve level from sunlight that have at least one matching reading in drought_index sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069673
train
v3
Sensor network script: Node: frost | code: mst | fields: lon, qc, depth, reading Sensor: air_quality | fields: depth, unit, type, ts Task: Retrieve lon from frost with value above the COUNT(depth) of air_quality readings sharing the same ts. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="ts"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069674
train
v1
Sensor network script: Node: drought_index | code: stn | fields: depth, level, ts, reading Sensor: rainfall | fields: qc, type, ts, reading Task: Fetch value from drought_index where depth exists in rainfall sensor data for the same qc. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="qc", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069675
train
v1
Sensor network script: Node: visibility | code: prt | fields: level, type, value, lat Sensor: wind_speed | fields: level, unit, reading, lat Task: Retrieve value from visibility whose ts is found in wind_speed records where depth matches the outer node. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="depth", ), output="value", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069676
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: lat, depth, lon, ts Sensor: evaporation | fields: lon, qc, value, depth Task: Get depth from snow_depth where a corresponding entry exists in evaporation with the same type. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069677
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: lon, qc, level, unit Sensor: uv_index | fields: value, lat, lon, unit Task: Get level from snow_depth where reading exceeds the average reading from uv_index for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="depth"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069678
train
v3
Sensor network script: Node: visibility | code: hub | fields: lat, ts, type, qc Sensor: rainfall | fields: qc, depth, unit, type Task: Get lat from visibility where value exceeds the total depth from rainfall for the same unit. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069679
train
v2
Sensor network script: Node: turbidity | code: prt | fields: unit, value, ts, lat Sensor: temperature | fields: level, ts, reading, lat Task: Retrieve level from turbidity that have at least one matching reading in temperature sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "level", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069680
train
v2
Sensor network script: Node: frost | code: mst | fields: ts, depth, qc, level Sensor: uv_index | fields: reading, lat, unit, depth Task: Retrieve lon from frost that have at least one matching reading in uv_index sharing the same type. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="lon", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069681
train
v2
Sensor network script: Node: dew_point | code: clr | fields: level, reading, unit, depth Sensor: lightning | fields: value, unit, lon, type Task: Fetch depth from dew_point that have at least one corresponding lightning measurement for the same unit. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069682
train
v3
Sensor network script: Node: evaporation | code: stn | fields: qc, level, depth, lat Sensor: wind_speed | fields: lon, qc, type, value Task: Retrieve value from evaporation with depth above the COUNT(depth) of wind_speed readings sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="type"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069683
train
v1
Sensor network script: Node: temperature | code: hub | fields: ts, lon, level, qc Sensor: visibility | fields: ts, depth, lat, type Task: Get value from temperature where qc appears in visibility readings with matching type. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069684
train
v2
Sensor network script: Node: temperature | code: thr | fields: lat, level, reading, value Sensor: wind_speed | fields: lat, level, value, ts Task: Get depth from temperature where a corresponding entry exists in wind_speed with the same ts. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069685
train
v3
Sensor network script: Node: drought_index | code: mst | fields: level, type, depth, unit Sensor: pressure | fields: value, qc, level, ts Task: Get lon from drought_index where reading exceeds the total depth from pressure for the same ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("pressure", code="mbl"), match="ts"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069686
train
v1
Sensor network script: Node: visibility | code: mst | fields: ts, type, qc, level Sensor: rainfall | fields: depth, unit, ts, qc Task: Retrieve lon from visibility whose depth is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="unit", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069687
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: reading, qc, value, lat Sensor: rainfall | fields: lat, unit, reading, type Task: Fetch value from wind_speed that have at least one corresponding rainfall measurement for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "value", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069688
train
v1
Sensor network script: Node: humidity | code: prt | fields: lon, unit, level, qc Sensor: pressure | fields: reading, ts, lat, level Task: Retrieve depth from humidity whose unit is found in pressure records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="ts", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069689
train
v3
Sensor network script: Node: dew_point | code: clr | fields: lon, type, level, value Sensor: uv_index | fields: level, lat, ts, qc Task: Get reading from dew_point where value exceeds the average depth from uv_index for the same type. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("uv_index", code="flx"), match="type"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069690
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: lat, value, ts, reading Sensor: soil_moisture | fields: type, depth, value, lon Task: Get lon from cloud_cover where reading exceeds the maximum value from soil_moisture for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069691
train
v3
Sensor network script: Node: frost | code: stn | fields: ts, lat, qc, level Sensor: uv_index | fields: type, depth, value, level Task: Get value from frost where reading exceeds the maximum reading from uv_index for the same depth. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("uv_index", code="flx"), match="depth"), ), output="value", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069692
train
v2
Sensor network script: Node: humidity | code: mst | fields: reading, qc, lat, value Sensor: frost | fields: type, reading, qc, value Task: Fetch level from humidity that have at least one corresponding frost measurement for the same unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="level", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069693
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: ts, depth, lon, type Sensor: temperature | fields: level, reading, depth, unit Task: Fetch reading from cloud_cover where value is greater than the average of reading in temperature for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("temperature", code="thr"), match="unit"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069694
train
v1
Sensor network script: Node: evaporation | code: clr | fields: value, qc, depth, lon Sensor: frost | fields: lon, type, unit, lat Task: Retrieve depth from evaporation whose depth is found in frost records where type matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069695
train
v2
Sensor network script: Node: rainfall | code: thr | fields: lat, reading, depth, ts Sensor: drought_index | fields: level, unit, value, depth Task: Retrieve value from rainfall that have at least one matching reading in drought_index sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "value", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069696
train
v2
Sensor network script: Node: air_quality | code: mst | fields: value, depth, lat, reading Sensor: humidity | fields: reading, lon, type, level Task: Get depth from air_quality where a corresponding entry exists in humidity with the same qc. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069697
train
v1
Sensor network script: Node: evaporation | code: mst | fields: value, qc, depth, unit Sensor: humidity | fields: lat, ts, qc, unit Task: Get lat from evaporation where unit appears in humidity readings with matching qc. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="qc", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069698
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: depth, lon, value, type Sensor: soil_moisture | fields: level, qc, ts, type Task: Fetch lon from cloud_cover where unit exists in soil_moisture sensor data for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="type", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069699
train