variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v2
Sensor network script: Node: lightning | code: clr | fields: depth, level, lon, reading Sensor: evaporation | fields: qc, level, unit, type Task: Fetch lon from lightning that have at least one corresponding evaporation measurement for the same type. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lon", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017400
train
v1
Sensor network script: Node: lightning | code: thr | fields: level, unit, lon, type Sensor: pressure | fields: unit, qc, lon, level Task: Fetch depth from lightning where unit exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="qc", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017401
train
v1
Sensor network script: Node: drought_index | code: stn | fields: level, ts, value, lon Sensor: frost | fields: value, level, depth, unit Task: Fetch depth from drought_index where depth exists in frost sensor data for the same type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017402
train
v1
Sensor network script: Node: lightning | code: stn | fields: type, lat, reading, depth Sensor: cloud_cover | fields: type, ts, reading, value Task: Retrieve reading from lightning whose unit is found in cloud_cover records where unit matches the outer node. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017403
train
v1
Sensor network script: Node: uv_index | code: stn | fields: type, lon, qc, level Sensor: evaporation | fields: lat, level, qc, depth Task: Fetch lat from uv_index where type exists in evaporation sensor data for the same qc. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="qc", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017404
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: lon, lat, value, reading Sensor: wind_speed | fields: type, lat, depth, ts Task: Fetch value from soil_moisture where reading is greater than the count of of value in wind_speed for matching type. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("wind_speed", code="gst"), match="type"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017405
train
v3
Sensor network script: Node: pressure | code: hub | fields: lon, type, ts, lat Sensor: temperature | fields: type, lon, value, depth Task: Get value from pressure where value exceeds the minimum depth from temperature for the same type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017406
train
v2
Sensor network script: Node: humidity | code: thr | fields: value, reading, level, type Sensor: sunlight | fields: reading, qc, lat, value Task: Fetch level from humidity that have at least one corresponding sunlight measurement for the same unit. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="level", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017407
train
v2
Sensor network script: Node: lightning | code: thr | fields: reading, lon, type, level Sensor: pressure | fields: lon, qc, value, level Task: Retrieve reading from lightning that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017408
train
v3
Sensor network script: Node: rainfall | code: hub | fields: type, lon, level, unit Sensor: drought_index | fields: reading, lat, qc, type Task: Fetch level from rainfall where value is greater than the count of of reading in drought_index for matching ts. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("drought_index", code="drt"), match="ts"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017409
train
v1
Sensor network script: Node: dew_point | code: thr | fields: ts, type, level, lat Sensor: humidity | fields: reading, depth, type, unit Task: Fetch depth from dew_point where depth exists in humidity sensor data for the same depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="depth", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017410
train
v3
Sensor network script: Node: turbidity | code: hub | fields: depth, value, qc, unit Sensor: rainfall | fields: qc, lon, type, reading Task: Get level from turbidity where depth exceeds the total reading from rainfall for the same type. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017411
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: type, ts, unit, qc Sensor: visibility | fields: level, unit, qc, reading Task: Fetch level from cloud_cover that have at least one corresponding visibility measurement for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017412
train
v1
Sensor network script: Node: temperature | code: clr | fields: value, qc, reading, unit Sensor: wind_speed | fields: ts, depth, value, reading Task: Fetch value from temperature where unit exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="unit", ), output="value", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017413
train
v2
Sensor network script: Node: temperature | code: hub | fields: type, unit, qc, value Sensor: drought_index | fields: lon, lat, unit, type Task: Get level from temperature where a corresponding entry exists in drought_index with the same unit. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="level", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017414
train
v3
Sensor network script: Node: temperature | code: clr | fields: value, unit, ts, lon Sensor: air_quality | fields: lon, qc, unit, lat Task: Fetch level from temperature where depth is greater than the count of of value in air_quality for matching depth. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017415
train
v2
Sensor network script: Node: pressure | code: ref | fields: depth, unit, reading, level Sensor: rainfall | fields: value, qc, type, level Task: Retrieve value from pressure that have at least one matching reading in rainfall sharing the same type. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="value", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "value", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017416
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: lat, lon, level, depth Sensor: evaporation | fields: lon, reading, depth, level Task: Get value from soil_moisture where a corresponding entry exists in evaporation with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017417
train
v2
Sensor network script: Node: humidity | code: ref | fields: value, type, depth, qc Sensor: evaporation | fields: qc, value, level, reading Task: Retrieve lat from humidity that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017418
train
v2
Sensor network script: Node: air_quality | code: stn | fields: type, qc, lat, unit Sensor: lightning | fields: reading, level, type, lon Task: Get lon from air_quality where a corresponding entry exists in lightning with the same ts. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lon", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017419
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: ts, qc, lon, reading Sensor: frost | fields: type, qc, depth, ts Task: Get depth from snow_depth where qc appears in frost readings with matching depth. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="depth", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "depth", "filter_col": "qc", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017420
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: reading, type, qc, depth Sensor: humidity | fields: depth, reading, qc, lat Task: Get lon from wind_speed where reading exceeds the count of reading from humidity for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="unit"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017421
train
v2
Sensor network script: Node: temperature | code: prt | fields: value, lon, level, depth Sensor: dew_point | fields: ts, lat, lon, unit Task: Get reading from temperature where a corresponding entry exists in dew_point with the same ts. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "reading", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017422
train
v3
Sensor network script: Node: air_quality | code: ref | fields: type, lat, lon, level Sensor: cloud_cover | fields: reading, type, unit, level Task: Retrieve value from air_quality with value above the SUM(value) of cloud_cover readings sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017423
train
v2
Sensor network script: Node: frost | code: prt | fields: type, lat, depth, unit Sensor: rainfall | fields: reading, ts, unit, lat Task: Fetch depth from frost that have at least one corresponding rainfall measurement for the same depth. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="depth", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017424
train
v3
Sensor network script: Node: humidity | code: thr | fields: level, lon, value, reading Sensor: lightning | fields: lon, reading, type, value Task: Get value from humidity where depth exceeds the minimum value from lightning for the same unit. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("lightning", code="tnd"), match="unit"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017425
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: type, value, depth, level Sensor: lightning | fields: lon, type, depth, unit Task: Get lat from wind_speed where depth exceeds the maximum reading from lightning for the same type. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("lightning", code="tnd"), match="type"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017426
train
v3
Sensor network script: Node: pressure | code: stn | fields: unit, value, type, level Sensor: lightning | fields: lon, qc, depth, type Task: Fetch depth from pressure where depth is greater than the average of depth in lightning for matching qc. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("lightning", code="tnd"), match="qc"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017427
train
v2
Sensor network script: Node: uv_index | code: hub | fields: value, ts, type, depth Sensor: evaporation | fields: unit, type, depth, ts Task: Retrieve lat from uv_index that have at least one matching reading in evaporation sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lat", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017428
train
v3
Sensor network script: Node: visibility | code: clr | fields: type, depth, ts, lon Sensor: snow_depth | fields: ts, reading, qc, depth Task: Fetch reading from visibility where depth is greater than the minimum of depth in snow_depth for matching type. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("snow_depth", code="snw"), match="type"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017429
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: unit, lon, qc, level Sensor: evaporation | fields: ts, depth, value, reading Task: Fetch lon from cloud_cover where reading is greater than the count of of value in evaporation for matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("evaporation", code="evp"), match="ts"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017430
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: lat, type, lon, ts Sensor: turbidity | fields: qc, level, value, lat Task: Fetch level from wind_speed that have at least one corresponding turbidity measurement for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "level", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017431
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: depth, qc, level, lat Sensor: pressure | fields: lat, type, lon, reading Task: Retrieve reading from snow_depth whose depth is found in pressure records where type matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="type", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017432
train
v3
Sensor network script: Node: humidity | code: gst | fields: unit, type, level, depth Sensor: visibility | fields: type, unit, level, lon Task: Retrieve lat from humidity with value above the SUM(depth) of visibility readings sharing the same type. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="type"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017433
train
v3
Sensor network script: Node: uv_index | code: clr | fields: level, unit, lon, value Sensor: soil_moisture | fields: depth, lat, ts, level Task: Get depth from uv_index where value exceeds the minimum reading from soil_moisture for the same depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017434
train
v2
Sensor network script: Node: uv_index | code: ref | fields: lat, ts, qc, depth Sensor: turbidity | fields: level, ts, lon, type Task: Fetch depth from uv_index that have at least one corresponding turbidity measurement for the same depth. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017435
train
v3
Sensor network script: Node: air_quality | code: prt | fields: qc, level, depth, unit Sensor: snow_depth | fields: ts, lon, depth, value Task: Get lat from air_quality where reading exceeds the minimum depth from snow_depth for the same unit. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("snow_depth", code="snw"), match="unit"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017436
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: unit, reading, lat, lon Sensor: temperature | fields: unit, reading, level, depth Task: Get depth from soil_moisture where a corresponding entry exists in temperature with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017437
train
v2
Sensor network script: Node: humidity | code: hub | fields: value, reading, type, qc Sensor: soil_moisture | fields: depth, lat, type, lon Task: Fetch lat from humidity that have at least one corresponding soil_moisture measurement for the same type. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lat", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017438
train
v1
Sensor network script: Node: drought_index | code: prt | fields: level, ts, qc, lat Sensor: cloud_cover | fields: lat, lon, unit, reading Task: Get lat from drought_index where unit appears in cloud_cover readings with matching unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017439
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: type, reading, unit, lat Sensor: sunlight | fields: unit, type, lon, value Task: Get value from cloud_cover where type appears in sunlight readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="qc", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017440
train
v1
Sensor network script: Node: temperature | code: mst | fields: lon, ts, qc, depth Sensor: snow_depth | fields: value, depth, unit, reading Task: Fetch lat from temperature where type exists in snow_depth sensor data for the same ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="ts", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017441
train
v3
Sensor network script: Node: dew_point | code: mst | fields: type, ts, unit, reading Sensor: visibility | fields: unit, depth, lon, type Task: Retrieve lat from dew_point with reading above the MAX(value) of visibility readings sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("visibility", code="clr"), match="depth"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017442
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: reading, ts, type, qc Sensor: evaporation | fields: lat, lon, reading, qc Task: Retrieve reading from soil_moisture with value above the AVG(reading) of evaporation readings sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("evaporation", code="evp"), match="type"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017443
train
v3
Sensor network script: Node: turbidity | code: ref | fields: level, reading, lat, qc Sensor: cloud_cover | fields: type, lon, level, value Task: Retrieve value from turbidity with depth above the MIN(value) of cloud_cover readings sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017444
train
v3
Sensor network script: Node: lightning | code: stn | fields: qc, type, ts, level Sensor: pressure | fields: qc, type, unit, lon Task: Get level from lightning where reading exceeds the count of reading from pressure for the same unit. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("pressure", code="mbl"), match="unit"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017445
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: type, reading, ts, lon Sensor: air_quality | fields: level, qc, unit, reading Task: Fetch depth from snow_depth where value is greater than the count of of depth in air_quality for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="qc"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017446
train
v2
Sensor network script: Node: dew_point | code: clr | fields: lon, ts, value, lat Sensor: drought_index | fields: level, reading, value, type Task: Fetch level from dew_point that have at least one corresponding drought_index measurement for the same ts. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017447
train
v3
Sensor network script: Node: sunlight | code: ref | fields: lat, ts, lon, depth Sensor: wind_speed | fields: depth, value, qc, lon Task: Fetch reading from sunlight where reading is greater than the count of of depth in wind_speed for matching unit. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="unit"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017448
train
v3
Sensor network script: Node: lightning | code: hub | fields: type, unit, level, reading Sensor: visibility | fields: reading, lon, level, ts Task: Retrieve depth from lightning with reading above the SUM(reading) of visibility readings sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="depth"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017449
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: reading, value, type, ts Sensor: uv_index | fields: lat, value, depth, unit Task: Get lat from cloud_cover where reading exceeds the count of value from uv_index for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("uv_index", code="flx"), match="ts"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017450
train
v3
Sensor network script: Node: humidity | code: ref | fields: value, qc, level, ts Sensor: temperature | fields: lat, depth, unit, type Task: Get reading from humidity where depth exceeds the minimum reading from temperature for the same ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("temperature", code="thr"), match="ts"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017451
train
v3
Sensor network script: Node: drought_index | code: ref | fields: ts, lat, type, qc Sensor: uv_index | fields: type, unit, ts, reading Task: Fetch depth from drought_index where value is greater than the count of of reading in uv_index for matching depth. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("uv_index", code="flx"), match="depth"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017452
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: ts, unit, lon, value Sensor: visibility | fields: qc, lon, reading, type Task: Retrieve depth from cloud_cover that have at least one matching reading in visibility sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017453
train
v1
Sensor network script: Node: pressure | code: stn | fields: level, reading, ts, unit Sensor: drought_index | fields: qc, reading, lat, ts Task: Fetch reading from pressure where depth exists in drought_index sensor data for the same qc. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="qc", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017454
train
v2
Sensor network script: Node: visibility | code: ref | fields: type, qc, level, lon Sensor: snow_depth | fields: lat, type, reading, lon Task: Fetch level from visibility that have at least one corresponding snow_depth measurement for the same qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="level", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "level", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017455
train
v3
Sensor network script: Node: temperature | code: prt | fields: type, qc, lon, level Sensor: evaporation | fields: qc, unit, level, depth Task: Retrieve value from temperature with value above the COUNT(value) of evaporation readings sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("evaporation", code="evp"), match="ts"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017456
train
v1
Sensor network script: Node: sunlight | code: thr | fields: level, lon, lat, ts Sensor: cloud_cover | fields: ts, reading, value, depth Task: Get lat from sunlight where depth appears in cloud_cover readings with matching type. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="type", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017457
train
v3
Sensor network script: Node: uv_index | code: hub | fields: depth, qc, lat, ts Sensor: visibility | fields: qc, value, unit, level Task: Get depth from uv_index where reading exceeds the total value from visibility for the same unit. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="unit"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017458
train
v1
Sensor network script: Node: drought_index | code: gst | fields: qc, type, value, depth Sensor: evaporation | fields: type, reading, ts, value Task: Get lat from drought_index where qc appears in evaporation readings with matching qc. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="qc", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017459
train
v1
Sensor network script: Node: visibility | code: stn | fields: type, depth, ts, value Sensor: soil_moisture | fields: value, lat, qc, lon Task: Retrieve value from visibility whose type is found in soil_moisture records where qc matches the outer node. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="value", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017460
train
v1
Sensor network script: Node: temperature | code: prt | fields: unit, reading, ts, qc Sensor: snow_depth | fields: lon, qc, type, value Task: Get depth from temperature where unit appears in snow_depth readings with matching qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="qc", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017461
train
v2
Sensor network script: Node: air_quality | code: hub | fields: reading, depth, type, level Sensor: frost | fields: depth, lat, ts, level Task: Fetch level from air_quality that have at least one corresponding frost measurement for the same depth. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "level", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017462
train
v1
Sensor network script: Node: frost | code: hub | fields: unit, type, lat, ts Sensor: soil_moisture | fields: value, depth, type, lat Task: Retrieve lat from frost whose qc is found in soil_moisture records where type matches the outer node. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="type", ), output="lat", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017463
train
v2
Sensor network script: Node: evaporation | code: prt | fields: level, lon, lat, unit Sensor: drought_index | fields: unit, value, lat, type Task: Fetch value from evaporation that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "value", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017464
train
v2
Sensor network script: Node: turbidity | code: ref | fields: lon, level, ts, depth Sensor: humidity | fields: lat, reading, type, lon Task: Fetch lon from turbidity that have at least one corresponding humidity measurement for the same depth. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017465
train
v3
Sensor network script: Node: drought_index | code: mst | fields: value, level, qc, depth Sensor: dew_point | fields: unit, value, type, lon Task: Fetch reading from drought_index where depth is greater than the average of depth in dew_point for matching unit. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("dew_point", code="cnd"), match="unit"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017466
train
v2
Sensor network script: Node: turbidity | code: clr | fields: level, ts, unit, lat Sensor: air_quality | fields: ts, level, reading, qc Task: Retrieve depth from turbidity that have at least one matching reading in air_quality sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017467
train
v2
Sensor network script: Node: visibility | code: mst | fields: reading, type, lat, depth Sensor: evaporation | fields: depth, reading, ts, qc Task: Get level from visibility where a corresponding entry exists in evaporation with the same depth. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="level", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "level", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017468
train
v2
Sensor network script: Node: rainfall | code: gst | fields: lat, type, ts, level Sensor: pressure | fields: type, ts, qc, value Task: Fetch depth from rainfall that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017469
train
v2
Sensor network script: Node: visibility | code: stn | fields: qc, type, lon, value Sensor: snow_depth | fields: reading, type, depth, qc Task: Retrieve value from visibility that have at least one matching reading in snow_depth sharing the same type. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "value", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017470
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: lat, depth, unit, level Sensor: air_quality | fields: lon, lat, qc, value Task: Get lat from soil_moisture where depth exceeds the count of depth from air_quality for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="ts"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017471
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: level, value, unit, ts Sensor: turbidity | fields: qc, level, value, depth Task: Get reading from wind_speed where type appears in turbidity readings with matching ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="ts", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017472
train
v3
Sensor network script: Node: evaporation | code: gst | fields: unit, level, qc, value Sensor: turbidity | fields: depth, lon, reading, qc Task: Retrieve lon from evaporation with reading above the MIN(value) of turbidity readings sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("turbidity", code="ftu"), match="type"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017473
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: lon, level, lat, depth Sensor: humidity | fields: value, level, type, reading Task: Fetch reading from wind_speed where reading is greater than the count of of reading in humidity for matching depth. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="depth"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017474
train
v2
Sensor network script: Node: turbidity | code: ref | fields: unit, type, value, level Sensor: temperature | fields: level, qc, unit, type Task: Get value from turbidity where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017475
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: value, level, lon, ts Sensor: turbidity | fields: level, reading, unit, lat Task: Fetch value from soil_moisture where ts exists in turbidity sensor data for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="type", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017476
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: level, qc, lat, unit Sensor: visibility | fields: ts, depth, lat, qc Task: Retrieve lon from wind_speed that have at least one matching reading in visibility sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lon", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017477
train
v1
Sensor network script: Node: air_quality | code: stn | fields: ts, level, lon, reading Sensor: evaporation | fields: depth, type, reading, lon Task: Fetch depth from air_quality where unit exists in evaporation sensor data for the same qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="qc", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017478
train
v2
Sensor network script: Node: air_quality | code: mst | fields: ts, type, qc, lat Sensor: lightning | fields: ts, depth, value, unit Task: Fetch level from air_quality that have at least one corresponding lightning measurement for the same depth. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017479
train
v3
Sensor network script: Node: drought_index | code: stn | fields: qc, lon, type, lat Sensor: evaporation | fields: qc, depth, ts, unit Task: Retrieve lon from drought_index with depth above the COUNT(reading) of evaporation readings sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("evaporation", code="evp"), match="ts"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017480
train
v1
Sensor network script: Node: lightning | code: mst | fields: depth, unit, ts, lat Sensor: snow_depth | fields: lon, qc, lat, ts Task: Get lon from lightning where qc appears in snow_depth readings with matching qc. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017481
train
v1
Sensor network script: Node: air_quality | code: prt | fields: unit, reading, depth, type Sensor: dew_point | fields: unit, type, ts, value Task: Retrieve lat from air_quality whose qc is found in dew_point records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="ts", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017482
train
v2
Sensor network script: Node: humidity | code: hub | fields: depth, lat, unit, qc Sensor: turbidity | fields: depth, ts, value, level Task: Get reading from humidity where a corresponding entry exists in turbidity with the same ts. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "reading", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017483
train
v3
Sensor network script: Node: pressure | code: clr | fields: depth, qc, level, unit Sensor: wind_speed | fields: ts, reading, level, type Task: Retrieve level from pressure with value above the COUNT(depth) of wind_speed readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017484
train
v3
Sensor network script: Node: dew_point | code: prt | fields: ts, depth, unit, lat Sensor: frost | fields: depth, ts, unit, value Task: Retrieve lon from dew_point with reading above the COUNT(reading) of frost readings sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="depth"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017485
train
v2
Sensor network script: Node: turbidity | code: hub | fields: value, lat, reading, depth Sensor: rainfall | fields: qc, lon, reading, unit Task: Get lat from turbidity where a corresponding entry exists in rainfall with the same depth. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017486
train
v1
Sensor network script: Node: lightning | code: ref | fields: lat, value, depth, ts Sensor: drought_index | fields: unit, level, type, reading Task: Get lon from lightning where qc appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="ts", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017487
train
v3
Sensor network script: Node: air_quality | code: gst | fields: lat, value, depth, level Sensor: sunlight | fields: depth, ts, value, lat Task: Fetch lon from air_quality where value is greater than the maximum of reading in sunlight for matching type. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", 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", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017488
train
v3
Sensor network script: Node: humidity | code: stn | fields: value, qc, level, unit Sensor: drought_index | fields: type, ts, depth, lat Task: Retrieve level from humidity with reading above the SUM(depth) of drought_index readings sharing the same type. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("drought_index", code="drt"), match="type"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017489
train
v3
Sensor network script: Node: uv_index | code: ref | fields: lat, type, reading, unit Sensor: cloud_cover | fields: reading, value, level, qc Task: Retrieve depth from uv_index with depth above the MAX(reading) of cloud_cover readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "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_017490
train
v3
Sensor network script: Node: air_quality | code: mst | fields: reading, type, qc, value Sensor: soil_moisture | fields: unit, value, level, depth Task: Retrieve level from air_quality with value above the SUM(reading) of soil_moisture readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017491
train
v2
Sensor network script: Node: dew_point | code: clr | fields: unit, depth, ts, value Sensor: temperature | fields: unit, type, qc, ts Task: Fetch value from dew_point that have at least one corresponding temperature measurement for the same unit. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "value", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017492
train
v1
Sensor network script: Node: humidity | code: mst | fields: depth, lat, lon, level Sensor: cloud_cover | fields: lon, level, lat, value Task: Retrieve value from humidity whose depth is found in cloud_cover records where qc matches the outer node. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="value", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017493
train
v3
Sensor network script: Node: rainfall | code: stn | fields: value, unit, depth, type Sensor: drought_index | fields: lat, level, value, unit Task: Get level from rainfall where reading exceeds the total reading from drought_index for the same qc. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("drought_index", code="drt"), match="qc"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017494
train
v1
Sensor network script: Node: turbidity | code: thr | fields: level, ts, value, reading Sensor: drought_index | fields: reading, value, lat, ts Task: Retrieve level from turbidity whose depth is found in drought_index records where type matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "level", "filter_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017495
train
v2
Sensor network script: Node: air_quality | code: hub | fields: ts, qc, depth, type Sensor: lightning | fields: value, depth, qc, ts Task: Retrieve lon from air_quality that have at least one matching reading in lightning sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017496
train
v1
Sensor network script: Node: evaporation | code: mst | fields: unit, lat, ts, value Sensor: sunlight | fields: lon, depth, level, lat Task: Fetch depth from evaporation where type exists in sunlight sensor data for the same unit. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="unit", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017497
train
v3
Sensor network script: Node: dew_point | code: mst | fields: type, lon, reading, lat Sensor: pressure | fields: reading, type, ts, value Task: Fetch level from dew_point where reading is greater than the minimum of reading in pressure for matching unit. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="unit"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017498
train
v3
Sensor network script: Node: turbidity | code: thr | fields: level, type, ts, value Sensor: snow_depth | fields: lat, lon, type, ts Task: Retrieve lon from turbidity with reading above the COUNT(value) of snow_depth readings sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("snow_depth", code="snw"), match="qc"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017499
train