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: evaporation | code: prt | fields: depth, type, level, unit Sensor: uv_index | fields: reading, type, unit, value Task: Fetch reading from evaporation that have at least one corresponding uv_index measurement for the same qc. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "reading", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061700
train
v1
Sensor network script: Node: visibility | code: hub | fields: depth, unit, qc, value Sensor: cloud_cover | fields: qc, depth, type, value Task: Get reading from visibility where ts appears in cloud_cover readings with matching unit. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061701
train
v3
Sensor network script: Node: drought_index | code: prt | fields: lat, ts, reading, type Sensor: rainfall | fields: type, value, lon, unit Task: Get reading from drought_index where reading exceeds the minimum depth from rainfall for the same unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061702
train
v1
Sensor network script: Node: frost | code: thr | fields: lat, value, unit, depth Sensor: rainfall | fields: lat, reading, ts, unit Task: Fetch lon from frost where qc exists in rainfall sensor data for the same qc. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="qc", ), output="lon", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061703
train
v3
Sensor network script: Node: turbidity | code: thr | fields: level, value, unit, reading Sensor: cloud_cover | fields: level, unit, reading, ts Task: Fetch depth from turbidity where depth is greater than the minimum of depth in cloud_cover for matching type. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061704
train
v2
Sensor network script: Node: visibility | code: prt | fields: qc, value, lon, reading Sensor: lightning | fields: level, ts, qc, unit Task: Retrieve lon from visibility that have at least one matching reading in lightning sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061705
train
v2
Sensor network script: Node: rainfall | code: mst | fields: unit, lon, reading, depth Sensor: visibility | fields: type, lat, ts, reading Task: Retrieve value from rainfall that have at least one matching reading in visibility sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "value", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061706
train
v1
Sensor network script: Node: frost | code: mst | fields: ts, lat, unit, value Sensor: cloud_cover | fields: ts, unit, reading, lon Task: Fetch level from frost where depth exists in cloud_cover sensor data for the same unit. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="level", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061707
train
v2
Sensor network script: Node: frost | code: clr | fields: lat, reading, unit, level Sensor: drought_index | fields: value, lat, lon, qc Task: Get depth from frost where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="depth", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061708
train
v3
Sensor network script: Node: pressure | code: mst | fields: reading, level, value, depth Sensor: dew_point | fields: lat, depth, value, lon Task: Fetch depth from pressure where depth is greater than the maximum of reading in dew_point for matching ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061709
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: ts, unit, level, lat Sensor: pressure | fields: lon, level, lat, depth Task: Fetch level from wind_speed where ts exists in pressure sensor data for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061710
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: level, lat, type, value Sensor: humidity | fields: qc, value, lon, type Task: Retrieve lat from soil_moisture with reading above the COUNT(reading) of humidity readings sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="ts"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061711
train
v3
Sensor network script: Node: visibility | code: hub | fields: lon, type, ts, depth Sensor: snow_depth | fields: ts, level, lat, lon Task: Retrieve level from visibility with reading above the AVG(reading) of snow_depth readings sharing the same type. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("snow_depth", code="snw"), match="type"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061712
train
v2
Sensor network script: Node: air_quality | code: ref | fields: lat, unit, type, ts Sensor: drought_index | fields: type, lon, level, qc Task: Retrieve reading from air_quality that have at least one matching reading in drought_index sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061713
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: lat, unit, level, ts Sensor: wind_speed | fields: reading, ts, level, value Task: Get lat from cloud_cover where a corresponding entry exists in wind_speed with the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061714
train
v3
Sensor network script: Node: temperature | code: prt | fields: value, reading, ts, type Sensor: cloud_cover | fields: type, depth, lon, lat Task: Get level from temperature where reading exceeds the count of value from cloud_cover for the same depth. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061715
train
v3
Sensor network script: Node: humidity | code: ref | fields: depth, unit, level, lon Sensor: drought_index | fields: type, qc, lon, value Task: Fetch reading from humidity where reading is greater than the total of reading in drought_index for matching unit. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("drought_index", code="drt"), match="unit"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061716
train
v1
Sensor network script: Node: lightning | code: clr | fields: ts, reading, type, unit Sensor: snow_depth | fields: type, value, level, unit Task: Get value from lightning where ts appears in snow_depth readings with matching type. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="type", ), output="value", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061717
train
v2
Sensor network script: Node: lightning | code: thr | fields: lat, lon, value, depth Sensor: soil_moisture | fields: ts, reading, qc, depth Task: Retrieve lat from lightning that have at least one matching reading in soil_moisture sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061718
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: depth, ts, type, level Sensor: wind_speed | fields: level, ts, qc, lon Task: Fetch level from cloud_cover that have at least one corresponding wind_speed measurement for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061719
train
v1
Sensor network script: Node: frost | code: ref | fields: reading, ts, depth, value Sensor: lightning | fields: reading, value, ts, level Task: Retrieve lon from frost whose depth is found in lightning records where type matches the outer node. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="type", ), output="lon", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061720
train
v1
Sensor network script: Node: rainfall | code: gst | fields: unit, lon, value, ts Sensor: soil_moisture | fields: unit, value, depth, reading Task: Fetch value from rainfall where type exists in soil_moisture sensor data for the same ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061721
train
v3
Sensor network script: Node: sunlight | code: mst | fields: lat, reading, depth, unit Sensor: drought_index | fields: value, qc, depth, type Task: Get reading from sunlight where value exceeds the total value from drought_index for the same ts. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="ts"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061722
train
v2
Sensor network script: Node: humidity | code: mst | fields: depth, type, qc, level Sensor: soil_moisture | fields: qc, lon, reading, type Task: Get lat from humidity where a corresponding entry exists in soil_moisture with the same qc. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061723
train
v3
Sensor network script: Node: pressure | code: stn | fields: ts, reading, unit, lon Sensor: wind_speed | fields: value, lon, level, lat Task: Get lat from pressure where depth exceeds the total depth from wind_speed for the same ts. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061724
train
v3
Sensor network script: Node: evaporation | code: stn | fields: ts, lat, depth, qc Sensor: pressure | fields: depth, ts, unit, lat Task: Fetch depth from evaporation where depth is greater than the total of depth in pressure for matching unit. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("pressure", code="mbl"), match="unit"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061725
train
v1
Sensor network script: Node: dew_point | code: ref | fields: qc, reading, depth, ts Sensor: wind_speed | fields: type, value, unit, ts Task: Fetch value from dew_point where type exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "value", "filter_col": "type", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061726
train
v3
Sensor network script: Node: pressure | code: stn | fields: level, reading, ts, unit Sensor: snow_depth | fields: ts, unit, value, lat Task: Fetch lon from pressure where depth is greater than the total of depth in snow_depth for matching unit. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("snow_depth", code="snw"), match="unit"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061727
train
v2
Sensor network script: Node: frost | code: mst | fields: value, qc, ts, type Sensor: visibility | fields: reading, value, lon, level Task: Retrieve reading from frost that have at least one matching reading in visibility sharing the same depth. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="reading", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061728
train
v3
Sensor network script: Node: frost | code: thr | fields: lat, reading, qc, lon Sensor: snow_depth | fields: qc, ts, lat, value Task: Fetch depth from frost where value is greater than the minimum of value in snow_depth for matching ts. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061729
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: ts, type, lon, value Sensor: dew_point | fields: reading, lat, lon, ts Task: Retrieve value from wind_speed that have at least one matching reading in dew_point sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "value", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061730
train
v2
Sensor network script: Node: dew_point | code: gst | fields: value, unit, reading, ts Sensor: uv_index | fields: type, lat, reading, value Task: Retrieve depth from dew_point that have at least one matching reading in uv_index sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061731
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: lon, qc, ts, type Sensor: uv_index | fields: value, unit, ts, depth Task: Retrieve level from soil_moisture whose qc is found in uv_index records where depth matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061732
train
v2
Sensor network script: Node: turbidity | code: mst | fields: ts, lon, value, reading Sensor: wind_speed | fields: level, type, lat, value Task: Fetch value from turbidity that have at least one corresponding wind_speed measurement for the same unit. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061733
train
v1
Sensor network script: Node: dew_point | code: hub | fields: level, ts, lon, lat Sensor: sunlight | fields: lon, value, ts, lat Task: Fetch value from dew_point where type exists in sunlight sensor data for the same depth. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="depth", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061734
train
v2
Sensor network script: Node: rainfall | code: prt | fields: level, ts, qc, value Sensor: sunlight | fields: reading, level, type, unit Task: Retrieve lon from rainfall that have at least one matching reading in sunlight sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061735
train
v1
Sensor network script: Node: lightning | code: mst | fields: reading, ts, unit, lon Sensor: snow_depth | fields: depth, lon, level, value Task: Get lat from lightning where ts appears in snow_depth readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="unit", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061736
train
v2
Sensor network script: Node: temperature | code: prt | fields: depth, unit, reading, level Sensor: frost | fields: lat, qc, type, depth Task: Fetch reading from temperature that have at least one corresponding frost measurement for the same qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "reading", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061737
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: lon, value, lat, ts Sensor: pressure | fields: lat, qc, type, level Task: Get level from wind_speed where reading exceeds the average value from pressure for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("pressure", code="mbl"), match="ts"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061738
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: lon, lat, depth, ts Sensor: temperature | fields: level, depth, value, type Task: Get lon from soil_moisture where depth appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061739
train
v2
Sensor network script: Node: humidity | code: stn | fields: lat, qc, reading, type Sensor: air_quality | fields: value, lon, ts, qc Task: Retrieve reading from humidity that have at least one matching reading in air_quality sharing the same type. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061740
train
v1
Sensor network script: Node: rainfall | code: gst | fields: depth, unit, type, ts Sensor: pressure | fields: type, lon, reading, unit Task: Get level from rainfall where type appears in pressure readings with matching qc. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="qc", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061741
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: reading, lat, level, value Sensor: dew_point | fields: lon, type, qc, unit Task: Get reading from soil_moisture where a corresponding entry exists in dew_point with the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061742
train
v1
Sensor network script: Node: pressure | code: hub | fields: depth, value, reading, ts Sensor: humidity | fields: level, reading, ts, lat Task: Retrieve level from pressure whose ts is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="unit", ), output="level", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061743
train
v1
Sensor network script: Node: dew_point | code: prt | fields: level, lon, depth, value Sensor: evaporation | fields: lon, type, lat, depth Task: Retrieve depth from dew_point whose type is found in evaporation records where type matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="type", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061744
train
v3
Sensor network script: Node: turbidity | code: thr | fields: level, unit, ts, lat Sensor: pressure | fields: lat, ts, value, lon Task: Fetch level from turbidity where value is greater than the total of reading in pressure for matching qc. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("pressure", code="mbl"), match="qc"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061745
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: reading, lat, value, unit Sensor: evaporation | fields: reading, depth, level, ts Task: Get lat from wind_speed where a corresponding entry exists in evaporation with the same depth. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lat", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061746
train
v3
Sensor network script: Node: air_quality | code: stn | fields: reading, qc, type, lon Sensor: humidity | fields: unit, ts, level, type Task: Retrieve lon from air_quality with value above the MAX(reading) of humidity readings sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("humidity", code="hgr"), match="depth"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061747
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: qc, lon, reading, level Sensor: temperature | fields: lat, value, level, unit Task: Retrieve reading from snow_depth that have at least one matching reading in temperature sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061748
train
v1
Sensor network script: Node: sunlight | code: hub | fields: lat, level, type, unit Sensor: cloud_cover | fields: depth, lon, type, qc Task: Fetch depth from sunlight where unit exists in cloud_cover sensor data for the same unit. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061749
train
v2
Sensor network script: Node: cloud_cover | code: gst | fields: level, lon, ts, unit Sensor: uv_index | fields: level, reading, depth, lon Task: Fetch depth from cloud_cover that have at least one corresponding uv_index measurement for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061750
train
v2
Sensor network script: Node: air_quality | code: gst | fields: type, ts, qc, level Sensor: humidity | fields: qc, value, reading, level Task: Fetch lon from air_quality that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "air_quality", "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_061751
train
v1
Sensor network script: Node: evaporation | code: clr | fields: value, depth, level, ts Sensor: uv_index | fields: qc, reading, lon, unit Task: Fetch lon from evaporation where unit exists in uv_index sensor data for the same qc. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="qc", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061752
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: level, ts, depth, value Sensor: soil_moisture | fields: value, depth, ts, type Task: Fetch lon from wind_speed where depth is greater than the minimum of reading in soil_moisture for matching depth. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061753
train
v2
Sensor network script: Node: visibility | code: stn | fields: level, qc, reading, lon Sensor: frost | fields: reading, ts, level, qc Task: Get lon from visibility where a corresponding entry exists in frost with the same qc. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "lon", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061754
train
v3
Sensor network script: Node: frost | code: clr | fields: type, value, lon, reading Sensor: humidity | fields: level, type, lon, reading Task: Fetch value from frost where reading is greater than the average of value in humidity for matching unit. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("humidity", code="hgr"), match="unit"), ), output="value", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061755
train
v1
Sensor network script: Node: evaporation | code: clr | fields: ts, value, depth, level Sensor: drought_index | fields: type, lon, lat, qc Task: Fetch reading from evaporation where unit exists in drought_index sensor data for the same depth. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="depth", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061756
train
v3
Sensor network script: Node: lightning | code: thr | fields: level, reading, qc, type Sensor: cloud_cover | fields: ts, depth, unit, type Task: Retrieve level from lightning with value above the AVG(reading) of cloud_cover readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061757
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: reading, ts, qc, lat Sensor: snow_depth | fields: depth, lon, value, ts Task: Fetch value from cloud_cover where ts exists in snow_depth sensor data for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="depth", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061758
train
v2
Sensor network script: Node: visibility | code: hub | fields: level, type, depth, reading Sensor: drought_index | fields: depth, unit, reading, type Task: Fetch lat from visibility that have at least one corresponding drought_index measurement for the same qc. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061759
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: qc, lat, unit, depth Sensor: evaporation | fields: depth, lon, qc, type Task: Get value from snow_depth where depth exceeds the maximum value from evaporation for the same type. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="type"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061760
train
v1
Sensor network script: Node: uv_index | code: hub | fields: reading, qc, depth, value Sensor: snow_depth | fields: qc, reading, unit, ts Task: Get lon from uv_index where qc appears in snow_depth readings with matching qc. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061761
train
v3
Sensor network script: Node: dew_point | code: hub | fields: unit, lat, value, lon Sensor: cloud_cover | fields: lat, type, qc, reading Task: Retrieve depth from dew_point with reading above the MAX(value) of cloud_cover readings sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061762
train
v2
Sensor network script: Node: humidity | code: stn | fields: ts, value, qc, reading Sensor: rainfall | fields: depth, lat, lon, level Task: Fetch lon from humidity that have at least one corresponding rainfall measurement for the same depth. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061763
train
v2
Sensor network script: Node: humidity | code: ref | fields: qc, lat, lon, type Sensor: turbidity | fields: type, qc, level, unit Task: Fetch lat from humidity that have at least one corresponding turbidity measurement for the same type. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lat", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061764
train
v2
Sensor network script: Node: pressure | code: clr | fields: ts, qc, type, level Sensor: sunlight | fields: depth, qc, lon, unit Task: Retrieve reading from pressure that have at least one matching reading in sunlight sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061765
train
v3
Sensor network script: Node: lightning | code: gst | fields: reading, lat, unit, type Sensor: temperature | fields: reading, qc, lat, level Task: Retrieve lon from lightning with reading above the COUNT(value) of temperature readings sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("temperature", code="thr"), match="qc"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061766
train
v3
Sensor network script: Node: evaporation | code: gst | fields: type, ts, level, lat Sensor: dew_point | fields: unit, type, ts, depth Task: Get value from evaporation where reading exceeds the total value from dew_point for the same ts. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("dew_point", code="cnd"), match="ts"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061767
train
v1
Sensor network script: Node: dew_point | code: prt | fields: level, type, ts, depth Sensor: lightning | fields: qc, type, value, depth Task: Retrieve depth from dew_point whose type is found in lightning records where depth matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="depth", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061768
train
v3
Sensor network script: Node: turbidity | code: thr | fields: level, ts, depth, value Sensor: snow_depth | fields: ts, value, type, lat Task: Get lon from turbidity where value exceeds the count of value from snow_depth for the same depth. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("snow_depth", code="snw"), match="depth"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061769
train
v3
Sensor network script: Node: rainfall | code: stn | fields: reading, type, qc, unit Sensor: turbidity | fields: ts, type, level, lat Task: Retrieve lat from rainfall with depth above the MAX(value) of turbidity readings sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("turbidity", code="ftu"), match="type"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "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_061770
train
v3
Sensor network script: Node: pressure | code: ref | fields: lat, reading, level, value Sensor: turbidity | fields: ts, qc, lon, value Task: Retrieve level from pressure with reading above the MIN(value) of turbidity readings sharing the same type. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("turbidity", code="ftu"), match="type"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061771
train
v2
Sensor network script: Node: humidity | code: gst | fields: value, qc, type, level Sensor: air_quality | fields: qc, type, reading, value Task: Retrieve lat from humidity that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061772
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: value, type, ts, unit Sensor: drought_index | fields: unit, type, ts, value Task: Retrieve lon from cloud_cover that have at least one matching reading in drought_index sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061773
train
v3
Sensor network script: Node: temperature | code: ref | fields: lat, ts, reading, lon Sensor: rainfall | fields: level, qc, value, ts Task: Get value from temperature where depth exceeds the count of value from rainfall for the same unit. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061774
train
v1
Sensor network script: Node: uv_index | code: prt | fields: unit, reading, level, type Sensor: visibility | fields: value, lat, ts, unit Task: Get value from uv_index where type appears in visibility readings with matching unit. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="unit", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "value", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061775
train
v1
Sensor network script: Node: temperature | code: ref | fields: qc, level, lon, depth Sensor: evaporation | fields: lat, type, depth, unit Task: Fetch level from temperature where unit exists in evaporation sensor data for the same qc. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="qc", ), output="level", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061776
train
v1
Sensor network script: Node: air_quality | code: mst | fields: ts, unit, level, qc Sensor: sunlight | fields: qc, depth, value, lat Task: Get lon from air_quality where ts appears in sunlight readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="unit", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061777
train
v3
Sensor network script: Node: sunlight | code: prt | fields: reading, ts, depth, type Sensor: dew_point | fields: ts, level, reading, value Task: Retrieve reading from sunlight with depth above the MIN(reading) of dew_point readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("dew_point", code="cnd"), match="depth"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061778
train
v3
Sensor network script: Node: frost | code: gst | fields: type, unit, lat, lon Sensor: uv_index | fields: reading, value, depth, qc Task: Retrieve reading from frost with reading above the MAX(value) of uv_index readings sharing the same ts. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="ts"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061779
train
v2
Sensor network script: Node: rainfall | code: hub | fields: level, value, qc, depth Sensor: cloud_cover | fields: lon, lat, value, unit Task: Get depth from rainfall where a corresponding entry exists in cloud_cover with the same unit. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061780
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: lat, value, lon, ts Sensor: wind_speed | fields: lat, qc, ts, value Task: Fetch reading from soil_moisture that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061781
train
v1
Sensor network script: Node: humidity | code: mst | fields: value, lon, type, unit Sensor: air_quality | fields: unit, depth, qc, type Task: Fetch lat from humidity where qc exists in air_quality sensor data for the same ts. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="ts", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061782
train
v2
Sensor network script: Node: lightning | code: stn | fields: ts, lon, type, unit Sensor: pressure | fields: lat, depth, qc, reading Task: Fetch lat from lightning that have at least one corresponding pressure measurement for the same type. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lat", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061783
train
v1
Sensor network script: Node: temperature | code: gst | fields: qc, reading, lat, lon Sensor: evaporation | fields: level, unit, reading, type Task: Retrieve value from temperature whose unit is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="unit", ), output="value", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061784
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: value, level, lon, qc Sensor: visibility | fields: depth, ts, lon, reading Task: Fetch lat from snow_depth where type exists in visibility sensor data for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061785
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: lon, ts, level, reading Sensor: frost | fields: level, ts, unit, lon Task: Retrieve value from wind_speed that have at least one matching reading in frost sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061786
train
v3
Sensor network script: Node: temperature | code: thr | fields: unit, type, qc, lat Sensor: air_quality | fields: reading, lon, qc, level Task: Fetch value from temperature where depth is greater than the maximum of value in air_quality for matching type. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("air_quality", code="prt"), match="type"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061787
train
v2
Sensor network script: Node: visibility | code: clr | fields: lat, value, reading, level Sensor: turbidity | fields: value, ts, type, qc Task: Fetch reading from visibility that have at least one corresponding turbidity measurement for the same ts. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "reading", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061788
train
v1
Sensor network script: Node: visibility | code: hub | fields: lon, depth, value, type Sensor: dew_point | fields: unit, qc, value, level Task: Fetch lon from visibility where qc exists in dew_point sensor data for the same qc. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="qc", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061789
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: unit, ts, lat, level Sensor: uv_index | fields: level, unit, lat, lon Task: Retrieve lon from snow_depth that have at least one matching reading in uv_index sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061790
train
v1
Sensor network script: Node: uv_index | code: clr | fields: value, unit, depth, ts Sensor: cloud_cover | fields: lon, ts, unit, value Task: Get depth from uv_index where depth appears in cloud_cover readings with matching type. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="type", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061791
train
v3
Sensor network script: Node: visibility | code: thr | fields: ts, lon, lat, reading Sensor: turbidity | fields: type, unit, depth, lon Task: Retrieve depth from visibility with value above the COUNT(reading) of turbidity readings sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("turbidity", code="ftu"), match="depth"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061792
train
v2
Sensor network script: Node: pressure | code: hub | fields: lat, value, lon, level Sensor: air_quality | fields: reading, ts, unit, level Task: Fetch level from pressure that have at least one corresponding air_quality measurement for the same qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="level", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061793
train
v1
Sensor network script: Node: humidity | code: mst | fields: qc, level, lat, type Sensor: wind_speed | fields: depth, level, lat, ts Task: Get reading from humidity where ts appears in wind_speed readings with matching qc. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="qc", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061794
train
v3
Sensor network script: Node: dew_point | code: hub | fields: qc, depth, reading, value Sensor: turbidity | fields: lat, type, unit, depth Task: Get value from dew_point where depth exceeds the count of reading from turbidity for the same ts. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("turbidity", code="ftu"), match="ts"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061795
train
v2
Sensor network script: Node: frost | code: stn | fields: value, level, type, qc Sensor: wind_speed | fields: reading, ts, type, value Task: Retrieve depth from frost that have at least one matching reading in wind_speed sharing the same qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="depth", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061796
train
v3
Sensor network script: Node: dew_point | code: hub | fields: lon, type, unit, depth Sensor: evaporation | fields: lon, ts, type, unit Task: Retrieve level from dew_point with depth above the COUNT(reading) of evaporation readings sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("evaporation", code="evp"), match="type"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061797
train
v1
Sensor network script: Node: lightning | code: gst | fields: lon, level, depth, qc Sensor: rainfall | fields: ts, lat, depth, reading Task: Retrieve value from lightning whose type is found in rainfall records where depth matches the outer node. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061798
train
v3
Sensor network script: Node: visibility | code: gst | fields: value, depth, ts, reading Sensor: sunlight | fields: ts, lon, value, reading Task: Retrieve lon from visibility with reading above the AVG(reading) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("sunlight", code="brt"), match="type"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061799
train