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: dew_point | code: thr | fields: value, lat, qc, unit Sensor: soil_moisture | fields: lat, level, ts, reading Task: Get lon from dew_point where value exceeds the minimum value from soil_moisture for the same qc. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080500
train
v3
Sensor network script: Node: rainfall | code: stn | fields: value, unit, level, lat Sensor: humidity | fields: lon, type, reading, qc Task: Retrieve reading from rainfall with depth above the AVG(value) of humidity readings sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("humidity", code="hgr"), match="depth"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080501
train
v2
Sensor network script: Node: air_quality | code: gst | fields: depth, lat, lon, unit Sensor: sunlight | fields: depth, value, ts, reading Task: Get lon from air_quality where a corresponding entry exists in sunlight with the same type. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lon", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080502
train
v1
Sensor network script: Node: visibility | code: gst | fields: level, qc, depth, type Sensor: temperature | fields: lon, type, ts, depth Task: Get depth from visibility where qc appears in temperature readings with matching depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080503
train
v2
Sensor network script: Node: lightning | code: mst | fields: qc, unit, value, lon Sensor: frost | fields: reading, depth, lon, value Task: Get depth from lightning where a corresponding entry exists in frost with the same qc. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080504
train
v2
Sensor network script: Node: pressure | code: gst | fields: unit, level, ts, value Sensor: cloud_cover | fields: reading, qc, type, level Task: Fetch lon from pressure that have at least one corresponding cloud_cover measurement for the same type. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lon", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080505
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: value, qc, lon, reading Sensor: air_quality | fields: reading, level, ts, lon Task: Retrieve depth from soil_moisture that have at least one matching reading in air_quality sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080506
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: reading, value, level, depth Sensor: rainfall | fields: unit, lat, lon, qc Task: Get lon from snow_depth where reading exceeds the maximum depth from rainfall for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080507
train
v3
Sensor network script: Node: temperature | code: clr | fields: lon, reading, level, ts Sensor: pressure | fields: value, lon, depth, qc Task: Fetch lon from temperature where value is greater than the maximum of depth in pressure for matching type. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("pressure", code="mbl"), match="type"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080508
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: value, qc, depth, lat Sensor: cloud_cover | fields: qc, depth, ts, unit Task: Get depth from wind_speed where depth exceeds the count of value from cloud_cover for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080509
train
v2
Sensor network script: Node: frost | code: ref | fields: ts, qc, reading, unit Sensor: soil_moisture | fields: unit, reading, value, lon Task: Fetch level from frost that have at least one corresponding soil_moisture measurement for the same depth. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="level", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080510
train
v1
Sensor network script: Node: uv_index | code: hub | fields: unit, qc, lat, ts Sensor: air_quality | fields: ts, value, qc, lat Task: Retrieve reading from uv_index whose depth is found in air_quality records where unit matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="unit", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080511
train
v1
Sensor network script: Node: air_quality | code: hub | fields: level, ts, qc, value Sensor: cloud_cover | fields: type, reading, value, ts Task: Get lat from air_quality where ts appears in cloud_cover readings with matching depth. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080512
train
v3
Sensor network script: Node: lightning | code: thr | fields: lat, ts, level, unit Sensor: visibility | fields: unit, type, lat, level Task: Retrieve depth from lightning with reading above the AVG(value) of visibility readings sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="depth"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080513
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: depth, ts, reading, value Sensor: snow_depth | fields: qc, lon, type, unit Task: Get depth from cloud_cover where reading exceeds the average reading from snow_depth for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("snow_depth", code="snw"), match="ts"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080514
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: lon, level, qc, type Sensor: air_quality | fields: ts, lon, depth, lat Task: Retrieve lon from snow_depth with reading above the SUM(reading) of air_quality readings sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("air_quality", code="prt"), match="qc"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080515
train
v3
Sensor network script: Node: temperature | code: prt | fields: lon, qc, unit, reading Sensor: lightning | fields: type, lon, ts, unit Task: Get level from temperature where depth exceeds the maximum value from lightning for the same unit. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("lightning", code="tnd"), match="unit"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080516
train
v1
Sensor network script: Node: sunlight | code: prt | fields: depth, ts, reading, value Sensor: soil_moisture | fields: lat, ts, reading, type Task: Fetch depth from sunlight where unit exists in soil_moisture sensor data for the same unit. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080517
train
v1
Sensor network script: Node: uv_index | code: prt | fields: ts, qc, lon, lat Sensor: turbidity | fields: depth, lat, type, reading Task: Get value from uv_index where depth appears in turbidity readings with matching qc. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="qc", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080518
train
v3
Sensor network script: Node: humidity | code: stn | fields: type, value, lat, ts Sensor: pressure | fields: value, level, lon, unit Task: Fetch depth from humidity where depth is greater than the minimum of value in pressure for matching ts. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("pressure", code="mbl"), match="ts"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080519
train
v3
Sensor network script: Node: sunlight | code: mst | fields: lon, depth, value, qc Sensor: drought_index | fields: value, reading, depth, level Task: Retrieve lat from sunlight with value above the AVG(depth) of drought_index readings sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("drought_index", code="drt"), match="ts"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080520
train
v1
Sensor network script: Node: evaporation | code: thr | fields: type, ts, reading, lat Sensor: humidity | fields: lon, depth, unit, type Task: Retrieve reading from evaporation whose qc is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080521
train
v2
Sensor network script: Node: visibility | code: ref | fields: type, value, qc, level Sensor: turbidity | fields: level, depth, ts, qc Task: Fetch level from visibility that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "level", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080522
train
v3
Sensor network script: Node: temperature | code: gst | fields: reading, unit, type, qc Sensor: lightning | fields: ts, value, lat, qc Task: Retrieve lat from temperature with value above the AVG(depth) of lightning readings sharing the same type. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("lightning", code="tnd"), match="type"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080523
train
v3
Sensor network script: Node: dew_point | code: gst | fields: depth, lat, value, ts Sensor: evaporation | fields: lon, reading, lat, ts Task: Retrieve lon from dew_point with depth above the MAX(reading) of evaporation readings sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("evaporation", code="evp"), match="unit"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080524
train
v1
Sensor network script: Node: frost | code: gst | fields: depth, type, level, qc Sensor: drought_index | fields: ts, reading, qc, depth Task: Get depth from frost where unit appears in drought_index readings with matching qc. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="qc", ), output="depth", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080525
train
v1
Sensor network script: Node: humidity | code: prt | fields: unit, lon, reading, lat Sensor: temperature | fields: depth, qc, type, ts Task: Get depth from humidity where qc appears in temperature readings with matching qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="qc", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080526
train
v3
Sensor network script: Node: evaporation | code: ref | fields: lat, reading, type, unit Sensor: rainfall | fields: qc, lon, ts, depth Task: Retrieve lon from evaporation with reading above the SUM(depth) of rainfall readings sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080527
train
v2
Sensor network script: Node: dew_point | code: prt | fields: ts, qc, value, lon Sensor: turbidity | fields: type, lat, depth, level Task: Retrieve value from dew_point that have at least one matching reading in turbidity sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080528
train
v1
Sensor network script: Node: drought_index | code: thr | fields: lon, level, type, qc Sensor: pressure | fields: ts, value, type, lon Task: Get lat from drought_index where depth appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="ts", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080529
train
v2
Sensor network script: Node: drought_index | code: thr | fields: qc, type, lon, unit Sensor: pressure | fields: ts, lat, qc, type Task: Get level from drought_index where a corresponding entry exists in pressure with the same unit. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080530
train
v2
Sensor network script: Node: visibility | code: ref | fields: lon, unit, ts, value Sensor: evaporation | fields: unit, depth, type, reading Task: Fetch lat from visibility that have at least one corresponding evaporation measurement for the same type. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lat", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080531
train
v3
Sensor network script: Node: lightning | code: mst | fields: value, unit, qc, reading Sensor: rainfall | fields: qc, depth, reading, type Task: Get depth from lightning where reading exceeds the count of value from rainfall for the same unit. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080532
train
v2
Sensor network script: Node: air_quality | code: stn | fields: lon, unit, level, type Sensor: drought_index | fields: level, depth, ts, qc Task: Retrieve depth from air_quality that have at least one matching reading in drought_index sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080533
train
v1
Sensor network script: Node: sunlight | code: ref | fields: lon, qc, lat, reading Sensor: soil_moisture | fields: lon, value, qc, unit Task: Fetch level from sunlight where ts exists in soil_moisture sensor data for the same unit. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080534
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: ts, level, reading, lon Sensor: cloud_cover | fields: lon, ts, reading, type Task: Fetch level from wind_speed where depth is greater than the maximum of reading in cloud_cover for matching depth. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080535
train
v1
Sensor network script: Node: frost | code: gst | fields: reading, ts, value, lat Sensor: turbidity | fields: qc, lon, unit, ts Task: Fetch lon from frost where unit exists in turbidity sensor data for the same qc. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="qc", ), output="lon", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080536
train
v3
Sensor network script: Node: sunlight | code: prt | fields: ts, lat, lon, reading Sensor: lightning | fields: qc, lon, lat, level Task: Fetch level from sunlight where reading is greater than the maximum of value in lightning for matching qc. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("lightning", code="tnd"), match="qc"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080537
train
v3
Sensor network script: Node: turbidity | code: gst | fields: level, lon, lat, depth Sensor: rainfall | fields: lat, ts, qc, level Task: Retrieve value from turbidity with value above the SUM(depth) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080538
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: lat, type, reading, value Sensor: pressure | fields: lat, ts, qc, unit Task: Fetch value from snow_depth where value is greater than the average of value in pressure for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080539
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: unit, reading, lat, type Sensor: snow_depth | fields: reading, depth, unit, ts Task: Fetch lat from cloud_cover that have at least one corresponding snow_depth measurement for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lat", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080540
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: lat, depth, qc, unit Sensor: frost | fields: reading, ts, type, depth Task: Retrieve lon from soil_moisture whose depth is found in frost records where depth matches the outer node. 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_080541
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: lat, level, value, lon Sensor: turbidity | fields: unit, type, depth, level Task: Retrieve level from wind_speed that have at least one matching reading in turbidity sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080542
train
v3
Sensor network script: Node: drought_index | code: gst | fields: ts, reading, level, unit Sensor: visibility | fields: ts, lat, qc, type Task: Retrieve level from drought_index with depth above the SUM(reading) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="qc"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080543
train
v1
Sensor network script: Node: visibility | code: ref | fields: depth, level, reading, value Sensor: cloud_cover | fields: reading, type, ts, unit Task: Get reading from visibility where ts appears in cloud_cover readings with matching ts. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080544
train
v2
Sensor network script: Node: temperature | code: gst | fields: lat, reading, depth, ts Sensor: turbidity | fields: lon, reading, value, lat Task: Retrieve reading from temperature that have at least one matching reading in turbidity sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080545
train
v2
Sensor network script: Node: lightning | code: mst | fields: unit, type, lat, depth Sensor: cloud_cover | fields: value, reading, qc, depth Task: Get reading from lightning where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "reading", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080546
train
v3
Sensor network script: Node: turbidity | code: ref | fields: value, reading, qc, unit Sensor: air_quality | fields: ts, depth, qc, value Task: Retrieve lat from turbidity with reading above the COUNT(depth) of air_quality readings sharing the same depth. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="depth"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080547
train
v2
Sensor network script: Node: pressure | code: clr | fields: ts, unit, qc, lat Sensor: drought_index | fields: lon, reading, depth, ts Task: Fetch depth from pressure that have at least one corresponding drought_index measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080548
train
v1
Sensor network script: Node: turbidity | code: gst | fields: depth, level, reading, value Sensor: dew_point | fields: qc, level, unit, type Task: Retrieve value from turbidity whose qc is found in dew_point records where ts matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="ts", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080549
train
v2
Sensor network script: Node: dew_point | code: stn | fields: value, lon, level, ts Sensor: evaporation | fields: depth, value, level, reading Task: Fetch lon from dew_point that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lon", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080550
train
v1
Sensor network script: Node: drought_index | code: thr | fields: lat, qc, lon, reading Sensor: air_quality | fields: value, lat, lon, qc Task: Fetch depth from drought_index where qc exists in air_quality sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="depth", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "depth", "filter_col": "qc", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080551
train
v1
Sensor network script: Node: cloud_cover | code: mst | fields: level, reading, qc, value Sensor: evaporation | fields: ts, level, qc, type Task: Fetch level from cloud_cover where ts exists in evaporation sensor data for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="type", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080552
train
v3
Sensor network script: Node: air_quality | code: hub | fields: type, lon, depth, unit Sensor: uv_index | fields: depth, ts, level, unit Task: Retrieve level from air_quality with value above the MIN(reading) of uv_index readings sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("uv_index", code="flx"), match="ts"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080553
train
v1
Sensor network script: Node: sunlight | code: stn | fields: value, ts, lon, type Sensor: visibility | fields: ts, reading, value, type Task: Get reading from sunlight where unit appears in visibility readings with matching depth. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="depth", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080554
train
v3
Sensor network script: Node: air_quality | code: hub | fields: qc, type, reading, unit Sensor: visibility | fields: value, lat, lon, level Task: Retrieve reading from air_quality with depth above the SUM(value) of visibility readings sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080555
train
v2
Sensor network script: Node: dew_point | code: ref | fields: lon, lat, ts, type Sensor: drought_index | fields: lat, ts, reading, unit Task: Retrieve lat from dew_point that have at least one matching reading in drought_index sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080556
train
v1
Sensor network script: Node: lightning | code: mst | fields: lon, ts, lat, depth Sensor: rainfall | fields: ts, type, lat, lon Task: Retrieve level from lightning whose ts is found in rainfall records where depth matches the outer node. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="depth", ), output="level", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080557
train
v2
Sensor network script: Node: pressure | code: hub | fields: type, lon, ts, level Sensor: temperature | fields: lat, depth, lon, type Task: Get lat from pressure where a corresponding entry exists in temperature with the same ts. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080558
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: reading, qc, lon, unit Sensor: wind_speed | fields: lon, level, ts, lat Task: Get lon from cloud_cover where reading exceeds the count of depth from wind_speed for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="depth"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080559
train
v1
Sensor network script: Node: humidity | code: ref | fields: unit, level, reading, type Sensor: cloud_cover | fields: unit, lon, lat, qc Task: Get value from humidity where unit appears in cloud_cover readings with matching unit. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="value", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080560
train
v3
Sensor network script: Node: drought_index | code: stn | fields: reading, value, ts, level Sensor: rainfall | fields: value, ts, lon, depth Task: Get reading from drought_index where value exceeds the average reading from rainfall for the same type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080561
train
v2
Sensor network script: Node: humidity | code: clr | fields: lat, qc, depth, lon Sensor: cloud_cover | fields: qc, level, lon, ts Task: Get reading from humidity where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080562
train
v2
Sensor network script: Node: lightning | code: gst | fields: lon, level, depth, ts Sensor: visibility | fields: unit, qc, lon, level Task: Get lat from lightning where a corresponding entry exists in visibility with the same ts. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080563
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: unit, level, ts, qc Sensor: humidity | fields: type, ts, lon, level Task: Get depth from cloud_cover where a corresponding entry exists in humidity with the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080564
train
v1
Sensor network script: Node: visibility | code: prt | fields: value, type, depth, ts Sensor: turbidity | fields: reading, lat, unit, qc Task: Get reading from visibility where depth appears in turbidity readings with matching type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="type", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080565
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: level, depth, qc, lat Sensor: cloud_cover | fields: unit, depth, level, lon Task: Fetch level from wind_speed where qc exists in cloud_cover sensor data for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080566
train
v1
Sensor network script: Node: drought_index | code: mst | fields: level, depth, value, lon Sensor: temperature | fields: level, lon, reading, unit Task: Retrieve level from drought_index whose type is found in temperature records where type matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="type", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080567
train
v2
Sensor network script: Node: sunlight | code: clr | fields: reading, lon, ts, lat Sensor: snow_depth | fields: lat, value, depth, qc Task: Retrieve value from sunlight that have at least one matching reading in snow_depth sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "value", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080568
train
v3
Sensor network script: Node: sunlight | code: gst | fields: reading, depth, value, lat Sensor: uv_index | fields: value, ts, lat, level Task: Retrieve lon from sunlight with depth above the AVG(depth) of uv_index readings sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("uv_index", code="flx"), match="ts"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lon", "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_080569
train
v2
Sensor network script: Node: humidity | code: clr | fields: level, qc, value, lon Sensor: temperature | fields: lat, level, ts, reading Task: Fetch value from humidity that have at least one corresponding temperature measurement for the same qc. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="value", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "value", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080570
train
v1
Sensor network script: Node: humidity | code: clr | fields: type, unit, lat, qc Sensor: soil_moisture | fields: type, ts, unit, lon Task: Get value from humidity where ts appears in soil_moisture readings with matching ts. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="value", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080571
train
v3
Sensor network script: Node: evaporation | code: hub | fields: unit, qc, lat, value Sensor: drought_index | fields: unit, lon, lat, ts Task: Get lat from evaporation where value exceeds the count of depth from drought_index for the same type. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("drought_index", code="drt"), match="type"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080572
train
v2
Sensor network script: Node: evaporation | code: ref | fields: level, lat, reading, lon Sensor: soil_moisture | fields: type, unit, lon, value Task: Fetch lon from evaporation that have at least one corresponding soil_moisture measurement for the same unit. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080573
train
v2
Sensor network script: Node: temperature | code: ref | fields: value, level, ts, unit Sensor: turbidity | fields: level, depth, ts, lat Task: Fetch level from temperature that have at least one corresponding turbidity measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="level", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080574
train
v2
Sensor network script: Node: visibility | code: thr | fields: type, depth, lon, reading Sensor: air_quality | fields: lat, depth, level, lon Task: Get level from visibility where a corresponding entry exists in air_quality with the same ts. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "level", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080575
train
v1
Sensor network script: Node: drought_index | code: stn | fields: value, ts, lon, depth Sensor: wind_speed | fields: depth, reading, type, qc Task: Retrieve level from drought_index whose ts is found in wind_speed records where ts matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="ts", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080576
train
v3
Sensor network script: Node: rainfall | code: thr | fields: lon, value, level, qc Sensor: snow_depth | fields: lat, depth, lon, ts Task: Retrieve lat from rainfall with depth above the SUM(reading) of snow_depth readings sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("snow_depth", code="snw"), match="unit"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080577
train
v3
Sensor network script: Node: lightning | code: prt | fields: reading, unit, qc, depth Sensor: rainfall | fields: value, level, qc, unit Task: Retrieve lon from lightning with reading above the AVG(reading) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080578
train
v2
Sensor network script: Node: dew_point | code: stn | fields: depth, level, qc, lon Sensor: pressure | fields: unit, lon, depth, value Task: Get level from dew_point where a corresponding entry exists in pressure with the same type. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "level", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080579
train
v1
Sensor network script: Node: temperature | code: ref | fields: reading, lon, type, level Sensor: lightning | fields: lat, type, depth, value Task: Retrieve reading from temperature whose unit is found in lightning records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="unit", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080580
train
v3
Sensor network script: Node: lightning | code: ref | fields: qc, ts, lat, lon Sensor: snow_depth | fields: ts, level, depth, reading Task: Get reading from lightning where value exceeds the count of reading from snow_depth for the same qc. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("snow_depth", code="snw"), match="qc"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080581
train
v2
Sensor network script: Node: dew_point | code: thr | fields: lon, reading, ts, value Sensor: turbidity | fields: lat, value, reading, qc Task: Retrieve value from dew_point that have at least one matching reading in turbidity sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "value", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080582
train
v3
Sensor network script: Node: humidity | code: prt | fields: value, type, lat, level Sensor: lightning | fields: level, depth, value, unit Task: Fetch depth from humidity where value is greater than the average of reading in lightning for matching ts. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080583
train
v3
Sensor network script: Node: rainfall | code: thr | fields: lon, lat, ts, level Sensor: visibility | fields: reading, unit, ts, lat Task: Retrieve reading from rainfall with value above the COUNT(depth) of visibility readings sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("visibility", code="clr"), match="type"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080584
train
v3
Sensor network script: Node: frost | code: prt | fields: value, lat, level, unit Sensor: lightning | fields: ts, value, reading, lon Task: Retrieve lon from frost with depth above the MAX(value) of lightning readings sharing the same qc. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("lightning", code="tnd"), match="qc"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080585
train
v3
Sensor network script: Node: uv_index | code: clr | fields: ts, depth, qc, reading Sensor: lightning | fields: depth, type, ts, lat Task: Retrieve reading from uv_index with value above the SUM(depth) of lightning readings sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("lightning", code="tnd"), match="qc"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080586
train
v3
Sensor network script: Node: rainfall | code: thr | fields: depth, qc, type, reading Sensor: cloud_cover | fields: level, qc, reading, lon Task: Get lon from rainfall where value exceeds the total depth from cloud_cover for the same ts. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080587
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: ts, lat, qc, reading Sensor: temperature | fields: level, reading, lon, qc Task: Fetch reading from cloud_cover where depth is greater than the minimum of value in temperature for matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("temperature", code="thr"), match="ts"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_080588
train
v2
Sensor network script: Node: lightning | code: prt | fields: lon, ts, depth, reading Sensor: drought_index | fields: lon, depth, unit, ts Task: Retrieve lon from lightning that have at least one matching reading in drought_index sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080589
train
v1
Sensor network script: Node: rainfall | code: thr | fields: lat, value, level, reading Sensor: evaporation | fields: ts, type, reading, level Task: Get lon from rainfall where unit appears in evaporation readings with matching depth. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="depth", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080590
train
v3
Sensor network script: Node: humidity | code: prt | fields: depth, lon, lat, level Sensor: pressure | fields: depth, level, reading, type Task: Retrieve lon from humidity with depth above the AVG(reading) of pressure readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("pressure", code="mbl"), match="unit"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080591
train
v2
Sensor network script: Node: turbidity | code: prt | fields: depth, level, ts, unit Sensor: drought_index | fields: ts, value, type, unit Task: Get reading from turbidity where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080592
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: ts, reading, unit, lon Sensor: soil_moisture | fields: unit, depth, lon, ts Task: Retrieve reading from wind_speed that have at least one matching reading in soil_moisture sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080593
train
v3
Sensor network script: Node: temperature | code: clr | fields: depth, type, value, lat Sensor: rainfall | fields: reading, lon, type, qc Task: Get level from temperature where reading exceeds the count of value from rainfall for the same qc. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080594
train
v3
Sensor network script: Node: frost | code: gst | fields: level, value, ts, lat Sensor: rainfall | fields: lon, type, qc, ts Task: Get value from frost where depth exceeds the count of depth from rainfall for the same ts. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="value", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080595
train
v3
Sensor network script: Node: temperature | code: clr | fields: lon, ts, type, unit Sensor: cloud_cover | fields: depth, lon, qc, ts Task: Fetch level from temperature where value is greater than the count of of value in cloud_cover for matching ts. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080596
train
v3
Sensor network script: Node: drought_index | code: gst | fields: value, lat, type, reading Sensor: evaporation | fields: level, lon, value, type Task: Fetch level from drought_index where reading is greater than the count of of depth in evaporation for matching qc. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080597
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: type, level, value, ts Sensor: drought_index | fields: type, lat, unit, reading Task: Retrieve lon from snow_depth whose ts is found in drought_index records where depth matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="depth", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080598
train
v1
Sensor network script: Node: frost | code: thr | fields: qc, reading, unit, depth Sensor: soil_moisture | fields: qc, depth, value, type Task: Get value from frost where ts appears in soil_moisture readings with matching depth. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="value", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_080599
train