variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v2
Sensor network script: Node: sunlight | code: gst | fields: lon, lat, value, ts Sensor: pressure | fields: lon, value, depth, level Task: Retrieve depth from sunlight that have at least one matching reading in pressure sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061600
train
v1
Sensor network script: Node: evaporation | code: stn | fields: lon, lat, value, ts Sensor: dew_point | fields: depth, ts, qc, level Task: Retrieve lon from evaporation whose depth is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061601
train
v3
Sensor network script: Node: frost | code: stn | fields: depth, type, lon, value Sensor: air_quality | fields: value, unit, depth, lat Task: Fetch lon from frost where reading is greater than the total of depth in air_quality for matching type. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("air_quality", code="prt"), match="type"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061602
train
v1
Sensor network script: Node: dew_point | code: prt | fields: lat, qc, type, lon Sensor: drought_index | fields: unit, value, type, lon Task: Retrieve depth from dew_point whose qc is found in drought_index records where qc matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="qc", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061603
train
v1
Sensor network script: Node: visibility | code: ref | fields: ts, unit, qc, value Sensor: wind_speed | fields: type, unit, ts, value Task: Fetch lat from visibility where depth exists in wind_speed sensor data for the same qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="qc", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061604
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: lon, unit, depth, qc Sensor: snow_depth | fields: reading, unit, level, qc Task: Get lon from cloud_cover where a corresponding entry exists in snow_depth with the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061605
train
v3
Sensor network script: Node: pressure | code: hub | fields: depth, type, ts, value Sensor: snow_depth | fields: lon, unit, reading, qc Task: Retrieve depth from pressure with value above the COUNT(depth) of snow_depth readings sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="depth"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061606
train
v3
Sensor network script: Node: evaporation | code: gst | fields: unit, ts, lon, value Sensor: visibility | fields: value, unit, reading, lon Task: Get lon from evaporation where value exceeds the total reading from visibility for the same type. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="type"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061607
train
v3
Sensor network script: Node: uv_index | code: prt | fields: value, ts, lon, reading Sensor: sunlight | fields: value, lon, type, qc Task: Get value from uv_index where value exceeds the average depth from sunlight for the same unit. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("sunlight", code="brt"), match="unit"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061608
train
v3
Sensor network script: Node: rainfall | code: stn | fields: lat, value, type, qc Sensor: dew_point | fields: unit, reading, qc, type Task: Get lat from rainfall where value exceeds the maximum value from dew_point for the same unit. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("dew_point", code="cnd"), match="unit"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061609
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: lat, unit, level, type Sensor: pressure | fields: lon, qc, reading, depth Task: Retrieve lat from soil_moisture that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061610
train
v2
Sensor network script: Node: cloud_cover | code: stn | fields: unit, ts, lon, qc Sensor: drought_index | fields: value, ts, unit, depth Task: Fetch depth from cloud_cover that have at least one corresponding drought_index measurement for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061611
train
v3
Sensor network script: Node: uv_index | code: ref | fields: lon, lat, value, type Sensor: rainfall | fields: lon, qc, ts, reading Task: Fetch reading from uv_index where depth is greater than the minimum of depth in rainfall for matching ts. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061612
train
v3
Sensor network script: Node: uv_index | code: prt | fields: unit, reading, type, ts Sensor: sunlight | fields: unit, reading, lat, qc Task: Fetch lat from uv_index where depth is greater than the total of depth in sunlight for matching depth. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("sunlight", code="brt"), match="depth"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061613
train
v2
Sensor network script: Node: frost | code: hub | fields: level, unit, value, type Sensor: lightning | fields: type, unit, ts, reading Task: Fetch level from frost that have at least one corresponding lightning measurement for the same qc. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061614
train
v3
Sensor network script: Node: drought_index | code: ref | fields: qc, depth, value, reading Sensor: snow_depth | fields: type, lat, unit, lon Task: Get lat from drought_index where reading exceeds the count of reading from snow_depth for the same depth. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("snow_depth", code="snw"), match="depth"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061615
train
v2
Sensor network script: Node: humidity | code: ref | fields: value, qc, level, ts Sensor: cloud_cover | fields: ts, lon, reading, type Task: Retrieve value from humidity that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="value", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "value", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061616
train
v2
Sensor network script: Node: uv_index | code: clr | fields: depth, qc, unit, type Sensor: cloud_cover | fields: ts, unit, level, type Task: Retrieve reading from uv_index that have at least one matching reading in cloud_cover sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061617
train
v3
Sensor network script: Node: turbidity | code: thr | fields: unit, lat, value, ts Sensor: lightning | fields: qc, ts, lon, type Task: Fetch value from turbidity where reading is greater than the average of reading in lightning for matching ts. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061618
train
v3
Sensor network script: Node: pressure | code: ref | fields: depth, level, reading, type Sensor: uv_index | fields: depth, value, unit, lat Task: Get lat from pressure where value exceeds the minimum value from uv_index for the same type. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061619
train
v2
Sensor network script: Node: humidity | code: stn | fields: ts, type, lon, reading Sensor: pressure | fields: type, qc, value, unit Task: Retrieve reading from humidity that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061620
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: level, ts, value, lat Sensor: snow_depth | fields: ts, reading, unit, qc Task: Get lat from soil_moisture where a corresponding entry exists in snow_depth with the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061621
train
v3
Sensor network script: Node: frost | code: hub | fields: unit, value, lat, depth Sensor: sunlight | fields: ts, reading, type, depth Task: Fetch reading from frost where value is greater than the maximum of depth in sunlight for matching qc. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("sunlight", code="brt"), match="qc"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061622
train
v1
Sensor network script: Node: rainfall | code: stn | fields: qc, reading, depth, ts Sensor: lightning | fields: value, qc, type, depth Task: Fetch lat from rainfall where unit exists in lightning sensor data for the same qc. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="qc", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061623
train
v3
Sensor network script: Node: temperature | code: clr | fields: qc, ts, depth, type Sensor: sunlight | fields: lat, unit, value, type Task: Fetch depth from temperature where reading is greater than the maximum of reading in sunlight for matching qc. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("sunlight", code="brt"), match="qc"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061624
train
v1
Sensor network script: Node: rainfall | code: clr | fields: lon, type, reading, level Sensor: temperature | fields: ts, type, value, lat Task: Retrieve value from rainfall whose type is found in temperature records where type matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="type", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061625
train
v3
Sensor network script: Node: lightning | code: ref | fields: reading, lat, level, unit Sensor: soil_moisture | fields: reading, level, unit, depth Task: Get depth from lightning where value exceeds the total depth from soil_moisture for the same depth. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061626
train
v2
Sensor network script: Node: evaporation | code: gst | fields: qc, type, lat, lon Sensor: humidity | fields: qc, level, lat, reading Task: Fetch lon from evaporation that have at least one corresponding humidity measurement for the same ts. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061627
train
v3
Sensor network script: Node: uv_index | code: hub | fields: value, lat, qc, lon Sensor: drought_index | fields: level, ts, depth, lon Task: Retrieve level from uv_index with reading above the MAX(value) of drought_index readings sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("drought_index", code="drt"), match="type"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061628
train
v2
Sensor network script: Node: temperature | code: hub | fields: unit, ts, lat, value Sensor: drought_index | fields: lon, reading, ts, unit Task: Get depth from temperature where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061629
train
v1
Sensor network script: Node: evaporation | code: ref | fields: ts, depth, unit, value Sensor: soil_moisture | fields: ts, unit, value, lon Task: Fetch reading from evaporation where unit exists in soil_moisture sensor data for the same unit. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061630
train
v3
Sensor network script: Node: pressure | code: prt | fields: qc, type, level, lon Sensor: evaporation | fields: lat, depth, reading, qc Task: Retrieve reading from pressure with reading above the MIN(depth) of evaporation readings sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061631
train
v3
Sensor network script: Node: frost | code: ref | fields: level, depth, ts, qc Sensor: temperature | fields: value, lat, type, qc Task: Retrieve level from frost with value above the MIN(reading) of temperature readings sharing the same depth. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("temperature", code="thr"), match="depth"), ), output="level", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061632
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: depth, reading, qc, ts Sensor: uv_index | fields: depth, lat, level, value Task: Get value from soil_moisture where depth exceeds the count of depth from uv_index for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("uv_index", code="flx"), match="unit"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061633
train
v1
Sensor network script: Node: dew_point | code: gst | fields: lon, depth, unit, level Sensor: pressure | fields: depth, value, unit, lat Task: Retrieve value from dew_point whose qc is found in pressure records where depth matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="depth", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061634
train
v3
Sensor network script: Node: evaporation | code: prt | fields: level, value, unit, lat Sensor: humidity | fields: reading, lat, type, level Task: Get lon from evaporation where depth exceeds the total depth from humidity for the same unit. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061635
train
v3
Sensor network script: Node: evaporation | code: mst | fields: ts, value, type, lon Sensor: humidity | fields: reading, lat, lon, depth Task: Get depth from evaporation where depth exceeds the maximum depth from humidity for the same depth. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("humidity", code="hgr"), match="depth"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061636
train
v1
Sensor network script: Node: air_quality | code: prt | fields: depth, value, type, ts Sensor: drought_index | fields: level, qc, lat, depth Task: Get reading from air_quality where qc appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061637
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: reading, level, lon, qc Sensor: evaporation | fields: depth, unit, qc, ts Task: Fetch lon from cloud_cover where reading is greater than the maximum of reading in evaporation for matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("evaporation", code="evp"), match="ts"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061638
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: depth, reading, level, qc Sensor: wind_speed | fields: reading, value, type, depth Task: Get reading from snow_depth where depth exceeds the average reading from wind_speed for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("wind_speed", code="gst"), match="qc"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061639
train
v2
Sensor network script: Node: air_quality | code: ref | fields: type, reading, ts, depth Sensor: soil_moisture | fields: level, ts, lon, depth Task: Fetch depth from air_quality that have at least one corresponding soil_moisture measurement for the same type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061640
train
v3
Sensor network script: Node: temperature | code: thr | fields: depth, lon, lat, reading Sensor: pressure | fields: ts, lon, value, unit Task: Get depth from temperature where reading exceeds the average value from pressure for the same ts. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("pressure", code="mbl"), match="ts"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061641
train
v3
Sensor network script: Node: evaporation | code: mst | fields: type, level, lat, ts Sensor: visibility | fields: type, lat, reading, unit Task: Fetch reading from evaporation where depth is greater than the count of of depth in visibility for matching qc. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("visibility", code="clr"), match="qc"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061642
train
v1
Sensor network script: Node: drought_index | code: thr | fields: lon, value, ts, type Sensor: soil_moisture | fields: type, unit, depth, level Task: Get lat from drought_index where unit appears in soil_moisture readings with matching depth. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061643
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: reading, lon, value, level Sensor: temperature | fields: value, lon, ts, qc Task: Fetch level from snow_depth where ts exists in temperature sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="ts", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061644
train
v3
Sensor network script: Node: dew_point | code: prt | fields: ts, qc, value, reading Sensor: turbidity | fields: lat, depth, qc, reading Task: Retrieve value from dew_point with reading above the MAX(depth) of turbidity readings sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("turbidity", code="ftu"), match="unit"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061645
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: depth, unit, level, value Sensor: uv_index | fields: value, reading, lat, lon Task: Get reading from soil_moisture where reading exceeds the count of reading from uv_index for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("uv_index", code="flx"), match="ts"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061646
train
v2
Sensor network script: Node: visibility | code: mst | fields: ts, unit, type, depth Sensor: turbidity | fields: reading, value, ts, lon Task: Retrieve depth from visibility that have at least one matching reading in turbidity sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061647
train
v3
Sensor network script: Node: dew_point | code: stn | fields: type, lat, ts, qc Sensor: wind_speed | fields: depth, level, unit, lon Task: Retrieve level from dew_point with value above the AVG(value) of wind_speed readings sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("wind_speed", code="gst"), match="ts"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061648
train
v2
Sensor network script: Node: uv_index | code: clr | fields: level, lon, ts, qc Sensor: frost | fields: depth, unit, lon, level Task: Retrieve lon from uv_index that have at least one matching reading in frost sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061649
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: qc, level, unit, value Sensor: rainfall | fields: level, depth, qc, value Task: Retrieve level from snow_depth whose qc is found in rainfall records where type matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="type", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061650
train
v2
Sensor network script: Node: drought_index | code: stn | fields: reading, lat, lon, ts Sensor: evaporation | fields: type, value, level, depth Task: Get reading from drought_index where a corresponding entry exists in evaporation with the same type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061651
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: qc, depth, value, unit Sensor: soil_moisture | fields: lat, lon, ts, level Task: Get depth from snow_depth where unit appears in soil_moisture readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061652
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: level, type, qc, lon Sensor: snow_depth | fields: qc, level, lat, unit Task: Fetch depth from cloud_cover where depth is greater than the maximum of value in snow_depth for matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061653
train
v1
Sensor network script: Node: humidity | code: hub | fields: reading, value, lon, unit Sensor: temperature | fields: lon, unit, qc, value Task: Get depth from humidity where depth appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061654
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: level, unit, depth, reading Sensor: pressure | fields: reading, depth, type, qc Task: Get lat from snow_depth where reading exceeds the minimum depth from pressure for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("pressure", code="mbl"), match="ts"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061655
train
v3
Sensor network script: Node: uv_index | code: clr | fields: reading, ts, depth, lat Sensor: pressure | fields: ts, reading, depth, type Task: Retrieve lon from uv_index with value above the COUNT(reading) of pressure readings sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("pressure", code="mbl"), match="ts"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061656
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: value, depth, level, unit Sensor: soil_moisture | fields: level, lon, ts, reading Task: Fetch lat from wind_speed where qc exists in soil_moisture sensor data for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061657
train
v2
Sensor network script: Node: frost | code: mst | fields: value, depth, lat, level Sensor: cloud_cover | fields: reading, value, lat, level Task: Retrieve reading from frost that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="reading", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061658
train
v3
Sensor network script: Node: rainfall | code: gst | fields: level, ts, type, lon Sensor: visibility | fields: level, unit, lat, value Task: Retrieve value from rainfall with value above the AVG(value) of visibility readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061659
train
v2
Sensor network script: Node: dew_point | code: gst | fields: lon, lat, value, unit Sensor: pressure | fields: type, reading, lon, lat Task: Retrieve depth from dew_point that have at least one matching reading in pressure sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061660
train
v1
Sensor network script: Node: temperature | code: prt | fields: qc, lon, reading, value Sensor: visibility | fields: unit, value, type, ts Task: Retrieve lon from temperature whose unit is found in visibility records where ts matches the outer node. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061661
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: value, type, depth, lon Sensor: rainfall | fields: qc, depth, ts, type Task: Fetch reading from snow_depth that have at least one corresponding rainfall measurement for the same type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061662
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: reading, lon, type, unit Sensor: rainfall | fields: type, level, unit, depth Task: Get level from soil_moisture where depth exceeds the minimum depth from rainfall for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061663
train
v3
Sensor network script: Node: dew_point | code: gst | fields: type, depth, unit, value Sensor: snow_depth | fields: reading, depth, unit, value Task: Retrieve reading from dew_point with value above the MIN(value) of snow_depth readings sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="type"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061664
train
v2
Sensor network script: Node: air_quality | code: hub | fields: lon, ts, reading, lat Sensor: frost | fields: lon, lat, unit, value Task: Fetch value from air_quality that have at least one corresponding frost measurement for the same qc. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "value", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061665
train
v3
Sensor network script: Node: pressure | code: stn | fields: lon, reading, type, depth Sensor: sunlight | fields: reading, value, depth, level Task: Get reading from pressure where reading exceeds the minimum reading from sunlight for the same depth. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("sunlight", code="brt"), match="depth"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061666
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: level, unit, ts, value Sensor: drought_index | fields: lon, reading, unit, lat Task: Get level from wind_speed where a corresponding entry exists in drought_index with the same ts. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061667
train
v1
Sensor network script: Node: turbidity | code: gst | fields: lon, depth, lat, type Sensor: sunlight | fields: type, ts, reading, lat Task: Get lat from turbidity where qc appears in sunlight readings with matching depth. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="depth", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061668
train
v2
Sensor network script: Node: rainfall | code: ref | fields: lon, depth, reading, level Sensor: pressure | fields: lon, unit, reading, qc Task: Retrieve depth from rainfall that have at least one matching reading in pressure sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061669
train
v2
Sensor network script: Node: visibility | code: stn | fields: depth, ts, type, value Sensor: drought_index | fields: reading, unit, lon, type Task: Fetch depth from visibility that have at least one corresponding drought_index measurement for the same ts. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061670
train
v3
Sensor network script: Node: humidity | code: clr | fields: ts, depth, lon, value Sensor: air_quality | fields: type, level, value, depth Task: Retrieve depth from humidity with reading above the MAX(value) of air_quality readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061671
train
v1
Sensor network script: Node: humidity | code: hub | fields: lon, qc, ts, depth Sensor: soil_moisture | fields: level, value, lat, type Task: Get level from humidity where unit appears in soil_moisture readings with matching unit. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="level", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061672
train
v2
Sensor network script: Node: visibility | code: ref | fields: level, depth, lon, lat Sensor: rainfall | fields: lat, unit, reading, lon Task: Get lat from visibility where a corresponding entry exists in rainfall with the same ts. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061673
train
v3
Sensor network script: Node: evaporation | code: thr | fields: unit, qc, reading, type Sensor: wind_speed | fields: qc, unit, level, reading Task: Fetch depth from evaporation where depth is greater than the minimum of value in wind_speed for matching depth. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("wind_speed", code="gst"), match="depth"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061674
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: depth, ts, unit, reading Sensor: turbidity | fields: unit, lat, level, reading Task: Retrieve lon from snow_depth that have at least one matching reading in turbidity sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lon", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061675
train
v2
Sensor network script: Node: turbidity | code: gst | fields: unit, reading, lat, lon Sensor: lightning | fields: lat, level, unit, reading Task: Fetch value from turbidity that have at least one corresponding lightning measurement for the same unit. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061676
train
v1
Sensor network script: Node: frost | code: clr | fields: ts, type, level, lon Sensor: pressure | fields: lon, depth, ts, unit Task: Get level from frost where unit appears in pressure readings with matching qc. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061677
train
v3
Sensor network script: Node: drought_index | code: hub | fields: depth, value, lat, ts Sensor: rainfall | fields: value, depth, qc, lat Task: Retrieve lat from drought_index with reading above the COUNT(reading) of rainfall readings sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061678
train
v2
Sensor network script: Node: pressure | code: hub | fields: lat, value, qc, type Sensor: uv_index | fields: qc, value, lat, reading Task: Fetch value from pressure that have at least one corresponding uv_index measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="value", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "value", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061679
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: lat, depth, qc, ts Sensor: lightning | fields: reading, value, depth, qc Task: Retrieve value from snow_depth that have at least one matching reading in lightning sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061680
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: lon, reading, qc, lat Sensor: air_quality | fields: depth, reading, unit, lat Task: Retrieve value from cloud_cover that have at least one matching reading in air_quality sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061681
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: lat, reading, depth, unit Sensor: evaporation | fields: value, lon, level, unit Task: Fetch value from wind_speed where reading is greater than the minimum of depth in evaporation for matching unit. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="unit"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061682
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: value, level, qc, unit Sensor: humidity | fields: reading, type, lon, depth Task: Retrieve lat from cloud_cover that have at least one matching reading in humidity sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lat", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061683
train
v2
Sensor network script: Node: visibility | code: mst | fields: depth, lat, unit, qc Sensor: drought_index | fields: qc, type, lon, lat Task: Fetch reading from visibility that have at least one corresponding drought_index measurement for the same unit. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "reading", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061684
train
v2
Sensor network script: Node: uv_index | code: clr | fields: type, reading, ts, unit Sensor: humidity | fields: lon, unit, qc, depth Task: Get value from uv_index where a corresponding entry exists in humidity with the same depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061685
train
v2
Sensor network script: Node: temperature | code: mst | fields: lon, depth, unit, qc Sensor: dew_point | fields: depth, unit, qc, type Task: Fetch depth from temperature that have at least one corresponding dew_point measurement for the same depth. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061686
train
v3
Sensor network script: Node: drought_index | code: thr | fields: depth, lon, type, qc Sensor: cloud_cover | fields: type, unit, lon, lat Task: Get lon from drought_index where value exceeds the average depth from cloud_cover for the same type. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061687
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: qc, ts, lon, depth Sensor: uv_index | fields: lat, ts, unit, value Task: Get level from soil_moisture where ts appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061688
train
v1
Sensor network script: Node: temperature | code: clr | fields: value, qc, type, unit Sensor: humidity | fields: ts, depth, reading, qc Task: Retrieve level from temperature whose depth is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="unit", ), output="level", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061689
train
v2
Sensor network script: Node: sunlight | code: prt | fields: level, lon, type, reading Sensor: humidity | fields: unit, qc, ts, type Task: Retrieve lat from sunlight that have at least one matching reading in humidity sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061690
train
v3
Sensor network script: Node: drought_index | code: prt | fields: lon, value, depth, level Sensor: cloud_cover | fields: reading, ts, level, value Task: Get value from drought_index where depth exceeds the average depth from cloud_cover for the same ts. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061691
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: unit, lat, ts, reading Sensor: air_quality | fields: type, depth, unit, lat Task: Get value from wind_speed where ts appears in air_quality readings with matching ts. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061692
train
v2
Sensor network script: Node: uv_index | code: hub | fields: qc, value, type, lon Sensor: turbidity | fields: qc, type, depth, ts Task: Fetch lat from uv_index that have at least one corresponding turbidity measurement for the same type. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lat", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061693
train
v2
Sensor network script: Node: humidity | code: clr | fields: lat, depth, lon, level Sensor: dew_point | fields: lat, ts, reading, qc Task: Retrieve value from humidity that have at least one matching reading in dew_point sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="value", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061694
train
v1
Sensor network script: Node: sunlight | code: mst | fields: level, type, reading, depth Sensor: evaporation | fields: value, qc, level, unit Task: Retrieve lon from sunlight whose depth is found in evaporation records where type matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="type", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061695
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: reading, lat, unit, lon Sensor: drought_index | fields: qc, reading, lon, lat Task: Fetch depth from soil_moisture where depth is greater than the maximum of value in drought_index for matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("drought_index", code="drt"), match="qc"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061696
train
v2
Sensor network script: Node: drought_index | code: prt | fields: depth, level, value, reading Sensor: cloud_cover | fields: qc, depth, unit, value Task: Retrieve depth from drought_index that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061697
train
v1
Sensor network script: Node: temperature | code: stn | fields: reading, unit, lon, qc Sensor: evaporation | fields: unit, lon, depth, reading Task: Retrieve value from temperature whose type is found in evaporation records where depth matches the outer node. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="depth", ), output="value", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061698
train
v3
Sensor network script: Node: rainfall | code: prt | fields: depth, lat, ts, level Sensor: snow_depth | fields: reading, lat, value, depth Task: Fetch lon from rainfall where depth is greater than the maximum of reading in snow_depth for matching qc. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("snow_depth", code="snw"), match="qc"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061699
train