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: drought_index | code: prt | fields: qc, lon, type, depth Sensor: uv_index | fields: value, reading, lat, type Task: Retrieve lon from drought_index whose ts is found in uv_index records where qc matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="qc", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065700
train
v2
Sensor network script: Node: rainfall | code: hub | fields: ts, type, reading, qc Sensor: temperature | fields: ts, type, depth, value Task: Retrieve lon from rainfall that have at least one matching reading in temperature sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065701
train
v3
Sensor network script: Node: sunlight | code: gst | fields: level, depth, lat, type Sensor: lightning | fields: type, reading, unit, value Task: Retrieve level from sunlight with reading above the AVG(depth) of lightning readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("lightning", code="tnd"), match="depth"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065702
train
v2
Sensor network script: Node: dew_point | code: ref | fields: type, lon, value, lat Sensor: sunlight | fields: reading, lat, ts, type Task: Fetch depth from dew_point that have at least one corresponding sunlight measurement for the same qc. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065703
train
v1
Sensor network script: Node: lightning | code: thr | fields: qc, lat, type, level Sensor: frost | fields: ts, qc, type, depth Task: Fetch reading from lightning where depth exists in frost sensor data for the same unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="unit", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065704
train
v1
Sensor network script: Node: drought_index | code: stn | fields: unit, ts, value, level Sensor: uv_index | fields: depth, type, ts, lon Task: Get value from drought_index where type appears in uv_index readings with matching qc. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="qc", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065705
train
v2
Sensor network script: Node: visibility | code: clr | fields: level, depth, lon, unit Sensor: lightning | fields: depth, reading, ts, qc Task: Fetch reading from visibility that have at least one corresponding lightning measurement for the same depth. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "reading", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065706
train
v2
Sensor network script: Node: humidity | code: gst | fields: unit, value, level, type Sensor: dew_point | fields: qc, level, ts, value Task: Retrieve depth from humidity that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065707
train
v3
Sensor network script: Node: uv_index | code: thr | fields: lon, type, qc, level Sensor: snow_depth | fields: type, lon, level, ts Task: Fetch reading from uv_index where reading is greater than the minimum of value in snow_depth for matching ts. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065708
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: type, level, ts, lon Sensor: frost | fields: value, depth, ts, type Task: Fetch lon from soil_moisture where depth exists in frost sensor data for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065709
train
v1
Sensor network script: Node: dew_point | code: prt | fields: lat, qc, ts, type Sensor: frost | fields: lon, depth, type, level Task: Get lat from dew_point where unit appears in frost readings with matching depth. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="depth", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065710
train
v1
Sensor network script: Node: humidity | code: thr | fields: type, qc, level, ts Sensor: turbidity | fields: lat, unit, level, lon Task: Retrieve lon from humidity whose unit is found in turbidity records where type matches the outer node. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065711
train
v2
Sensor network script: Node: rainfall | code: hub | fields: type, level, unit, ts Sensor: evaporation | fields: depth, ts, lon, level Task: Retrieve lat from rainfall that have at least one matching reading in evaporation sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lat", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065712
train
v2
Sensor network script: Node: air_quality | code: ref | fields: reading, value, depth, type Sensor: drought_index | fields: qc, unit, reading, depth Task: Get reading from air_quality where a corresponding entry exists in drought_index with the same type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "reading", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065713
train
v1
Sensor network script: Node: evaporation | code: ref | fields: lon, lat, type, level Sensor: pressure | fields: depth, level, value, reading Task: Fetch depth from evaporation where type exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="qc", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065714
train
v1
Sensor network script: Node: temperature | code: hub | fields: type, qc, unit, lon Sensor: wind_speed | fields: reading, depth, lat, level Task: Fetch reading from temperature where ts exists in wind_speed sensor data for the same qc. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="qc", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065715
train
v1
Sensor network script: Node: sunlight | code: clr | fields: qc, ts, unit, value Sensor: humidity | fields: value, unit, depth, type Task: Get value from sunlight where ts appears in humidity readings with matching unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065716
train
v1
Sensor network script: Node: lightning | code: clr | fields: level, reading, lat, qc Sensor: sunlight | fields: qc, lon, lat, unit Task: Fetch lon from lightning where unit exists in sunlight sensor data for the same ts. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="ts", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065717
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: type, lon, ts, unit Sensor: pressure | fields: depth, lat, unit, reading Task: Fetch level from wind_speed that have at least one corresponding pressure measurement for the same type. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "level", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065718
train
v3
Sensor network script: Node: frost | code: thr | fields: qc, ts, reading, depth Sensor: visibility | fields: qc, unit, level, lat Task: Retrieve level from frost with reading above the COUNT(depth) of visibility readings sharing the same ts. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("visibility", code="clr"), match="ts"), ), output="level", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065719
train
v2
Sensor network script: Node: pressure | code: clr | fields: lat, ts, unit, type Sensor: lightning | fields: lat, reading, unit, type Task: Get lat from pressure where a corresponding entry exists in lightning with the same ts. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lat", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065720
train
v3
Sensor network script: Node: sunlight | code: ref | fields: qc, value, level, unit Sensor: temperature | fields: lon, type, value, depth Task: Fetch lon from sunlight where depth is greater than the minimum of reading in temperature for matching depth. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("temperature", code="thr"), match="depth"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065721
train
v2
Sensor network script: Node: humidity | code: clr | fields: reading, lat, lon, ts Sensor: wind_speed | fields: lon, qc, unit, type Task: Get lat from humidity where a corresponding entry exists in wind_speed with the same ts. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065722
train
v1
Sensor network script: Node: uv_index | code: clr | fields: qc, depth, reading, unit Sensor: temperature | fields: unit, depth, lat, qc Task: Retrieve level from uv_index whose qc is found in temperature records where type matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="type", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065723
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: lon, type, qc, value Sensor: lightning | fields: ts, type, qc, unit Task: Retrieve reading from soil_moisture that have at least one matching reading in lightning sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065724
train
v3
Sensor network script: Node: pressure | code: stn | fields: type, level, value, reading Sensor: turbidity | fields: depth, unit, level, qc Task: Get level from pressure where depth exceeds the average reading from turbidity for the same ts. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("turbidity", code="ftu"), match="ts"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065725
train
v2
Sensor network script: Node: lightning | code: stn | fields: lat, ts, qc, level Sensor: wind_speed | fields: lat, depth, value, type Task: Retrieve depth from lightning that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065726
train
v2
Sensor network script: Node: temperature | code: clr | fields: level, unit, qc, value Sensor: lightning | fields: value, reading, level, unit Task: Get reading from temperature where a corresponding entry exists in lightning with the same type. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065727
train
v1
Sensor network script: Node: pressure | code: ref | fields: ts, value, lon, unit Sensor: cloud_cover | fields: ts, unit, qc, depth Task: Fetch level from pressure where qc exists in cloud_cover sensor data for the same depth. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="level", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065728
train
v1
Sensor network script: Node: turbidity | code: hub | fields: lon, unit, lat, value Sensor: sunlight | fields: depth, lon, unit, level Task: Retrieve reading from turbidity whose ts is found in sunlight records where ts matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="ts", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065729
train
v3
Sensor network script: Node: evaporation | code: hub | fields: qc, level, lat, ts Sensor: air_quality | fields: unit, lat, ts, reading Task: Get reading from evaporation where depth exceeds the average value from air_quality for the same unit. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("air_quality", code="prt"), match="unit"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065730
train
v2
Sensor network script: Node: sunlight | code: ref | fields: lat, level, lon, qc Sensor: uv_index | fields: ts, depth, lat, qc Task: Retrieve lon from sunlight that have at least one matching reading in uv_index sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065731
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: depth, reading, type, lat Sensor: turbidity | fields: unit, reading, type, depth Task: Fetch depth from wind_speed that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065732
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: reading, lon, lat, type Sensor: soil_moisture | fields: type, depth, ts, lat Task: Fetch depth from snow_depth where value is greater than the minimum of value in soil_moisture for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065733
train
v2
Sensor network script: Node: lightning | code: stn | fields: depth, level, lon, reading Sensor: turbidity | fields: level, type, depth, qc Task: Retrieve depth from lightning that have at least one matching reading in turbidity sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065734
train
v3
Sensor network script: Node: drought_index | code: ref | fields: level, lon, unit, lat Sensor: dew_point | fields: lat, reading, lon, depth Task: Get depth from drought_index where reading exceeds the maximum reading from dew_point for the same unit. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("dew_point", code="cnd"), match="unit"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065735
train
v3
Sensor network script: Node: temperature | code: hub | fields: value, lon, qc, type Sensor: humidity | fields: depth, lat, qc, value Task: Fetch level from temperature where value is greater than the average of depth in humidity for matching depth. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("humidity", code="hgr"), match="depth"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065736
train
v1
Sensor network script: Node: temperature | code: prt | fields: value, level, lon, ts Sensor: dew_point | fields: type, value, qc, depth Task: Get lat from temperature where unit appears in dew_point readings with matching type. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="type", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065737
train
v2
Sensor network script: Node: dew_point | code: ref | fields: unit, ts, qc, type Sensor: uv_index | fields: value, lon, depth, unit Task: Get value from dew_point where a corresponding entry exists in uv_index with the same depth. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "value", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065738
train
v2
Sensor network script: Node: pressure | code: prt | fields: ts, qc, depth, value Sensor: turbidity | fields: lat, ts, unit, qc Task: Fetch level from pressure that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065739
train
v3
Sensor network script: Node: uv_index | code: hub | fields: unit, depth, type, reading Sensor: dew_point | fields: depth, qc, type, unit Task: Fetch lat from uv_index where value is greater than the maximum of reading in dew_point for matching ts. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065740
train
v1
Sensor network script: Node: frost | code: gst | fields: value, lon, lat, depth Sensor: lightning | fields: ts, depth, qc, type Task: Retrieve lon from frost whose depth is found in lightning records where unit matches the outer node. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="unit", ), output="lon", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065741
train
v1
Sensor network script: Node: sunlight | code: prt | fields: qc, ts, value, reading Sensor: snow_depth | fields: qc, value, unit, reading Task: Retrieve depth from sunlight whose qc is found in snow_depth records where ts matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065742
train
v3
Sensor network script: Node: temperature | code: ref | fields: value, lat, qc, ts Sensor: uv_index | fields: value, unit, level, reading Task: Fetch reading from temperature where reading is greater than the minimum of depth in uv_index for matching depth. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("uv_index", code="flx"), match="depth"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065743
train
v1
Sensor network script: Node: sunlight | code: hub | fields: level, lon, reading, unit Sensor: visibility | fields: type, reading, qc, value Task: Get level from sunlight where qc appears in visibility readings with matching ts. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="ts", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065744
train
v3
Sensor network script: Node: evaporation | code: ref | fields: value, lat, ts, depth Sensor: cloud_cover | fields: level, lat, value, reading Task: Retrieve value from evaporation with value above the COUNT(depth) of cloud_cover readings sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065745
train
v1
Sensor network script: Node: uv_index | code: prt | fields: value, qc, depth, lat Sensor: wind_speed | fields: reading, depth, lat, type Task: Get value from uv_index where qc appears in wind_speed readings with matching qc. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="qc", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065746
train
v3
Sensor network script: Node: air_quality | code: ref | fields: qc, ts, unit, lat Sensor: uv_index | fields: unit, lon, level, type Task: Fetch lat from air_quality where value is greater than the total of value in uv_index for matching type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065747
train
v3
Sensor network script: Node: pressure | code: ref | fields: lat, lon, depth, reading Sensor: soil_moisture | fields: type, lon, qc, ts Task: Retrieve level from pressure with value above the MAX(value) of soil_moisture readings sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065748
train
v1
Sensor network script: Node: temperature | code: clr | fields: lat, lon, value, reading Sensor: evaporation | fields: value, lon, unit, ts Task: Retrieve depth from temperature whose type is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="unit", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065749
train
v2
Sensor network script: Node: dew_point | code: mst | fields: reading, level, lat, qc Sensor: snow_depth | fields: level, ts, type, depth Task: Get reading from dew_point where a corresponding entry exists in snow_depth with the same qc. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065750
train
v1
Sensor network script: Node: visibility | code: thr | fields: ts, reading, type, value Sensor: turbidity | fields: lon, reading, qc, value Task: Fetch lon from visibility where type exists in turbidity sensor data for the same qc. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="qc", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065751
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: unit, lat, type, lon Sensor: humidity | fields: value, unit, ts, depth Task: Get lat from wind_speed where unit appears in humidity readings with matching type. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065752
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: depth, lat, value, lon Sensor: visibility | fields: lon, qc, level, type Task: Get level from snow_depth where reading exceeds the count of value from visibility for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("visibility", code="clr"), match="unit"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065753
train
v2
Sensor network script: Node: frost | code: stn | fields: unit, reading, depth, level Sensor: visibility | fields: depth, unit, lat, level Task: Retrieve lon from frost that have at least one matching reading in visibility sharing the same depth. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="lon", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065754
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: depth, reading, value, type Sensor: visibility | fields: unit, lat, reading, value Task: Fetch value from snow_depth where unit exists in visibility sensor data for the same type. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="type", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065755
train
v3
Sensor network script: Node: sunlight | code: clr | fields: qc, level, reading, depth Sensor: drought_index | fields: level, qc, reading, ts Task: Get lon from sunlight where reading exceeds the maximum value from drought_index for the same ts. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("drought_index", code="drt"), match="ts"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065756
train
v3
Sensor network script: Node: humidity | code: prt | fields: ts, depth, type, qc Sensor: pressure | fields: level, reading, value, ts Task: Get value from humidity where value exceeds the count of value from pressure for the same ts. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("pressure", code="mbl"), match="ts"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065757
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: type, unit, value, ts Sensor: sunlight | fields: ts, level, depth, reading Task: Fetch lat from wind_speed where depth exists in sunlight sensor data for the same type. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065758
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: reading, depth, value, qc Sensor: cloud_cover | fields: qc, depth, level, type Task: Retrieve value from snow_depth that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "value", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065759
train
v1
Sensor network script: Node: evaporation | code: mst | fields: level, lat, qc, value Sensor: cloud_cover | fields: lon, depth, unit, type Task: Retrieve depth from evaporation whose depth is found in cloud_cover records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065760
train
v2
Sensor network script: Node: rainfall | code: ref | fields: depth, ts, reading, value Sensor: turbidity | fields: value, level, reading, lon Task: Retrieve lat from rainfall that have at least one matching reading in turbidity sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lat", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065761
train
v3
Sensor network script: Node: lightning | code: prt | fields: depth, reading, lat, type Sensor: pressure | fields: ts, lon, depth, value Task: Fetch value from lightning where value is greater than the count of of depth in pressure for matching qc. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("pressure", code="mbl"), match="qc"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065762
train
v3
Sensor network script: Node: drought_index | code: gst | fields: type, depth, value, qc Sensor: evaporation | fields: reading, qc, type, level Task: Retrieve lat from drought_index with depth above the MAX(value) of evaporation readings sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="qc"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065763
train
v3
Sensor network script: Node: lightning | code: stn | fields: depth, lon, type, level Sensor: pressure | fields: lon, ts, level, value Task: Retrieve reading from lightning with value above the MAX(value) of pressure readings sharing the same type. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("pressure", code="mbl"), match="type"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065764
train
v1
Sensor network script: Node: visibility | code: stn | fields: unit, level, type, depth Sensor: frost | fields: depth, lon, lat, type Task: Retrieve lat from visibility whose unit is found in frost records where qc matches the outer node. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="qc", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065765
train
v1
Sensor network script: Node: frost | code: clr | fields: qc, reading, value, unit Sensor: dew_point | fields: unit, lon, level, lat Task: Retrieve reading from frost whose type is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="unit", ), output="reading", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065766
train
v3
Sensor network script: Node: lightning | code: mst | fields: qc, unit, reading, value Sensor: soil_moisture | fields: reading, level, ts, lat Task: Get reading from lightning where value exceeds the total reading from soil_moisture for the same depth. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065767
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: lon, ts, unit, qc Sensor: dew_point | fields: unit, lon, value, lat Task: Retrieve level from cloud_cover with depth above the MIN(value) of dew_point readings sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("dew_point", code="cnd"), match="unit"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065768
train
v3
Sensor network script: Node: rainfall | code: prt | fields: lon, depth, unit, level Sensor: turbidity | fields: depth, reading, value, unit Task: Get value from rainfall where depth exceeds the count of reading from turbidity for the same depth. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("turbidity", code="ftu"), match="depth"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065769
train
v2
Sensor network script: Node: uv_index | code: ref | fields: unit, lat, ts, reading Sensor: evaporation | fields: ts, type, depth, reading Task: Get depth from uv_index where a corresponding entry exists in evaporation with the same type. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065770
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: depth, type, qc, ts Sensor: dew_point | fields: qc, level, reading, unit Task: Retrieve reading from wind_speed whose type is found in dew_point records where type matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="type", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065771
train
v1
Sensor network script: Node: uv_index | code: mst | fields: lat, unit, ts, lon Sensor: humidity | fields: level, ts, qc, depth Task: Fetch lon from uv_index where ts exists in humidity sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065772
train
v1
Sensor network script: Node: turbidity | code: ref | fields: level, ts, value, lat Sensor: cloud_cover | fields: lon, ts, depth, reading Task: Retrieve lat from turbidity whose depth is found in cloud_cover records where ts matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065773
train
v2
Sensor network script: Node: lightning | code: thr | fields: value, ts, unit, qc Sensor: soil_moisture | fields: reading, qc, ts, lat Task: Get lat from lightning where a corresponding entry exists in soil_moisture with the same depth. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065774
train
v3
Sensor network script: Node: uv_index | code: stn | fields: unit, qc, type, lat Sensor: air_quality | fields: lon, qc, type, value Task: Retrieve lat from uv_index with value above the COUNT(value) of air_quality readings sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("air_quality", code="prt"), match="qc"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065775
train
v2
Sensor network script: Node: evaporation | code: ref | fields: unit, value, qc, lat Sensor: dew_point | fields: lon, type, qc, reading Task: Fetch lon from evaporation that have at least one corresponding dew_point measurement for the same unit. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065776
train
v2
Sensor network script: Node: air_quality | code: ref | fields: depth, type, level, unit Sensor: sunlight | fields: lon, ts, level, depth Task: Retrieve level from air_quality that have at least one matching reading in sunlight sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065777
train
v2
Sensor network script: Node: rainfall | code: stn | fields: reading, value, lat, type Sensor: frost | fields: lon, ts, type, reading Task: Fetch value from rainfall that have at least one corresponding frost measurement for the same unit. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "value", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065778
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: ts, lat, qc, reading Sensor: air_quality | fields: type, depth, lon, level Task: Retrieve value from cloud_cover whose type is found in air_quality records where type matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="type", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065779
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: lon, value, qc, unit Sensor: lightning | fields: depth, ts, unit, value Task: Fetch lon from cloud_cover where value is greater than the count of of reading in lightning for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("lightning", code="tnd"), match="unit"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065780
train
v2
Sensor network script: Node: sunlight | code: clr | fields: unit, lon, qc, value Sensor: lightning | fields: ts, qc, type, unit Task: Retrieve reading from sunlight that have at least one matching reading in lightning sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065781
train
v1
Sensor network script: Node: frost | code: ref | fields: reading, level, ts, lat Sensor: rainfall | fields: qc, reading, lat, type Task: Fetch reading from frost where depth exists in rainfall sensor data for the same depth. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="depth", ), output="reading", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065782
train
v3
Sensor network script: Node: visibility | code: gst | fields: lon, level, unit, qc Sensor: frost | fields: depth, value, qc, level Task: Retrieve lon from visibility with value above the AVG(depth) of frost readings sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("frost", code="frs"), match="qc"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065783
train
v3
Sensor network script: Node: evaporation | code: thr | fields: unit, level, lat, value Sensor: turbidity | fields: lat, reading, value, depth Task: Retrieve lat from evaporation with reading above the SUM(value) of turbidity readings sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("turbidity", code="ftu"), match="depth"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065784
train
v1
Sensor network script: Node: turbidity | code: mst | fields: qc, depth, reading, unit Sensor: temperature | fields: lat, depth, lon, type Task: Get lon from turbidity where ts appears in temperature readings with matching type. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="type", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065785
train
v3
Sensor network script: Node: sunlight | code: ref | fields: lat, lon, depth, value Sensor: drought_index | fields: level, depth, lon, lat Task: Retrieve lon from sunlight with value above the COUNT(reading) of drought_index readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("drought_index", code="drt"), match="depth"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065786
train
v2
Sensor network script: Node: lightning | code: stn | fields: type, ts, qc, depth Sensor: drought_index | fields: reading, depth, lon, level Task: Fetch lat from lightning that have at least one corresponding drought_index measurement for the same depth. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065787
train
v2
Sensor network script: Node: drought_index | code: stn | fields: lon, unit, level, qc Sensor: visibility | fields: unit, lon, depth, qc Task: Fetch value from drought_index that have at least one corresponding visibility measurement for the same qc. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "value", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065788
train
v3
Sensor network script: Node: drought_index | code: mst | fields: unit, type, level, reading Sensor: wind_speed | fields: reading, ts, type, lon Task: Get depth from drought_index where depth exceeds the minimum depth from wind_speed for the same ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065789
train
v2
Sensor network script: Node: uv_index | code: mst | fields: reading, ts, lon, level Sensor: drought_index | fields: value, type, lat, reading Task: Retrieve depth from uv_index that have at least one matching reading in drought_index sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065790
train
v1
Sensor network script: Node: pressure | code: ref | fields: level, lon, value, qc Sensor: snow_depth | fields: reading, type, value, qc Task: Retrieve level from pressure whose qc is found in snow_depth records where qc matches the outer node. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="qc", ), output="level", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065791
train
v3
Sensor network script: Node: evaporation | code: hub | fields: lat, ts, qc, value Sensor: wind_speed | fields: level, qc, value, lat Task: Get lat from evaporation where depth exceeds the total value from wind_speed for the same unit. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("wind_speed", code="gst"), match="unit"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065792
train
v3
Sensor network script: Node: rainfall | code: stn | fields: value, depth, reading, level Sensor: lightning | fields: type, reading, lon, value Task: Fetch level from rainfall where value is greater than the minimum of reading in lightning for matching type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="type"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065793
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: reading, qc, depth, ts Sensor: dew_point | fields: qc, depth, lat, level Task: Retrieve value from wind_speed that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "value", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065794
train
v3
Sensor network script: Node: frost | code: prt | fields: ts, lat, lon, unit Sensor: lightning | fields: qc, ts, unit, type Task: Retrieve value from frost with depth above the MAX(depth) of lightning readings sharing the same unit. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("lightning", code="tnd"), match="unit"), ), output="value", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065795
train
v2
Sensor network script: Node: drought_index | code: ref | fields: qc, reading, type, depth Sensor: sunlight | fields: type, ts, value, unit Task: Fetch lon from drought_index that have at least one corresponding sunlight measurement for the same type. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lon", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065796
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: depth, type, lat, qc Sensor: pressure | fields: unit, level, ts, lat Task: Retrieve lat from cloud_cover whose type is found in pressure records where type matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065797
train
v2
Sensor network script: Node: visibility | code: hub | fields: reading, ts, depth, qc Sensor: humidity | fields: ts, qc, depth, lat Task: Retrieve reading from visibility that have at least one matching reading in humidity sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "reading", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065798
train
v3
Sensor network script: Node: visibility | code: ref | fields: lat, lon, type, value Sensor: temperature | fields: type, ts, lat, value Task: Retrieve level from visibility with value above the SUM(value) of temperature readings sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="unit"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065799
train