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: air_quality | code: gst | fields: depth, ts, qc, level Sensor: frost | fields: qc, lat, ts, lon Task: Fetch reading from air_quality where depth is greater than the maximum of depth in frost for matching ts. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("frost", code="frs"), match="ts"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065500
train
v2
Sensor network script: Node: visibility | code: gst | fields: lon, ts, reading, qc Sensor: lightning | fields: depth, unit, reading, lat Task: Retrieve depth from visibility that have at least one matching reading in lightning sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065501
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: reading, unit, value, lon Sensor: visibility | fields: value, lat, qc, lon Task: Fetch value from soil_moisture that have at least one corresponding visibility measurement for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065502
train
v2
Sensor network script: Node: dew_point | code: mst | fields: reading, lat, level, qc Sensor: drought_index | fields: level, reading, lat, qc Task: Get depth from dew_point where a corresponding entry exists in drought_index with the same unit. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065503
train
v2
Sensor network script: Node: humidity | code: thr | fields: unit, value, qc, level Sensor: air_quality | fields: depth, lon, type, level Task: Retrieve lon from humidity that have at least one matching reading in air_quality sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065504
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: ts, unit, lon, value Sensor: snow_depth | fields: qc, depth, value, ts Task: Fetch reading from soil_moisture where value is greater than the minimum of reading in snow_depth for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065505
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: unit, depth, lat, value Sensor: rainfall | fields: lat, depth, reading, unit Task: Retrieve value from wind_speed with depth above the MAX(depth) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065506
train
v1
Sensor network script: Node: air_quality | code: hub | fields: lat, unit, level, lon Sensor: lightning | fields: ts, qc, value, lon Task: Get value from air_quality where type appears in lightning readings with matching ts. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065507
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: reading, value, ts, unit Sensor: dew_point | fields: reading, unit, lat, level Task: Fetch lon from cloud_cover where reading is greater than the minimum of value in dew_point for matching type. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("dew_point", code="cnd"), match="type"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065508
train
v3
Sensor network script: Node: humidity | code: ref | fields: reading, ts, depth, lat Sensor: temperature | fields: ts, depth, reading, value Task: Fetch depth from humidity where value is greater than the total of depth in temperature for matching type. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065509
train
v3
Sensor network script: Node: rainfall | code: clr | fields: reading, level, lon, ts Sensor: frost | fields: depth, ts, unit, qc Task: Fetch value from rainfall where reading is greater than the minimum of depth in frost for matching ts. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="ts"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065510
train
v3
Sensor network script: Node: frost | code: clr | fields: ts, unit, qc, depth Sensor: drought_index | fields: qc, ts, depth, level Task: Get lon from frost where reading exceeds the maximum depth from drought_index for the same unit. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("drought_index", code="drt"), match="unit"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065511
train
v1
Sensor network script: Node: uv_index | code: thr | fields: qc, depth, lon, level Sensor: rainfall | fields: unit, level, depth, lon Task: Fetch level from uv_index where ts exists in rainfall sensor data for the same type. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="type", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065512
train
v1
Sensor network script: Node: visibility | code: thr | fields: level, depth, lon, value Sensor: lightning | fields: unit, qc, lon, value Task: Retrieve depth from visibility whose depth is found in lightning records where type matches the outer node. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="type", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065513
train
v2
Sensor network script: Node: sunlight | code: gst | fields: unit, qc, type, level Sensor: soil_moisture | fields: lat, lon, qc, ts Task: Fetch lat from sunlight that have at least one corresponding soil_moisture measurement for the same qc. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065514
train
v1
Sensor network script: Node: pressure | code: prt | fields: value, depth, level, unit Sensor: soil_moisture | fields: unit, level, type, ts Task: Fetch lon from pressure where depth exists in soil_moisture sensor data for the same qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065515
train
v2
Sensor network script: Node: air_quality | code: hub | fields: depth, lon, value, ts Sensor: humidity | fields: level, value, ts, unit Task: Fetch reading from air_quality that have at least one corresponding humidity measurement for the same qc. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065516
train
v2
Sensor network script: Node: lightning | code: hub | fields: depth, ts, reading, qc Sensor: uv_index | fields: reading, value, lon, ts Task: Fetch depth from lightning that have at least one corresponding uv_index measurement for the same ts. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065517
train
v1
Sensor network script: Node: air_quality | code: stn | fields: level, lat, lon, qc Sensor: evaporation | fields: lat, unit, value, depth Task: Fetch lon from air_quality where ts exists in evaporation sensor data for the same ts. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065518
train
v3
Sensor network script: Node: dew_point | code: hub | fields: unit, level, value, reading Sensor: temperature | fields: value, lon, qc, type Task: Retrieve depth from dew_point with value above the SUM(reading) of temperature readings sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("temperature", code="thr"), match="depth"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065519
train
v1
Sensor network script: Node: air_quality | code: ref | fields: ts, reading, qc, type Sensor: sunlight | fields: type, lat, value, unit Task: Get reading from air_quality where depth appears in sunlight readings with matching type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="type", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065520
train
v2
Sensor network script: Node: pressure | code: hub | fields: type, lat, level, unit Sensor: wind_speed | fields: level, type, ts, reading Task: Fetch depth from pressure that have at least one corresponding wind_speed measurement for the same ts. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065521
train
v1
Sensor network script: Node: rainfall | code: clr | fields: lat, depth, unit, lon Sensor: drought_index | fields: level, lat, lon, depth Task: Retrieve lon from rainfall whose unit is found in drought_index records where depth matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="depth", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065522
train
v2
Sensor network script: Node: rainfall | code: stn | fields: lat, level, value, unit Sensor: lightning | fields: lon, ts, reading, qc Task: Fetch lat from rainfall that have at least one corresponding lightning measurement for the same depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065523
train
v1
Sensor network script: Node: rainfall | code: thr | fields: depth, reading, unit, level Sensor: dew_point | fields: lat, level, unit, lon Task: Retrieve lon from rainfall whose qc is found in dew_point records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="ts", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065524
train
v3
Sensor network script: Node: drought_index | code: thr | fields: value, reading, depth, type Sensor: cloud_cover | fields: depth, ts, qc, level Task: Get level from drought_index where value exceeds the average depth from cloud_cover for the same depth. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065525
train
v1
Sensor network script: Node: evaporation | code: mst | fields: value, lon, qc, type Sensor: frost | fields: type, unit, lat, value Task: Get depth from evaporation where ts appears in frost readings with matching depth. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="depth", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065526
train
v3
Sensor network script: Node: lightning | code: prt | fields: lon, type, qc, ts Sensor: frost | fields: level, ts, qc, lat Task: Get lat from lightning where reading exceeds the total reading from frost for the same unit. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065527
train
v1
Sensor network script: Node: sunlight | code: stn | fields: reading, unit, value, level Sensor: uv_index | fields: qc, lon, ts, level Task: Fetch depth from sunlight where qc exists in uv_index sensor data for the same depth. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="depth", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "depth", "filter_col": "qc", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065528
train
v2
Sensor network script: Node: humidity | code: hub | fields: unit, value, lat, level Sensor: temperature | fields: unit, value, ts, lon Task: Fetch level from humidity that have at least one corresponding temperature measurement for the same qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="level", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065529
train
v1
Sensor network script: Node: uv_index | code: prt | fields: qc, level, lat, unit Sensor: temperature | fields: type, qc, level, reading Task: Fetch value from uv_index where ts exists in temperature sensor data for the same ts. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="ts", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065530
train
v1
Sensor network script: Node: turbidity | code: gst | fields: lat, reading, depth, value Sensor: rainfall | fields: ts, reading, type, level Task: Fetch level from turbidity where depth exists in rainfall sensor data for the same depth. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="depth", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065531
train
v2
Sensor network script: Node: temperature | code: stn | fields: reading, unit, type, lon Sensor: frost | fields: reading, unit, type, ts Task: Get lat from temperature where a corresponding entry exists in frost with the same qc. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065532
train
v1
Sensor network script: Node: frost | code: hub | fields: ts, lat, reading, value Sensor: visibility | fields: ts, lon, unit, type Task: Fetch reading from frost where ts exists in visibility sensor data for the same depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="depth", ), output="reading", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "reading", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065533
train
v3
Sensor network script: Node: pressure | code: clr | fields: reading, level, lat, depth Sensor: dew_point | fields: reading, lat, qc, unit Task: Fetch reading from pressure where reading is greater than the maximum of value in dew_point for matching unit. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("dew_point", code="cnd"), match="unit"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065534
train
v1
Sensor network script: Node: frost | code: ref | fields: level, qc, depth, lat Sensor: cloud_cover | fields: lat, type, unit, value Task: Fetch reading from frost where unit exists in cloud_cover sensor data for the same ts. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="reading", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065535
train
v2
Sensor network script: Node: evaporation | code: thr | fields: depth, lon, unit, lat Sensor: soil_moisture | fields: value, depth, lat, reading Task: Get reading from evaporation where a corresponding entry exists in soil_moisture with the same unit. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065536
train
v2
Sensor network script: Node: temperature | code: gst | fields: depth, level, type, unit Sensor: sunlight | fields: type, qc, depth, lat Task: Get reading from temperature where a corresponding entry exists in sunlight with the same qc. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065537
train
v3
Sensor network script: Node: pressure | code: mst | fields: value, unit, type, lat Sensor: lightning | fields: unit, qc, depth, level Task: Fetch depth from pressure where value is greater than the maximum of value in lightning for matching qc. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("lightning", code="tnd"), match="qc"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065538
train
v1
Sensor network script: Node: turbidity | code: mst | fields: lat, unit, type, reading Sensor: cloud_cover | fields: ts, type, qc, depth Task: Retrieve depth from turbidity whose type is found in cloud_cover records where qc matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065539
train
v2
Sensor network script: Node: humidity | code: mst | fields: reading, value, qc, lat Sensor: soil_moisture | fields: depth, type, reading, level Task: Get value from humidity where a corresponding entry exists in soil_moisture with the same type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "value", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065540
train
v3
Sensor network script: Node: lightning | code: stn | fields: lon, unit, ts, level Sensor: evaporation | fields: unit, value, lat, type Task: Get level from lightning where depth exceeds the minimum value from evaporation for the same ts. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("evaporation", code="evp"), match="ts"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "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_065541
train
v3
Sensor network script: Node: uv_index | code: hub | fields: lat, depth, unit, reading Sensor: temperature | fields: value, ts, depth, lon Task: Fetch reading from uv_index where reading is greater than the count of of depth in temperature for matching type. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065542
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: qc, ts, reading, level Sensor: humidity | fields: value, level, qc, lat Task: Get level from cloud_cover where a corresponding entry exists in humidity with the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "level", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065543
train
v1
Sensor network script: Node: temperature | code: ref | fields: depth, lat, reading, lon Sensor: cloud_cover | fields: depth, reading, qc, ts Task: Retrieve depth from temperature whose type is found in cloud_cover records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065544
train
v1
Sensor network script: Node: evaporation | code: thr | fields: level, lat, unit, lon Sensor: sunlight | fields: depth, type, level, unit Task: Get depth from evaporation where unit appears in sunlight readings with matching ts. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="ts", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065545
train
v1
Sensor network script: Node: rainfall | code: mst | fields: depth, qc, lat, value Sensor: wind_speed | fields: reading, value, depth, ts Task: Get lat from rainfall where type appears in wind_speed readings with matching depth. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="depth", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lat", "filter_col": "type", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065546
train
v3
Sensor network script: Node: pressure | code: clr | fields: lat, qc, reading, value Sensor: soil_moisture | fields: value, lon, qc, level Task: Retrieve reading from pressure with reading above the MIN(depth) of soil_moisture readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065547
train
v3
Sensor network script: Node: uv_index | code: stn | fields: qc, level, value, unit Sensor: evaporation | fields: lat, qc, lon, unit Task: Fetch level from uv_index where depth is greater than the total of depth in evaporation for matching unit. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("evaporation", code="evp"), match="unit"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065548
train
v2
Sensor network script: Node: dew_point | code: hub | fields: level, qc, reading, type Sensor: drought_index | fields: lon, reading, type, depth Task: Get lon from dew_point where a corresponding entry exists in drought_index with the same qc. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065549
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: qc, depth, ts, lon Sensor: wind_speed | fields: depth, unit, ts, level Task: Fetch lon from cloud_cover where depth is greater than the maximum of depth in wind_speed for matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("wind_speed", code="gst"), match="depth"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065550
train
v3
Sensor network script: Node: uv_index | code: stn | fields: type, reading, lat, qc Sensor: drought_index | fields: ts, reading, lon, value Task: Get lat from uv_index where value exceeds the average value from drought_index for the same type. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("drought_index", code="drt"), match="type"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065551
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: ts, lat, depth, level Sensor: cloud_cover | fields: level, value, lat, depth Task: Get level from wind_speed where depth exceeds the maximum value from cloud_cover for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065552
train
v1
Sensor network script: Node: pressure | code: prt | fields: unit, type, lat, lon Sensor: snow_depth | fields: unit, type, lon, reading Task: Get lat from pressure where depth appears in snow_depth readings with matching qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="qc", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065553
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: qc, lat, depth, reading Sensor: air_quality | fields: lat, level, depth, unit Task: Get depth from snow_depth where ts appears in air_quality readings with matching unit. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="unit", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065554
train
v1
Sensor network script: Node: sunlight | code: ref | fields: depth, unit, type, lat Sensor: uv_index | fields: type, depth, value, unit Task: Retrieve reading from sunlight whose unit is found in uv_index records where qc matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="qc", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065555
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: type, lon, level, unit Sensor: evaporation | fields: value, lon, unit, lat Task: Fetch level from snow_depth that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "level", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065556
train
v2
Sensor network script: Node: rainfall | code: thr | fields: type, lon, level, lat Sensor: humidity | fields: unit, depth, level, qc Task: Get level from rainfall where a corresponding entry exists in humidity with the same depth. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "level", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065557
train
v3
Sensor network script: Node: pressure | code: gst | fields: type, value, depth, qc Sensor: temperature | fields: lat, type, reading, depth Task: Fetch reading from pressure where reading is greater than the minimum of depth in temperature for matching ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("temperature", code="thr"), match="ts"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065558
train
v3
Sensor network script: Node: uv_index | code: clr | fields: lat, qc, depth, lon Sensor: lightning | fields: qc, value, depth, reading Task: Retrieve lon from uv_index with depth above the SUM(depth) of lightning readings sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("lightning", code="tnd"), match="qc"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065559
train
v3
Sensor network script: Node: pressure | code: ref | fields: lat, reading, depth, qc Sensor: snow_depth | fields: level, lat, value, reading Task: Get depth from pressure where depth exceeds the maximum reading from snow_depth for the same unit. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("snow_depth", code="snw"), match="unit"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065560
train
v1
Sensor network script: Node: pressure | code: clr | fields: reading, value, level, lon Sensor: uv_index | fields: value, ts, depth, lat Task: Fetch lon from pressure where type exists in uv_index sensor data for the same qc. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="qc", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065561
train
v1
Sensor network script: Node: dew_point | code: clr | fields: level, ts, depth, unit Sensor: pressure | fields: unit, lon, level, type Task: Fetch value from dew_point where ts exists in pressure sensor data for the same ts. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="ts", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065562
train
v3
Sensor network script: Node: humidity | code: thr | fields: lat, value, lon, level Sensor: soil_moisture | fields: lon, ts, type, unit Task: Fetch lat from humidity where reading is greater than the total of reading in soil_moisture for matching qc. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065563
train
v3
Sensor network script: Node: turbidity | code: ref | fields: lon, reading, unit, depth Sensor: humidity | fields: value, type, unit, qc Task: Get reading from turbidity where depth exceeds the count of reading from humidity for the same type. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="type"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065564
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: level, lat, lon, type Sensor: dew_point | fields: type, lat, value, depth Task: Fetch lat from wind_speed where depth exists in dew_point sensor data for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="qc", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065565
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: unit, lon, reading, value Sensor: frost | fields: reading, type, depth, lat Task: Retrieve lon from soil_moisture whose type is found in frost records where ts matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="ts", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065566
train
v2
Sensor network script: Node: air_quality | code: clr | fields: type, lat, level, qc Sensor: frost | fields: level, unit, qc, lon Task: Fetch reading from air_quality that have at least one corresponding frost measurement for the same unit. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "reading", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065567
train
v2
Sensor network script: Node: turbidity | code: clr | fields: lon, level, ts, reading Sensor: drought_index | fields: lon, level, reading, qc Task: Retrieve level from turbidity that have at least one matching reading in drought_index sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065568
train
v3
Sensor network script: Node: air_quality | code: ref | fields: lat, qc, ts, unit Sensor: snow_depth | fields: ts, level, unit, depth Task: Retrieve value from air_quality with value above the MAX(reading) of snow_depth readings sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("snow_depth", code="snw"), match="type"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065569
train
v3
Sensor network script: Node: pressure | code: prt | fields: lon, qc, unit, value Sensor: sunlight | fields: lat, unit, qc, reading Task: Retrieve value from pressure with value above the AVG(value) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("sunlight", code="brt"), match="type"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065570
train
v2
Sensor network script: Node: pressure | code: thr | fields: unit, reading, ts, type Sensor: frost | fields: ts, unit, reading, lat Task: Get level from pressure where a corresponding entry exists in frost with the same ts. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="level", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "level", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065571
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: type, reading, unit, ts Sensor: rainfall | fields: unit, depth, reading, level Task: Get lat from cloud_cover where type appears in rainfall readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="qc", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065572
train
v2
Sensor network script: Node: rainfall | code: stn | fields: ts, qc, depth, level Sensor: humidity | fields: qc, lat, unit, type Task: Fetch value from rainfall that have at least one corresponding humidity measurement for the same depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "value", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065573
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: reading, lon, qc, depth Sensor: drought_index | fields: value, lat, type, reading Task: Get value from cloud_cover where a corresponding entry exists in drought_index with the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "value", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065574
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: reading, depth, unit, value Sensor: visibility | fields: value, type, lat, level Task: Get level from cloud_cover where type appears in visibility readings with matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="unit", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065575
train
v1
Sensor network script: Node: dew_point | code: hub | fields: value, ts, qc, type Sensor: air_quality | fields: depth, level, lat, lon Task: Retrieve lat from dew_point whose type is found in air_quality records where qc matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="qc", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065576
train
v2
Sensor network script: Node: lightning | code: ref | fields: type, reading, unit, level Sensor: humidity | fields: value, ts, lon, qc Task: Get value from lightning where a corresponding entry exists in humidity with the same ts. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="value", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "value", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065577
train
v1
Sensor network script: Node: air_quality | code: clr | fields: ts, qc, reading, depth Sensor: rainfall | fields: unit, depth, lat, type Task: Fetch value from air_quality where unit exists in rainfall sensor data for the same depth. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="depth", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065578
train
v2
Sensor network script: Node: humidity | code: prt | fields: value, lon, qc, lat Sensor: cloud_cover | fields: lon, reading, unit, value Task: Get lat from humidity where a corresponding entry exists in cloud_cover with the same ts. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065579
train
v1
Sensor network script: Node: drought_index | code: ref | fields: ts, unit, reading, depth Sensor: snow_depth | fields: level, qc, ts, lon Task: Retrieve depth from drought_index whose qc is found in snow_depth records where ts matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065580
train
v3
Sensor network script: Node: pressure | code: prt | fields: type, value, reading, lon Sensor: sunlight | fields: unit, qc, type, level Task: Get level from pressure where depth exceeds the count of value from sunlight for the same type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("sunlight", code="brt"), match="type"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065581
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: lat, reading, unit, qc Sensor: evaporation | fields: lon, value, reading, type Task: Fetch level from cloud_cover where type exists in evaporation sensor data for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="qc", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065582
train
v2
Sensor network script: Node: cloud_cover | code: gst | fields: depth, unit, reading, lon Sensor: pressure | fields: value, lon, type, qc Task: Get reading from cloud_cover where a corresponding entry exists in pressure with the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065583
train
v1
Sensor network script: Node: humidity | code: gst | fields: value, lon, unit, ts Sensor: sunlight | fields: value, depth, ts, lat Task: Fetch level from humidity where unit exists in sunlight sensor data for the same qc. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="qc", ), output="level", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065584
train
v1
Sensor network script: Node: humidity | code: gst | fields: lon, lat, ts, level Sensor: turbidity | fields: value, unit, type, qc Task: Retrieve lon from humidity whose ts is found in turbidity records where qc matches the outer node. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="qc", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065585
train
v3
Sensor network script: Node: sunlight | code: clr | fields: type, level, qc, reading Sensor: temperature | fields: reading, ts, level, value Task: Retrieve value from sunlight with depth above the AVG(depth) of temperature readings sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065586
train
v1
Sensor network script: Node: visibility | code: prt | fields: qc, value, lon, ts Sensor: wind_speed | fields: ts, unit, value, lat Task: Retrieve depth from visibility whose type is found in wind_speed records where ts matches the outer node. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="ts", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "depth", "filter_col": "type", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065587
train
v2
Sensor network script: Node: temperature | code: thr | fields: level, reading, unit, qc Sensor: sunlight | fields: type, depth, reading, value Task: Get level from temperature where a corresponding entry exists in sunlight with the same qc. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="level", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065588
train
v1
Sensor network script: Node: humidity | code: ref | fields: value, type, level, unit Sensor: evaporation | fields: lon, lat, qc, value Task: Fetch reading from humidity where depth exists in evaporation sensor data for the same depth. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="depth", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065589
train
v1
Sensor network script: Node: dew_point | code: hub | fields: reading, depth, ts, qc Sensor: sunlight | fields: value, depth, lon, ts Task: Retrieve lon from dew_point whose type is found in sunlight records where unit matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lon", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065590
train
v1
Sensor network script: Node: lightning | code: mst | fields: lat, reading, type, value Sensor: cloud_cover | fields: lon, depth, reading, level Task: Retrieve lat from lightning whose qc is found in cloud_cover records where qc matches the outer node. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065591
train
v3
Sensor network script: Node: evaporation | code: prt | fields: reading, lon, value, ts Sensor: uv_index | fields: qc, lat, reading, lon Task: Fetch value from evaporation where reading is greater than the maximum of reading in uv_index for matching type. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("uv_index", code="flx"), match="type"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065592
train
v2
Sensor network script: Node: rainfall | code: gst | fields: depth, ts, qc, level Sensor: visibility | fields: type, lon, ts, value Task: Retrieve depth from rainfall that have at least one matching reading in visibility sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065593
train
v2
Sensor network script: Node: frost | code: ref | fields: qc, lon, depth, unit Sensor: visibility | fields: ts, type, lat, lon Task: Fetch lon from frost that have at least one corresponding visibility measurement for the same qc. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="lon", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065594
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: ts, reading, unit, level Sensor: uv_index | fields: reading, ts, qc, lat Task: Fetch reading from soil_moisture that have at least one corresponding uv_index measurement for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "reading", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065595
train
v3
Sensor network script: Node: air_quality | code: hub | fields: level, reading, lat, qc Sensor: rainfall | fields: depth, ts, lat, value Task: Get lon from air_quality where value exceeds the count of value from rainfall for the same type. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="type"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065596
train
v2
Sensor network script: Node: air_quality | code: thr | fields: lon, qc, level, type Sensor: sunlight | fields: type, ts, level, depth Task: Get reading from air_quality where a corresponding entry exists in sunlight with the same unit. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065597
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: unit, lat, qc, type Sensor: evaporation | fields: level, reading, qc, ts Task: Get value from snow_depth where unit appears in evaporation readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065598
train
v3
Sensor network script: Node: lightning | code: ref | fields: ts, lat, value, unit Sensor: rainfall | fields: qc, lat, depth, lon Task: Retrieve level from lightning with depth above the COUNT(depth) of rainfall readings sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065599
train