variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v3
Sensor network script: Node: wind_speed | code: thr | fields: unit, ts, value, level Sensor: humidity | fields: ts, value, reading, level Task: Get lat from wind_speed where depth exceeds the count of depth from humidity for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069800
train
v3
Sensor network script: Node: sunlight | code: stn | fields: value, reading, lat, level Sensor: snow_depth | fields: reading, depth, unit, value Task: Get reading from sunlight where depth exceeds the maximum value from snow_depth for the same ts. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069801
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: qc, level, lat, reading Sensor: humidity | fields: type, ts, value, unit Task: Fetch depth from cloud_cover where value is greater than the maximum of value in humidity for matching type. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("humidity", code="hgr"), match="type"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069802
train
v1
Sensor network script: Node: visibility | code: clr | fields: reading, lon, level, type Sensor: air_quality | fields: ts, reading, depth, type Task: Get lon from visibility where qc appears in air_quality readings with matching ts. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="ts", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069803
train
v3
Sensor network script: Node: frost | code: hub | fields: type, unit, lon, depth Sensor: pressure | fields: ts, qc, value, type Task: Retrieve level from frost with reading above the AVG(depth) of pressure readings sharing the same qc. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("pressure", code="mbl"), match="qc"), ), output="level", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069804
train
v3
Sensor network script: Node: temperature | code: ref | fields: ts, qc, lat, type Sensor: turbidity | fields: ts, value, type, lon Task: Get reading from temperature where reading exceeds the maximum reading from turbidity for the same type. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("turbidity", code="ftu"), match="type"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069805
train
v1
Sensor network script: Node: air_quality | code: clr | fields: qc, depth, value, ts Sensor: humidity | fields: unit, ts, depth, lon Task: Fetch depth from air_quality where ts exists in humidity sensor data for the same unit. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069806
train
v2
Sensor network script: Node: temperature | code: gst | fields: reading, level, depth, unit Sensor: turbidity | fields: level, depth, lat, lon Task: Fetch value from temperature that have at least one corresponding turbidity measurement for the same depth. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="value", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "value", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069807
train
v3
Sensor network script: Node: evaporation | code: clr | fields: type, value, level, lon Sensor: air_quality | fields: lat, unit, lon, level Task: Fetch reading from evaporation where depth is greater than the maximum of depth in air_quality for matching ts. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="ts"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069808
train
v1
Sensor network script: Node: pressure | code: mst | fields: qc, depth, type, lon Sensor: soil_moisture | fields: reading, unit, qc, value Task: Retrieve reading from pressure whose ts is found in soil_moisture records where ts matches the outer node. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069809
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: lat, type, level, depth Sensor: wind_speed | fields: lon, depth, unit, reading Task: Retrieve lat from soil_moisture whose depth is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="qc", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069810
train
v2
Sensor network script: Node: drought_index | code: clr | fields: lon, level, unit, type Sensor: evaporation | fields: ts, lon, type, value Task: Fetch reading from drought_index that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "reading", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069811
train
v1
Sensor network script: Node: dew_point | code: clr | fields: lon, level, lat, depth Sensor: uv_index | fields: depth, unit, qc, lon Task: Fetch level from dew_point where depth exists in uv_index sensor data for the same ts. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="ts", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069812
train
v3
Sensor network script: Node: frost | code: stn | fields: reading, lat, qc, value Sensor: rainfall | fields: depth, lon, unit, qc Task: Fetch lon from frost where value is greater than the total of reading in rainfall for matching qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069813
train
v3
Sensor network script: Node: humidity | code: prt | fields: unit, type, value, qc Sensor: drought_index | fields: reading, qc, level, ts Task: Fetch depth from humidity where reading is greater than the total of depth in drought_index for matching qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069814
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: level, qc, type, lat Sensor: uv_index | fields: type, reading, lat, qc Task: Retrieve value from soil_moisture whose depth is found in uv_index records where unit matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="unit", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069815
train
v1
Sensor network script: Node: sunlight | code: thr | fields: depth, level, lon, qc Sensor: frost | fields: depth, level, unit, ts Task: Fetch reading from sunlight where qc exists in frost sensor data for the same depth. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="depth", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "reading", "filter_col": "qc", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069816
train
v2
Sensor network script: Node: rainfall | code: clr | fields: lat, level, depth, qc Sensor: wind_speed | fields: depth, lat, reading, ts Task: Get lon from rainfall where a corresponding entry exists in wind_speed with the same depth. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069817
train
v3
Sensor network script: Node: pressure | code: hub | fields: level, depth, type, lon Sensor: cloud_cover | fields: level, qc, type, lat Task: Get lat from pressure where reading exceeds the total value from cloud_cover for the same qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069818
train
v1
Sensor network script: Node: humidity | code: gst | fields: reading, lat, value, depth Sensor: turbidity | fields: type, level, ts, lon Task: Retrieve reading from humidity whose qc is found in turbidity records where depth matches the outer node. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="depth", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069819
train
v3
Sensor network script: Node: pressure | code: gst | fields: type, ts, qc, unit Sensor: evaporation | fields: level, lat, depth, qc Task: Get value from pressure where value exceeds the average reading from evaporation for the same qc. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("evaporation", code="evp"), match="qc"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069820
train
v2
Sensor network script: Node: drought_index | code: prt | fields: lat, ts, depth, level Sensor: pressure | fields: value, qc, reading, lat Task: Get reading from drought_index where a corresponding entry exists in pressure with the same qc. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069821
train
v1
Sensor network script: Node: evaporation | code: clr | fields: qc, reading, value, ts Sensor: wind_speed | fields: ts, lon, reading, value Task: Get depth from evaporation where unit appears in wind_speed readings with matching type. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="type", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069822
train
v3
Sensor network script: Node: sunlight | code: clr | fields: level, reading, lon, value Sensor: temperature | fields: lon, level, ts, type Task: Fetch lon from sunlight where depth is greater than the average of depth in temperature for matching qc. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="qc"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069823
train
v2
Sensor network script: Node: dew_point | code: ref | fields: qc, value, reading, type Sensor: wind_speed | fields: type, depth, qc, unit Task: Get reading from dew_point where a corresponding entry exists in wind_speed with the same type. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "reading", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069824
train
v3
Sensor network script: Node: dew_point | code: thr | fields: qc, depth, reading, type Sensor: pressure | fields: depth, type, level, lon Task: Get reading from dew_point where value exceeds the total depth from pressure for the same depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("pressure", code="mbl"), match="depth"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069825
train
v3
Sensor network script: Node: visibility | code: hub | fields: lat, depth, level, reading Sensor: rainfall | fields: qc, type, reading, value Task: Retrieve reading from visibility with value above the AVG(depth) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069826
train
v2
Sensor network script: Node: humidity | code: thr | fields: level, ts, qc, unit Sensor: pressure | fields: lat, ts, qc, reading Task: Get lat from humidity where a corresponding entry exists in pressure with the same type. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069827
train
v2
Sensor network script: Node: frost | code: clr | fields: unit, lat, type, value Sensor: air_quality | fields: value, lat, qc, ts Task: Fetch value from frost that have at least one corresponding air_quality measurement for the same type. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="value", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069828
train
v3
Sensor network script: Node: air_quality | code: thr | fields: level, ts, unit, lat Sensor: lightning | fields: lon, qc, lat, unit Task: Get lat from air_quality where value exceeds the maximum reading from lightning for the same ts. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069829
train
v1
Sensor network script: Node: turbidity | code: prt | fields: depth, lon, value, reading Sensor: wind_speed | fields: type, value, qc, lat Task: Get reading from turbidity where ts appears in wind_speed readings with matching ts. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="ts", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069830
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: reading, type, depth, ts Sensor: uv_index | fields: reading, type, level, value Task: Get reading from cloud_cover where depth exceeds the average depth from uv_index for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("uv_index", code="flx"), match="unit"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069831
train
v2
Sensor network script: Node: dew_point | code: mst | fields: unit, lon, level, reading Sensor: wind_speed | fields: depth, ts, level, reading Task: Get value from dew_point where a corresponding entry exists in wind_speed with the same ts. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069832
train
v1
Sensor network script: Node: frost | code: thr | fields: level, ts, qc, type Sensor: pressure | fields: reading, unit, value, lon Task: Fetch depth from frost where unit exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="qc", ), output="depth", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069833
train
v3
Sensor network script: Node: turbidity | code: gst | fields: lon, type, level, qc Sensor: snow_depth | fields: type, lon, depth, lat Task: Retrieve reading from turbidity with depth above the AVG(depth) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069834
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: reading, lat, value, lon Sensor: pressure | fields: type, value, qc, reading Task: Get lat from soil_moisture where a corresponding entry exists in pressure with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069835
train
v3
Sensor network script: Node: drought_index | code: stn | fields: reading, ts, value, level Sensor: evaporation | fields: ts, unit, depth, level Task: Retrieve level from drought_index with depth above the MIN(reading) of evaporation readings sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("evaporation", code="evp"), match="type"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069836
train
v2
Sensor network script: Node: uv_index | code: gst | fields: qc, reading, type, value Sensor: snow_depth | fields: lat, lon, qc, level Task: Retrieve lon from uv_index that have at least one matching reading in snow_depth sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lon", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069837
train
v1
Sensor network script: Node: sunlight | code: thr | fields: level, unit, value, ts Sensor: cloud_cover | fields: lon, type, reading, level Task: Get reading from sunlight where depth appears in cloud_cover readings with matching qc. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069838
train
v3
Sensor network script: Node: lightning | code: mst | fields: lon, depth, value, qc Sensor: air_quality | fields: level, value, reading, depth Task: Get value from lightning where depth exceeds the count of depth from air_quality for the same ts. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="ts"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069839
train
v3
Sensor network script: Node: dew_point | code: thr | fields: type, unit, value, level Sensor: snow_depth | fields: level, depth, unit, ts Task: Get level from dew_point where reading exceeds the count of depth from snow_depth for the same depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="depth"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069840
train
v3
Sensor network script: Node: sunlight | code: mst | fields: depth, ts, type, lat Sensor: temperature | fields: depth, value, qc, ts Task: Get depth from sunlight where depth exceeds the average depth from temperature for the same qc. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="qc"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069841
train
v2
Sensor network script: Node: evaporation | code: mst | fields: value, qc, lon, lat Sensor: drought_index | fields: type, unit, ts, qc Task: Get value from evaporation where a corresponding entry exists in drought_index with the same unit. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069842
train
v1
Sensor network script: Node: humidity | code: thr | fields: ts, lon, value, level Sensor: air_quality | fields: ts, unit, value, lat Task: Retrieve lon from humidity whose type is found in air_quality records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="ts", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069843
train
v2
Sensor network script: Node: pressure | code: hub | fields: unit, lon, reading, qc Sensor: evaporation | fields: reading, depth, ts, type Task: Retrieve value from pressure that have at least one matching reading in evaporation sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="value", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "value", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069844
train
v1
Sensor network script: Node: humidity | code: stn | fields: value, lon, level, unit Sensor: frost | fields: reading, level, ts, unit Task: Fetch reading from humidity where qc exists in frost sensor data for the same type. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="type", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069845
train
v1
Sensor network script: Node: temperature | code: prt | fields: lat, level, value, reading Sensor: dew_point | fields: reading, qc, depth, lat Task: Retrieve level from temperature whose unit is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="qc", ), output="level", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069846
train
v3
Sensor network script: Node: humidity | code: mst | fields: depth, lat, ts, level Sensor: dew_point | fields: unit, level, reading, qc Task: Fetch lat from humidity where reading is greater than the total of reading in dew_point for matching type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="type"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069847
train
v1
Sensor network script: Node: drought_index | code: prt | fields: qc, reading, level, value Sensor: pressure | fields: level, lat, unit, value Task: Get lon from drought_index where ts appears in pressure readings with matching qc. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="qc", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069848
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: ts, value, lon, unit Sensor: humidity | fields: level, unit, type, reading Task: Get level from soil_moisture where a corresponding entry exists in humidity with the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "level", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069849
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: lat, value, lon, depth Sensor: frost | fields: ts, unit, lon, lat Task: Get lon from wind_speed where a corresponding entry exists in frost with the same unit. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lon", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069850
train
v3
Sensor network script: Node: turbidity | code: mst | fields: lon, value, unit, qc Sensor: visibility | fields: ts, lat, type, depth Task: Get reading from turbidity where reading exceeds the minimum depth from visibility for the same unit. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("visibility", code="clr"), match="unit"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069851
train
v1
Sensor network script: Node: air_quality | code: hub | fields: unit, qc, reading, value Sensor: turbidity | fields: unit, qc, reading, ts Task: Fetch value from air_quality where ts exists in turbidity sensor data for the same type. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="type", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069852
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: lat, depth, unit, reading Sensor: sunlight | fields: depth, lat, reading, unit Task: Get lat from soil_moisture where depth exceeds the maximum reading from sunlight for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("sunlight", code="brt"), match="unit"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069853
train
v2
Sensor network script: Node: dew_point | code: ref | fields: depth, ts, qc, reading Sensor: humidity | fields: reading, type, ts, lon Task: Retrieve lon from dew_point that have at least one matching reading in humidity sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069854
train
v1
Sensor network script: Node: frost | code: mst | fields: qc, depth, lat, ts Sensor: dew_point | fields: lon, ts, type, level Task: Fetch depth from frost where ts exists in dew_point sensor data for the same type. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="type", ), output="depth", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069855
train
v2
Sensor network script: Node: turbidity | code: ref | fields: ts, unit, lat, level Sensor: uv_index | fields: ts, level, lon, reading Task: Get lat from turbidity where a corresponding entry exists in uv_index with the same type. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069856
train
v3
Sensor network script: Node: frost | code: gst | fields: unit, lat, qc, level Sensor: uv_index | fields: level, qc, unit, value Task: Fetch reading from frost where reading is greater than the maximum of value in uv_index for matching 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_069857
train
v3
Sensor network script: Node: visibility | code: clr | fields: reading, value, qc, depth Sensor: uv_index | fields: type, qc, unit, lat Task: Fetch lat from visibility where depth is greater than the maximum of reading in uv_index for matching unit. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069858
train
v3
Sensor network script: Node: frost | code: clr | fields: value, level, depth, lat Sensor: pressure | fields: reading, ts, level, depth Task: Fetch reading from frost where value is greater than the count of of reading in pressure for matching unit. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("pressure", code="mbl"), match="unit"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069859
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: ts, level, depth, lon Sensor: air_quality | fields: level, depth, reading, lon Task: Get reading from soil_moisture where a corresponding entry exists in air_quality with the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069860
train
v2
Sensor network script: Node: humidity | code: ref | fields: ts, value, unit, lon Sensor: uv_index | fields: qc, ts, depth, lat Task: Get lon from humidity where a corresponding entry exists in uv_index with the same qc. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069861
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: level, lat, lon, value Sensor: air_quality | fields: type, reading, lat, unit Task: Get reading from soil_moisture where value exceeds the total depth from air_quality for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("air_quality", code="prt"), match="unit"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069862
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: unit, lon, qc, value Sensor: lightning | fields: depth, qc, value, reading Task: Retrieve value from cloud_cover with depth above the AVG(depth) of lightning readings sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("lightning", code="tnd"), match="depth"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069863
train
v2
Sensor network script: Node: air_quality | code: ref | fields: lat, value, unit, type Sensor: wind_speed | fields: level, lon, ts, unit Task: Retrieve depth from air_quality that have at least one matching reading in wind_speed sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069864
train
v1
Sensor network script: Node: humidity | code: clr | fields: ts, qc, type, depth Sensor: evaporation | fields: lon, unit, type, level Task: Fetch lon from humidity where depth exists in evaporation sensor data for the same qc. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="qc", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069865
train
v1
Sensor network script: Node: rainfall | code: stn | fields: reading, lat, value, ts Sensor: wind_speed | fields: lat, unit, value, qc Task: Get reading from rainfall where type appears in wind_speed readings with matching depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="depth", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "reading", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069866
train
v2
Sensor network script: Node: temperature | code: prt | fields: value, qc, type, level Sensor: drought_index | fields: type, level, lat, value Task: Get level from temperature where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="level", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069867
train
v1
Sensor network script: Node: evaporation | code: gst | fields: unit, reading, qc, depth Sensor: humidity | fields: unit, depth, lon, ts Task: Retrieve reading from evaporation whose type is found in humidity records where type matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="type", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069868
train
v3
Sensor network script: Node: air_quality | code: gst | fields: type, qc, depth, unit Sensor: snow_depth | fields: type, level, reading, lat Task: Retrieve level from air_quality with value above the SUM(depth) of snow_depth readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("snow_depth", code="snw"), match="qc"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069869
train
v3
Sensor network script: Node: dew_point | code: mst | fields: ts, depth, lat, value Sensor: turbidity | fields: qc, level, lat, lon Task: Retrieve lon from dew_point with reading above the COUNT(value) of turbidity readings sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("turbidity", code="ftu"), match="qc"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069870
train
v3
Sensor network script: Node: rainfall | code: mst | fields: lon, level, lat, qc Sensor: visibility | fields: value, level, lat, ts Task: Get reading from rainfall where value exceeds the average value from visibility for the same unit. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="unit"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069871
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: value, type, lat, depth Sensor: evaporation | fields: depth, lat, ts, qc Task: Retrieve reading from soil_moisture whose qc is found in evaporation records where type matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069872
train
v3
Sensor network script: Node: evaporation | code: mst | fields: qc, level, reading, value Sensor: soil_moisture | fields: lon, ts, value, qc Task: Fetch lon from evaporation where value is greater than the maximum of depth in soil_moisture for matching type. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069873
train
v2
Sensor network script: Node: pressure | code: hub | fields: lat, depth, type, unit Sensor: cloud_cover | fields: lon, type, lat, ts Task: Fetch lat from pressure that have at least one corresponding cloud_cover measurement for the same unit. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069874
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: level, qc, reading, ts Sensor: wind_speed | fields: lat, unit, lon, ts Task: Get value from cloud_cover where reading exceeds the count of value from wind_speed for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("wind_speed", code="gst"), match="ts"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069875
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: lon, lat, value, type Sensor: visibility | fields: lon, level, depth, lat Task: Get lat from soil_moisture where ts appears in visibility readings with matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="unit", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069876
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: level, lon, lat, depth Sensor: frost | fields: ts, value, level, depth Task: Fetch level from soil_moisture that have at least one corresponding frost measurement for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069877
train
v3
Sensor network script: Node: rainfall | code: stn | fields: type, qc, unit, lon Sensor: evaporation | fields: qc, lat, depth, unit Task: Fetch lon from rainfall where reading is greater than the average of reading in evaporation for matching depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("evaporation", code="evp"), match="depth"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069878
train
v3
Sensor network script: Node: dew_point | code: thr | fields: reading, qc, depth, lon Sensor: frost | fields: lat, lon, level, type Task: Retrieve depth from dew_point with depth above the MIN(value) of frost readings sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("frost", code="frs"), match="qc"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069879
train
v2
Sensor network script: Node: drought_index | code: clr | fields: lat, type, ts, unit Sensor: cloud_cover | fields: type, ts, qc, level Task: Retrieve depth from drought_index that have at least one matching reading in cloud_cover sharing the same depth. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069880
train
v2
Sensor network script: Node: evaporation | code: ref | fields: unit, lat, ts, qc Sensor: rainfall | fields: lon, depth, type, value Task: Retrieve lat from evaporation that have at least one matching reading in rainfall sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069881
train
v2
Sensor network script: Node: evaporation | code: hub | fields: lat, level, value, type Sensor: humidity | fields: ts, type, reading, depth Task: Retrieve value from evaporation that have at least one matching reading in humidity sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "value", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069882
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: type, value, qc, lat Sensor: snow_depth | fields: level, unit, type, depth Task: Get lat from cloud_cover where depth exceeds the count of depth from snow_depth for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069883
train
v3
Sensor network script: Node: visibility | code: hub | fields: lat, type, reading, qc Sensor: air_quality | fields: reading, unit, level, lat Task: Get lon from visibility where reading exceeds the count of reading from air_quality for the same type. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("air_quality", code="prt"), match="type"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069884
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: value, type, lat, level Sensor: drought_index | fields: type, qc, depth, unit Task: Get lon from cloud_cover where ts appears in drought_index readings with matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="depth", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069885
train
v2
Sensor network script: Node: air_quality | code: hub | fields: depth, lat, level, unit Sensor: uv_index | fields: unit, type, ts, depth Task: Fetch level from air_quality that have at least one corresponding uv_index measurement for the same type. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "level", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069886
train
v3
Sensor network script: Node: drought_index | code: gst | fields: level, value, unit, qc Sensor: turbidity | fields: lat, reading, unit, depth Task: Retrieve lon from drought_index with value above the MAX(reading) of turbidity readings sharing the same depth. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("turbidity", code="ftu"), match="depth"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069887
train
v3
Sensor network script: Node: lightning | code: mst | fields: lon, type, level, reading Sensor: cloud_cover | fields: ts, lat, reading, type Task: Get lon from lightning where value exceeds the total value from cloud_cover for the same unit. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069888
train
v1
Sensor network script: Node: rainfall | code: gst | fields: depth, lon, unit, type Sensor: visibility | fields: ts, unit, qc, value Task: Retrieve reading from rainfall whose unit is found in visibility records where unit matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069889
train
v1
Sensor network script: Node: dew_point | code: thr | fields: lat, unit, level, qc Sensor: pressure | fields: qc, value, reading, unit Task: Get lon from dew_point where type appears in pressure readings with matching qc. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="qc", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069890
train
v1
Sensor network script: Node: frost | code: ref | fields: depth, type, lat, unit Sensor: drought_index | fields: ts, reading, value, depth Task: Retrieve depth from frost whose ts is found in drought_index records where type matches the outer node. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="type", ), output="depth", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069891
train
v1
Sensor network script: Node: humidity | code: hub | fields: depth, reading, ts, unit Sensor: lightning | fields: type, unit, lon, level Task: Fetch lat from humidity where depth exists in lightning sensor data for the same unit. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="unit", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069892
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: unit, lon, ts, lat Sensor: wind_speed | fields: level, reading, lat, lon Task: Retrieve reading from soil_moisture whose ts is found in wind_speed records where type matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069893
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: unit, ts, depth, type Sensor: temperature | fields: unit, level, depth, lat Task: Fetch depth from snow_depth where depth is greater than the count of of value in temperature for matching unit. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("temperature", code="thr"), match="unit"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069894
train
v2
Sensor network script: Node: air_quality | code: mst | fields: reading, lon, level, qc Sensor: frost | fields: depth, reading, qc, unit Task: Retrieve reading from air_quality that have at least one matching reading in frost sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "reading", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069895
train
v2
Sensor network script: Node: uv_index | code: hub | fields: lat, value, lon, ts Sensor: drought_index | fields: type, reading, ts, value Task: Get value from uv_index where a corresponding entry exists in drought_index with the same type. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069896
train
v2
Sensor network script: Node: drought_index | code: hub | fields: lon, level, reading, type Sensor: turbidity | fields: reading, depth, unit, lon Task: Get depth from drought_index where a corresponding entry exists in turbidity with the same type. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069897
train
v3
Sensor network script: Node: sunlight | code: prt | fields: depth, value, lat, lon Sensor: rainfall | fields: lat, lon, depth, type Task: Retrieve depth from sunlight with value above the SUM(depth) of rainfall readings sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("rainfall", code="rnfl"), match="type"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069898
train
v2
Sensor network script: Node: temperature | code: ref | fields: qc, unit, type, lon Sensor: frost | fields: lat, unit, lon, level Task: Get level from temperature where a corresponding entry exists in frost with the same unit. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="level", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "level", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069899
train