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: temperature | code: ref | fields: depth, unit, level, qc Sensor: lightning | fields: unit, lon, ts, lat Task: Get depth from temperature where unit appears in lightning readings with matching type. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="type", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067600
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: depth, ts, value, unit Sensor: dew_point | fields: lat, ts, qc, lon Task: Retrieve level from wind_speed whose type is found in dew_point records where ts matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="ts", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067601
train
v2
Sensor network script: Node: lightning | code: stn | fields: ts, level, reading, value Sensor: turbidity | fields: type, reading, value, level Task: Fetch lat from lightning that have at least one corresponding turbidity measurement for the same ts. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067602
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: qc, reading, lon, ts Sensor: sunlight | fields: type, depth, ts, lat Task: Get level from cloud_cover where a corresponding entry exists in sunlight with the same type. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "level", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067603
train
v1
Sensor network script: Node: rainfall | code: mst | fields: unit, level, reading, qc Sensor: sunlight | fields: reading, unit, type, level Task: Retrieve value from rainfall whose depth is found in sunlight records where qc matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="qc", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067604
train
v3
Sensor network script: Node: visibility | code: clr | fields: unit, lon, type, value Sensor: dew_point | fields: depth, lon, level, lat Task: Retrieve depth from visibility with reading above the COUNT(depth) of dew_point readings sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("dew_point", code="cnd"), match="depth"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067605
train
v2
Sensor network script: Node: sunlight | code: ref | fields: type, lon, value, depth Sensor: pressure | fields: reading, ts, lon, lat Task: Fetch lat from sunlight that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067606
train
v1
Sensor network script: Node: humidity | code: ref | fields: level, value, depth, lat Sensor: visibility | fields: unit, qc, lat, lon Task: Get reading from humidity where unit appears in visibility readings with matching ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="ts", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067607
train
v1
Sensor network script: Node: rainfall | code: clr | fields: lat, depth, ts, qc Sensor: humidity | fields: lat, depth, reading, qc Task: Retrieve value from rainfall whose depth is found in humidity records where type matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="type", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067608
train
v2
Sensor network script: Node: turbidity | code: prt | fields: type, unit, lat, ts Sensor: humidity | fields: ts, lon, reading, value Task: Fetch depth from turbidity that have at least one corresponding humidity measurement for the same depth. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067609
train
v2
Sensor network script: Node: dew_point | code: clr | fields: qc, level, unit, lon Sensor: snow_depth | fields: reading, unit, qc, lat Task: Fetch level from dew_point that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067610
train
v1
Sensor network script: Node: frost | code: hub | fields: depth, lon, lat, qc Sensor: turbidity | fields: value, type, level, lon Task: Fetch depth from frost where ts exists in turbidity sensor data for the same type. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="type", ), output="depth", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067611
train
v2
Sensor network script: Node: visibility | code: prt | fields: unit, value, reading, lat Sensor: cloud_cover | fields: lat, level, ts, unit Task: Fetch reading from visibility that have at least one corresponding cloud_cover measurement for the same qc. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067612
train
v3
Sensor network script: Node: turbidity | code: thr | fields: lat, value, lon, qc Sensor: dew_point | fields: lon, level, ts, qc Task: Get depth from turbidity where depth exceeds the minimum reading from dew_point for the same type. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("dew_point", code="cnd"), match="type"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067613
train
v1
Sensor network script: Node: evaporation | code: gst | fields: qc, ts, type, depth Sensor: cloud_cover | fields: reading, level, lon, unit Task: Retrieve lat from evaporation whose depth is found in cloud_cover records where depth matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067614
train
v2
Sensor network script: Node: cloud_cover | code: stn | fields: value, unit, qc, type Sensor: temperature | fields: ts, lat, type, value Task: Get reading from cloud_cover where a corresponding entry exists in temperature with the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "reading", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067615
train
v1
Sensor network script: Node: lightning | code: hub | fields: value, type, depth, level Sensor: rainfall | fields: lon, lat, reading, type Task: Fetch reading from lightning where type exists in rainfall sensor data for the same ts. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="ts", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067616
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: value, reading, level, lon Sensor: temperature | fields: level, qc, lat, value Task: Fetch depth from snow_depth where depth exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="qc", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067617
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: qc, lat, reading, lon Sensor: lightning | fields: unit, type, ts, lat Task: Retrieve depth from snow_depth whose unit is found in lightning records where qc matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="qc", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067618
train
v1
Sensor network script: Node: visibility | code: clr | fields: lon, reading, ts, level Sensor: humidity | fields: unit, lon, qc, ts Task: Fetch value from visibility where depth exists in humidity sensor data for the same type. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067619
train
v3
Sensor network script: Node: lightning | code: stn | fields: depth, lon, ts, qc Sensor: soil_moisture | fields: type, unit, value, lat Task: Get depth from lightning where value exceeds the maximum value from soil_moisture for the same ts. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067620
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: level, depth, type, unit Sensor: sunlight | fields: reading, lon, depth, qc Task: Fetch lat from cloud_cover where ts exists in sunlight sensor data for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067621
train
v3
Sensor network script: Node: frost | code: hub | fields: unit, value, lat, ts Sensor: sunlight | fields: lat, ts, type, unit Task: Retrieve reading from frost with value above the MIN(reading) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("sunlight", code="brt"), match="type"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067622
train
v3
Sensor network script: Node: pressure | code: stn | fields: value, unit, level, lat Sensor: soil_moisture | fields: lon, type, reading, ts Task: Get depth from pressure where reading exceeds the maximum depth from soil_moisture for the same unit. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067623
train
v1
Sensor network script: Node: drought_index | code: gst | fields: reading, type, level, unit Sensor: visibility | fields: qc, lat, depth, lon Task: Retrieve value from drought_index whose depth is found in visibility records where ts matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="ts", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067624
train
v3
Sensor network script: Node: dew_point | code: stn | fields: lon, unit, ts, reading Sensor: wind_speed | fields: ts, depth, value, lat Task: Get depth from dew_point where value exceeds the total depth from wind_speed for the same depth. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("wind_speed", code="gst"), match="depth"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067625
train
v2
Sensor network script: Node: lightning | code: gst | fields: lat, ts, unit, type Sensor: temperature | fields: unit, value, ts, type Task: Retrieve lat from lightning that have at least one matching reading in temperature sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067626
train
v1
Sensor network script: Node: pressure | code: thr | fields: reading, qc, level, depth Sensor: dew_point | fields: ts, qc, value, type Task: Retrieve reading from pressure whose ts is found in dew_point records where type matches the outer node. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067627
train
v3
Sensor network script: Node: humidity | code: mst | fields: level, type, lat, depth Sensor: pressure | fields: depth, value, qc, level Task: Fetch depth from humidity where value is greater than the average of value in pressure for matching depth. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("pressure", code="mbl"), match="depth"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067628
train
v2
Sensor network script: Node: visibility | code: thr | fields: level, lat, value, type Sensor: sunlight | fields: ts, type, qc, value Task: Fetch level from visibility that have at least one corresponding sunlight measurement for the same qc. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="level", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067629
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: value, depth, lat, qc Sensor: air_quality | fields: depth, lon, level, qc Task: Get lat from snow_depth where depth exceeds the maximum value from air_quality for the same type. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("air_quality", code="prt"), match="type"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067630
train
v2
Sensor network script: Node: evaporation | code: mst | fields: depth, level, unit, lat Sensor: uv_index | fields: value, qc, unit, level Task: Retrieve depth from evaporation that have at least one matching reading in uv_index sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067631
train
v2
Sensor network script: Node: rainfall | code: clr | fields: lat, unit, type, qc Sensor: evaporation | fields: lat, ts, value, qc Task: Fetch depth from rainfall that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067632
train
v2
Sensor network script: Node: cloud_cover | code: stn | fields: level, value, type, depth Sensor: sunlight | fields: lon, type, lat, ts Task: Retrieve reading from cloud_cover that have at least one matching reading in sunlight sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067633
train
v1
Sensor network script: Node: uv_index | code: mst | fields: reading, type, lat, unit Sensor: visibility | fields: lon, level, value, qc Task: Get lon from uv_index where ts appears in visibility readings with matching qc. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="qc", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067634
train
v1
Sensor network script: Node: temperature | code: clr | fields: lat, reading, level, qc Sensor: rainfall | fields: lon, depth, reading, qc Task: Retrieve reading from temperature whose qc is found in rainfall records where qc matches the outer node. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="qc", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067635
train
v1
Sensor network script: Node: air_quality | code: ref | fields: qc, depth, value, lon Sensor: uv_index | fields: depth, value, reading, ts Task: Fetch depth from air_quality where qc exists in uv_index sensor data for the same ts. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="ts", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067636
train
v1
Sensor network script: Node: humidity | code: ref | fields: unit, qc, reading, ts Sensor: soil_moisture | fields: type, ts, depth, unit Task: Retrieve lon from humidity whose qc is found in soil_moisture records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067637
train
v3
Sensor network script: Node: uv_index | code: stn | fields: unit, type, qc, level Sensor: evaporation | fields: value, reading, ts, depth Task: Fetch reading from uv_index where value is greater than the minimum of depth in evaporation for matching qc. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "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_067638
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: ts, unit, qc, depth Sensor: snow_depth | fields: reading, lon, depth, lat Task: Fetch reading from cloud_cover that have at least one corresponding snow_depth measurement for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "reading", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067639
train
v2
Sensor network script: Node: pressure | code: prt | fields: depth, reading, lon, level Sensor: soil_moisture | fields: value, type, lon, lat Task: Get reading from pressure where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067640
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: reading, lat, unit, level Sensor: temperature | fields: level, unit, type, lon Task: Fetch level from wind_speed that have at least one corresponding temperature measurement for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067641
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: value, lon, depth, lat Sensor: visibility | fields: reading, unit, level, lon Task: Get lat from snow_depth where value exceeds the count of reading from visibility for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("visibility", code="clr"), match="depth"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067642
train
v1
Sensor network script: Node: evaporation | code: thr | fields: type, unit, ts, depth Sensor: frost | fields: level, ts, qc, lat Task: Fetch value from evaporation where ts exists in frost sensor data for the same unit. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="unit", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067643
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: depth, ts, type, qc Sensor: soil_moisture | fields: value, unit, lon, type Task: Retrieve level from wind_speed whose unit is found in soil_moisture records where qc matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067644
train
v2
Sensor network script: Node: uv_index | code: prt | fields: ts, lat, lon, level Sensor: snow_depth | fields: reading, qc, ts, unit Task: Retrieve reading from uv_index that have at least one matching reading in snow_depth sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067645
train
v2
Sensor network script: Node: frost | code: ref | fields: level, ts, type, lat Sensor: rainfall | fields: lat, reading, lon, unit Task: Retrieve depth from frost that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067646
train
v2
Sensor network script: Node: lightning | code: clr | fields: qc, depth, value, lon Sensor: sunlight | fields: value, reading, lon, ts Task: Fetch reading from lightning that have at least one corresponding sunlight measurement for the same qc. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067647
train
v3
Sensor network script: Node: dew_point | code: hub | fields: unit, depth, lon, level Sensor: lightning | fields: depth, lat, ts, value Task: Fetch lon from dew_point where reading is greater than the total of depth in lightning for matching depth. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("lightning", code="tnd"), match="depth"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067648
train
v2
Sensor network script: Node: pressure | code: prt | fields: level, value, ts, type Sensor: snow_depth | fields: type, level, reading, unit Task: Get reading from pressure where a corresponding entry exists in snow_depth with the same ts. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "reading", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067649
train
v3
Sensor network script: Node: temperature | code: thr | fields: type, qc, lat, value Sensor: sunlight | fields: ts, unit, level, lon Task: Retrieve lat from temperature with value above the SUM(reading) of sunlight readings sharing the same depth. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("sunlight", code="brt"), match="depth"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067650
train
v2
Sensor network script: Node: uv_index | code: gst | fields: reading, lon, lat, ts Sensor: humidity | fields: unit, level, lon, lat Task: Get lon from uv_index where a corresponding entry exists in humidity with the same unit. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067651
train
v2
Sensor network script: Node: evaporation | code: ref | fields: reading, type, lat, lon Sensor: frost | fields: unit, lon, reading, value Task: Get value from evaporation where a corresponding entry exists in frost with the same depth. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "value", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067652
train
v3
Sensor network script: Node: evaporation | code: mst | fields: ts, qc, level, lon Sensor: lightning | fields: level, reading, qc, depth Task: Fetch lat from evaporation where reading is greater than the maximum of value in lightning for matching depth. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("lightning", code="tnd"), match="depth"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067653
train
v2
Sensor network script: Node: drought_index | code: stn | fields: lon, level, lat, value Sensor: pressure | fields: depth, type, qc, reading Task: Fetch lat from drought_index that have at least one corresponding pressure measurement for the same qc. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067654
train
v3
Sensor network script: Node: rainfall | code: ref | fields: reading, lon, depth, ts Sensor: cloud_cover | fields: lon, reading, unit, lat Task: Get lon from rainfall where reading exceeds the minimum value from cloud_cover for the same ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lon", "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_067655
train
v3
Sensor network script: Node: uv_index | code: mst | fields: reading, lon, type, level Sensor: frost | fields: reading, level, unit, type Task: Fetch reading from uv_index where reading is greater than the count of of depth in frost for matching depth. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("frost", code="frs"), match="depth"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067656
train
v3
Sensor network script: Node: visibility | code: prt | fields: lon, depth, ts, reading Sensor: wind_speed | fields: value, unit, depth, ts Task: Retrieve lat from visibility with depth above the MIN(depth) of wind_speed readings sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("wind_speed", code="gst"), match="unit"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067657
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: unit, depth, reading, type Sensor: lightning | fields: depth, reading, level, ts Task: Get lon from soil_moisture where value exceeds the minimum value from lightning for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("lightning", code="tnd"), match="qc"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067658
train
v2
Sensor network script: Node: pressure | code: mst | fields: value, lat, depth, level Sensor: temperature | fields: qc, value, lat, level Task: Retrieve lon from pressure that have at least one matching reading in temperature sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067659
train
v3
Sensor network script: Node: uv_index | code: prt | fields: lon, qc, ts, value Sensor: dew_point | fields: type, lat, ts, value Task: Get lat from uv_index where value exceeds the average value from dew_point for the same unit. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("dew_point", code="cnd"), match="unit"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067660
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: qc, value, lat, lon Sensor: uv_index | fields: depth, lat, lon, unit Task: Fetch reading from cloud_cover where reading is greater than the maximum of depth in uv_index for matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("uv_index", code="flx"), match="depth"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067661
train
v3
Sensor network script: Node: turbidity | code: gst | fields: ts, lat, reading, qc Sensor: sunlight | fields: lon, depth, lat, unit Task: Retrieve lat from turbidity with value above the AVG(depth) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("sunlight", code="brt"), match="type"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067662
train
v3
Sensor network script: Node: dew_point | code: gst | fields: lat, ts, lon, type Sensor: sunlight | fields: lat, type, depth, qc Task: Fetch level from dew_point where value is greater than the maximum of reading in sunlight for matching type. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("sunlight", code="brt"), match="type"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067663
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: type, depth, qc, unit Sensor: visibility | fields: reading, unit, ts, type Task: Fetch lon from cloud_cover where reading is greater than the maximum of reading in visibility for matching type. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("visibility", code="clr"), match="type"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067664
train
v1
Sensor network script: Node: temperature | code: ref | fields: depth, level, ts, type Sensor: pressure | fields: value, qc, type, lat Task: Fetch reading from temperature where depth exists in pressure sensor data for the same type. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="type", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067665
train
v1
Sensor network script: Node: pressure | code: hub | fields: reading, unit, lon, qc Sensor: visibility | fields: lat, type, lon, value Task: Retrieve lat from pressure whose qc is found in visibility records where ts matches the outer node. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="ts", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067666
train
v2
Sensor network script: Node: lightning | code: mst | fields: ts, type, level, depth Sensor: dew_point | fields: value, ts, depth, level Task: Get value from lightning where a corresponding entry exists in dew_point with the same type. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="value", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "value", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067667
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: lat, level, reading, qc Sensor: humidity | fields: lat, level, type, qc Task: Get depth from snow_depth where reading exceeds the maximum reading from humidity for the same type. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("humidity", code="hgr"), match="type"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067668
train
v1
Sensor network script: Node: turbidity | code: hub | fields: lon, value, type, unit Sensor: pressure | fields: type, qc, unit, depth Task: Get lat from turbidity where unit appears in pressure readings with matching unit. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="unit", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067669
train
v3
Sensor network script: Node: sunlight | code: thr | fields: value, qc, level, lon Sensor: frost | fields: value, type, depth, ts Task: Retrieve level from sunlight with reading above the COUNT(reading) of frost readings sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="ts"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067670
train
v3
Sensor network script: Node: lightning | code: stn | fields: ts, unit, level, lat Sensor: wind_speed | fields: lon, lat, ts, unit Task: Retrieve reading from lightning with depth above the SUM(depth) of wind_speed readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("wind_speed", code="gst"), match="unit"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067671
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: unit, level, lat, lon Sensor: wind_speed | fields: lat, level, unit, lon Task: Fetch lon from cloud_cover where value is greater than the minimum of value in wind_speed for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("wind_speed", code="gst"), match="unit"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067672
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: type, qc, level, depth Sensor: uv_index | fields: reading, type, lat, depth Task: Get level from snow_depth where value exceeds the maximum reading from uv_index for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067673
train
v3
Sensor network script: Node: uv_index | code: clr | fields: qc, ts, reading, level Sensor: drought_index | fields: unit, qc, level, lon Task: Fetch reading from uv_index where reading is greater than the total of reading in drought_index for matching qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("drought_index", code="drt"), match="qc"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067674
train
v1
Sensor network script: Node: temperature | code: stn | fields: value, ts, reading, level Sensor: frost | fields: unit, qc, type, reading Task: Retrieve depth from temperature whose ts is found in frost records where qc matches the outer node. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="qc", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067675
train
v3
Sensor network script: Node: turbidity | code: mst | fields: reading, type, lat, level Sensor: uv_index | fields: lon, value, level, unit Task: Get level from turbidity where reading exceeds the total value from uv_index for the same ts. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("uv_index", code="flx"), match="ts"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067676
train
v1
Sensor network script: Node: turbidity | code: hub | fields: qc, type, lon, depth Sensor: sunlight | fields: lat, level, qc, type Task: Retrieve lat from turbidity whose qc is found in sunlight records where type matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="type", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067677
train
v2
Sensor network script: Node: uv_index | code: clr | fields: unit, level, lon, ts Sensor: wind_speed | fields: lon, ts, depth, reading Task: Fetch lat from uv_index that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067678
train
v1
Sensor network script: Node: uv_index | code: clr | fields: lon, depth, level, type Sensor: frost | fields: reading, lat, depth, value Task: Get value from uv_index where qc appears in frost readings with matching type. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067679
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: lon, unit, value, depth Sensor: sunlight | fields: qc, value, ts, level Task: Get lon from snow_depth where depth exceeds the maximum value from sunlight for the same type. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("sunlight", code="brt"), match="type"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067680
train
v3
Sensor network script: Node: turbidity | code: stn | fields: reading, lon, unit, lat Sensor: snow_depth | fields: type, reading, qc, lon Task: Retrieve lat from turbidity with value above the MIN(reading) of snow_depth readings sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("snow_depth", code="snw"), match="unit"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067681
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: depth, unit, value, lat Sensor: drought_index | fields: depth, lat, type, reading Task: Get depth from cloud_cover where depth exceeds the minimum reading from drought_index for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("drought_index", code="drt"), match="unit"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067682
train
v3
Sensor network script: Node: pressure | code: prt | fields: depth, lon, lat, value Sensor: soil_moisture | fields: type, unit, qc, lon Task: Retrieve lat from pressure with depth above the MIN(value) of soil_moisture readings sharing the same type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067683
train
v3
Sensor network script: Node: lightning | code: gst | fields: lat, unit, level, value Sensor: drought_index | fields: qc, ts, unit, lat Task: Retrieve lon from lightning with value above the AVG(depth) of drought_index readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("drought_index", code="drt"), match="unit"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067684
train
v3
Sensor network script: Node: dew_point | code: mst | fields: unit, lon, reading, depth Sensor: cloud_cover | fields: reading, lat, depth, level Task: Retrieve depth from dew_point with depth above the MIN(value) of cloud_cover readings sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067685
train
v3
Sensor network script: Node: humidity | code: prt | fields: lon, ts, type, depth Sensor: evaporation | fields: reading, unit, value, qc Task: Retrieve level from humidity with depth above the MIN(value) of evaporation readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("evaporation", code="evp"), match="qc"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067686
train
v3
Sensor network script: Node: dew_point | code: stn | fields: lon, unit, qc, depth Sensor: humidity | fields: lat, unit, lon, reading Task: Retrieve lon from dew_point with value above the MAX(value) of humidity readings sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("humidity", code="hgr"), match="depth"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067687
train
v1
Sensor network script: Node: lightning | code: clr | fields: depth, lat, qc, unit Sensor: rainfall | fields: lon, reading, value, lat Task: Get depth from lightning where ts appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067688
train
v2
Sensor network script: Node: turbidity | code: ref | fields: level, reading, lon, unit Sensor: humidity | fields: value, qc, ts, level Task: Fetch lon from turbidity that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067689
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: ts, unit, level, type Sensor: frost | fields: reading, lon, type, value Task: Get value from soil_moisture where a corresponding entry exists in frost with the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "value", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067690
train
v3
Sensor network script: Node: pressure | code: hub | fields: type, level, depth, reading Sensor: sunlight | fields: qc, lon, value, depth Task: Retrieve reading from pressure with depth above the MAX(value) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("sunlight", code="brt"), match="type"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067691
train
v2
Sensor network script: Node: cloud_cover | code: gst | fields: lon, level, unit, type Sensor: evaporation | fields: unit, level, ts, qc Task: Retrieve depth from cloud_cover that have at least one matching reading in evaporation sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067692
train
v2
Sensor network script: Node: temperature | code: ref | fields: lat, ts, type, depth Sensor: dew_point | fields: reading, qc, unit, lat Task: Retrieve depth from temperature that have at least one matching reading in dew_point sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067693
train
v1
Sensor network script: Node: sunlight | code: hub | fields: unit, lon, qc, depth Sensor: cloud_cover | fields: value, reading, qc, depth Task: Fetch value from sunlight where qc exists in cloud_cover sensor data for the same ts. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067694
train
v1
Sensor network script: Node: drought_index | code: thr | fields: qc, lon, depth, lat Sensor: evaporation | fields: unit, ts, reading, qc Task: Fetch level from drought_index where ts exists in evaporation sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="depth", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067695
train
v2
Sensor network script: Node: air_quality | code: thr | fields: lat, depth, value, unit Sensor: visibility | fields: lon, depth, reading, value Task: Get depth from air_quality where a corresponding entry exists in visibility with the same depth. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067696
train
v1
Sensor network script: Node: visibility | code: stn | fields: value, unit, reading, qc Sensor: rainfall | fields: depth, qc, type, value Task: Fetch reading from visibility where ts exists in rainfall sensor data for the same qc. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="qc", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067697
train
v1
Sensor network script: Node: turbidity | code: prt | fields: reading, level, unit, value Sensor: rainfall | fields: qc, depth, type, lat Task: Retrieve reading from turbidity whose depth is found in rainfall records where depth matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="depth", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067698
train
v1
Sensor network script: Node: rainfall | code: mst | fields: type, level, qc, ts Sensor: turbidity | fields: depth, reading, lat, unit Task: Get depth from rainfall where unit appears in turbidity readings with matching unit. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="unit", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067699
train