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: humidity | code: stn | fields: lon, type, depth, qc Sensor: evaporation | fields: value, lon, depth, ts Task: Retrieve lon from humidity that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lon", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061500
train
v3
Sensor network script: Node: drought_index | code: clr | fields: depth, unit, value, reading Sensor: dew_point | fields: level, type, value, ts Task: Retrieve depth from drought_index with value above the AVG(reading) of dew_point readings sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("dew_point", code="cnd"), match="qc"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061501
train
v3
Sensor network script: Node: frost | code: clr | fields: lon, level, depth, unit Sensor: dew_point | fields: ts, lat, unit, level Task: Get level from frost where reading exceeds the total value from dew_point for the same qc. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("dew_point", code="cnd"), match="qc"), ), output="level", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061502
train
v3
Sensor network script: Node: temperature | code: mst | fields: lon, lat, qc, unit Sensor: visibility | fields: qc, level, value, ts Task: Get lat from temperature where depth exceeds the count of depth from visibility for the same ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("visibility", code="clr"), match="ts"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "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_061503
train
v2
Sensor network script: Node: evaporation | code: hub | fields: type, depth, unit, lat Sensor: soil_moisture | fields: value, level, depth, qc Task: Retrieve depth from evaporation that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061504
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: depth, unit, ts, value Sensor: evaporation | fields: ts, reading, qc, value Task: Retrieve level from snow_depth whose ts is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="ts", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061505
train
v1
Sensor network script: Node: turbidity | code: ref | fields: depth, level, unit, lon Sensor: pressure | fields: lat, type, ts, value Task: Get lon from turbidity where unit appears in pressure readings with matching qc. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="qc", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061506
train
v2
Sensor network script: Node: uv_index | code: gst | fields: reading, unit, lon, lat Sensor: pressure | fields: qc, depth, type, ts Task: Get value from uv_index where a corresponding entry exists in pressure with the same unit. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061507
train
v1
Sensor network script: Node: drought_index | code: hub | fields: value, type, depth, level Sensor: visibility | fields: value, depth, lon, lat Task: Fetch lat from drought_index where type exists in visibility sensor data for the same ts. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="ts", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061508
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: ts, lat, lon, qc Sensor: sunlight | fields: type, lon, qc, depth Task: Fetch level from wind_speed where value is greater than the count of of value in sunlight for matching type. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("sunlight", code="brt"), match="type"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061509
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: type, value, depth, ts Sensor: sunlight | fields: lon, lat, level, type Task: Retrieve lon from cloud_cover that have at least one matching reading in sunlight sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lon", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061510
train
v2
Sensor network script: Node: lightning | code: hub | fields: ts, unit, depth, level Sensor: dew_point | fields: unit, reading, type, level Task: Retrieve depth from lightning that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061511
train
v2
Sensor network script: Node: uv_index | code: clr | fields: type, reading, qc, value Sensor: cloud_cover | fields: qc, lon, depth, level Task: Get depth from uv_index where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061512
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: value, reading, depth, lat Sensor: rainfall | fields: type, lon, reading, unit Task: Fetch level from wind_speed where unit exists in rainfall sensor data for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="ts", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061513
train
v3
Sensor network script: Node: air_quality | code: gst | fields: qc, reading, value, depth Sensor: soil_moisture | fields: ts, type, depth, reading Task: Get lat from air_quality where value exceeds the minimum value from soil_moisture for the same type. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061514
train
v2
Sensor network script: Node: sunlight | code: prt | fields: reading, lat, qc, type Sensor: rainfall | fields: type, ts, unit, value Task: Fetch value from sunlight that have at least one corresponding rainfall measurement for the same qc. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "value", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061515
train
v2
Sensor network script: Node: pressure | code: prt | fields: ts, value, depth, reading Sensor: temperature | fields: ts, level, depth, lat Task: Fetch reading from pressure that have at least one corresponding temperature measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "reading", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061516
train
v1
Sensor network script: Node: sunlight | code: stn | fields: type, unit, lat, reading Sensor: dew_point | fields: value, qc, lon, lat Task: Retrieve lat from sunlight whose unit is found in dew_point records where ts matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="ts", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061517
train
v1
Sensor network script: Node: sunlight | code: stn | fields: value, reading, level, ts Sensor: drought_index | fields: value, ts, type, lat Task: Fetch reading from sunlight where depth exists in drought_index sensor data for the same depth. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="depth", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061518
train
v1
Sensor network script: Node: temperature | code: hub | fields: level, ts, qc, value Sensor: frost | fields: unit, value, type, depth Task: Fetch lat from temperature where unit exists in frost sensor data for the same qc. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="qc", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061519
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: reading, level, qc, lon Sensor: air_quality | fields: ts, lon, reading, level Task: Retrieve depth from soil_moisture that have at least one matching reading in air_quality sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061520
train
v2
Sensor network script: Node: sunlight | code: gst | fields: depth, qc, reading, type Sensor: drought_index | fields: depth, ts, reading, value Task: Fetch reading from sunlight that have at least one corresponding drought_index measurement for the same ts. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061521
train
v2
Sensor network script: Node: turbidity | code: clr | fields: level, value, depth, reading Sensor: drought_index | fields: depth, ts, unit, type Task: Fetch reading from turbidity that have at least one corresponding drought_index measurement for the same depth. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061522
train
v2
Sensor network script: Node: air_quality | code: hub | fields: ts, level, type, lon Sensor: sunlight | fields: lat, lon, value, unit Task: Fetch value from air_quality that have at least one corresponding sunlight measurement for the same ts. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "value", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061523
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: depth, value, qc, reading Sensor: frost | fields: lat, value, depth, type Task: Fetch reading from snow_depth where qc exists in frost sensor data for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061524
train
v3
Sensor network script: Node: lightning | code: clr | fields: lat, lon, level, depth Sensor: sunlight | fields: ts, reading, depth, value Task: Get lon from lightning where reading exceeds the average depth from sunlight for the same type. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("sunlight", code="brt"), match="type"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061525
train
v3
Sensor network script: Node: lightning | code: stn | fields: depth, lat, lon, level Sensor: uv_index | fields: lon, reading, type, qc Task: Retrieve lon from lightning with depth above the MIN(depth) of uv_index readings sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("uv_index", code="flx"), match="qc"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061526
train
v1
Sensor network script: Node: dew_point | code: gst | fields: lat, qc, type, depth Sensor: visibility | fields: value, lon, unit, type Task: Fetch reading from dew_point where type exists in visibility sensor data for the same ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="ts", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061527
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: ts, unit, lat, reading Sensor: evaporation | fields: lat, type, level, reading Task: Fetch lon from wind_speed where value is greater than the maximum of value in evaporation for matching qc. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="qc"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061528
train
v1
Sensor network script: Node: turbidity | code: thr | fields: reading, type, qc, depth Sensor: lightning | fields: type, ts, value, depth Task: Fetch value from turbidity where depth exists in lightning sensor data for the same ts. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="ts", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061529
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: qc, lon, unit, lat Sensor: sunlight | fields: ts, lon, value, level Task: Get reading from soil_moisture where unit appears in sunlight readings with matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="ts", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061530
train
v1
Sensor network script: Node: turbidity | code: gst | fields: level, lat, type, unit Sensor: humidity | fields: qc, reading, value, depth Task: Fetch level from turbidity where qc exists in humidity sensor data for the same ts. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061531
train
v1
Sensor network script: Node: visibility | code: hub | fields: lon, ts, unit, qc Sensor: turbidity | fields: type, lat, ts, reading Task: Get depth from visibility where ts appears in turbidity readings with matching depth. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="depth", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061532
train
v3
Sensor network script: Node: drought_index | code: clr | fields: lon, reading, lat, ts Sensor: dew_point | fields: value, ts, reading, depth Task: Fetch level from drought_index where reading is greater than the minimum of reading in dew_point for matching unit. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("dew_point", code="cnd"), match="unit"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061533
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: unit, lat, qc, value Sensor: turbidity | fields: level, reading, value, type Task: Fetch reading from soil_moisture that have at least one corresponding turbidity measurement for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "reading", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061534
train
v3
Sensor network script: Node: air_quality | code: stn | fields: value, unit, qc, level Sensor: visibility | fields: reading, ts, value, lat Task: Get lon from air_quality where reading exceeds the total reading from visibility for the same qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="qc"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061535
train
v2
Sensor network script: Node: dew_point | code: hub | fields: depth, value, reading, lon Sensor: air_quality | fields: level, value, type, qc Task: Retrieve value from dew_point that have at least one matching reading in air_quality sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061536
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: unit, depth, qc, reading Sensor: sunlight | fields: lon, qc, ts, reading Task: Get lon from wind_speed where a corresponding entry exists in sunlight with the same unit. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061537
train
v3
Sensor network script: Node: drought_index | code: ref | fields: qc, ts, value, lat Sensor: dew_point | fields: qc, value, lon, type Task: Retrieve reading from drought_index with depth above the SUM(depth) of dew_point readings sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("dew_point", code="cnd"), match="unit"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061538
train
v2
Sensor network script: Node: pressure | code: thr | fields: qc, lat, lon, reading Sensor: snow_depth | fields: ts, type, depth, reading Task: Retrieve depth from pressure that have at least one matching reading in snow_depth sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061539
train
v2
Sensor network script: Node: rainfall | code: prt | fields: depth, type, lat, reading Sensor: snow_depth | fields: qc, type, value, ts Task: Retrieve lon from rainfall that have at least one matching reading in snow_depth sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061540
train
v2
Sensor network script: Node: temperature | code: thr | fields: level, type, depth, value Sensor: frost | fields: qc, lon, lat, type Task: Fetch depth from temperature that have at least one corresponding frost measurement for the same qc. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061541
train
v1
Sensor network script: Node: turbidity | code: clr | fields: reading, level, lon, unit Sensor: drought_index | fields: level, type, value, lon Task: Retrieve reading from turbidity whose depth is found in drought_index records where qc matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="qc", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061542
train
v3
Sensor network script: Node: drought_index | code: hub | fields: value, level, type, unit Sensor: sunlight | fields: depth, value, type, unit Task: Retrieve level from drought_index with value above the COUNT(depth) of sunlight readings sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061543
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: ts, lat, depth, value Sensor: drought_index | fields: type, level, reading, unit Task: Fetch reading from cloud_cover that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061544
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: qc, depth, reading, type Sensor: humidity | fields: ts, level, value, depth Task: Fetch value from soil_moisture that have at least one corresponding humidity measurement for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061545
train
v2
Sensor network script: Node: drought_index | code: prt | fields: type, lat, depth, level Sensor: humidity | fields: type, unit, level, qc Task: Fetch depth from drought_index that have at least one corresponding humidity measurement for the same qc. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061546
train
v2
Sensor network script: Node: lightning | code: stn | fields: value, ts, qc, type Sensor: temperature | fields: type, value, qc, unit Task: Get value from lightning where a corresponding entry exists in temperature with the same qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="value", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "value", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061547
train
v2
Sensor network script: Node: air_quality | code: mst | fields: level, value, lat, unit Sensor: soil_moisture | fields: depth, ts, value, unit Task: Retrieve depth from air_quality that have at least one matching reading in soil_moisture sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061548
train
v3
Sensor network script: Node: drought_index | code: mst | fields: depth, reading, lat, qc Sensor: wind_speed | fields: ts, qc, type, lat Task: Get level from drought_index where depth exceeds the maximum depth from wind_speed for the same ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061549
train
v2
Sensor network script: Node: evaporation | code: ref | fields: unit, reading, ts, level Sensor: lightning | fields: unit, ts, lat, reading Task: Fetch value from evaporation that have at least one corresponding lightning measurement for the same depth. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "value", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061550
train
v1
Sensor network script: Node: frost | code: gst | fields: ts, qc, unit, lon Sensor: uv_index | fields: qc, reading, type, unit Task: Fetch value from frost where qc exists in uv_index sensor data for the same type. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="type", ), output="value", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061551
train
v2
Sensor network script: Node: air_quality | code: clr | fields: reading, lat, lon, depth Sensor: temperature | fields: depth, lat, reading, ts Task: Get level from air_quality where a corresponding entry exists in temperature with the same qc. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "level", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061552
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: lon, unit, type, reading Sensor: turbidity | fields: lat, level, unit, qc Task: Retrieve lon from wind_speed with reading above the MAX(depth) of turbidity readings sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("turbidity", code="ftu"), match="unit"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061553
train
v3
Sensor network script: Node: lightning | code: stn | fields: level, type, reading, value Sensor: dew_point | fields: lat, ts, value, unit Task: Fetch reading from lightning where value is greater than the minimum of depth in dew_point for matching type. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("dew_point", code="cnd"), match="type"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061554
train
v2
Sensor network script: Node: lightning | code: ref | fields: value, depth, ts, reading Sensor: wind_speed | fields: lat, unit, type, lon Task: Fetch reading from lightning that have at least one corresponding wind_speed measurement for the same unit. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "reading", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061555
train
v2
Sensor network script: Node: sunlight | code: gst | fields: value, reading, type, lon Sensor: air_quality | fields: qc, reading, value, lon Task: Fetch level from sunlight that have at least one corresponding air_quality measurement for the same unit. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "level", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061556
train
v2
Sensor network script: Node: humidity | code: ref | fields: qc, lat, level, unit Sensor: rainfall | fields: depth, lon, type, unit Task: Get level from humidity where a corresponding entry exists in rainfall with the same unit. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="level", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "level", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061557
train
v2
Sensor network script: Node: dew_point | code: mst | fields: lat, type, unit, lon Sensor: uv_index | fields: ts, level, lat, qc Task: Fetch lon from dew_point that have at least one corresponding uv_index measurement for the same qc. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061558
train
v1
Sensor network script: Node: lightning | code: clr | fields: unit, depth, value, reading Sensor: frost | fields: value, lon, lat, type Task: Fetch reading from lightning where qc exists in frost sensor data for the same unit. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="unit", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061559
train
v2
Sensor network script: Node: temperature | code: clr | fields: depth, ts, reading, qc Sensor: humidity | fields: ts, qc, unit, value Task: Retrieve value from temperature that have at least one matching reading in humidity sharing the same depth. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="value", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061560
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: ts, value, reading, lat Sensor: dew_point | fields: type, lon, ts, depth Task: Fetch value from soil_moisture where ts exists in dew_point sensor data for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="type", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061561
train
v1
Sensor network script: Node: visibility | code: stn | fields: level, reading, lat, value Sensor: sunlight | fields: depth, value, lat, lon Task: Get lat from visibility where ts appears in sunlight readings with matching unit. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="unit", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061562
train
v3
Sensor network script: Node: lightning | code: stn | fields: ts, reading, depth, level Sensor: pressure | fields: ts, lon, level, value Task: Get value from lightning where value exceeds the maximum depth from pressure for the same unit. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("pressure", code="mbl"), match="unit"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061563
train
v1
Sensor network script: Node: dew_point | code: hub | fields: lon, ts, lat, unit Sensor: cloud_cover | fields: unit, qc, type, depth Task: Get value from dew_point where qc appears in cloud_cover readings with matching ts. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061564
train
v2
Sensor network script: Node: sunlight | code: hub | fields: unit, reading, qc, value Sensor: air_quality | fields: reading, qc, unit, level Task: Get reading from sunlight where a corresponding entry exists in air_quality with the same unit. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061565
train
v2
Sensor network script: Node: uv_index | code: thr | fields: level, ts, reading, type Sensor: pressure | fields: level, value, ts, qc Task: Get reading from uv_index where a corresponding entry exists in pressure with the same type. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "reading", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061566
train
v1
Sensor network script: Node: drought_index | code: stn | fields: depth, reading, lon, qc Sensor: dew_point | fields: level, unit, qc, lat Task: Fetch level from drought_index where depth exists in dew_point sensor data for the same unit. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="unit", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061567
train
v2
Sensor network script: Node: pressure | code: stn | fields: reading, level, lat, lon Sensor: lightning | fields: type, value, level, unit Task: Retrieve lon from pressure that have at least one matching reading in lightning sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lon", )
{ "outer_table": "pressure", "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_061568
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: ts, level, depth, lat Sensor: rainfall | fields: ts, depth, qc, lon Task: Fetch lon from soil_moisture that have at least one corresponding rainfall measurement for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061569
train
v1
Sensor network script: Node: air_quality | code: prt | fields: depth, lon, value, lat Sensor: rainfall | fields: lat, unit, level, qc Task: Retrieve reading from air_quality whose depth is found in rainfall records where depth matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="depth", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061570
train
v3
Sensor network script: Node: temperature | code: mst | fields: lat, depth, qc, value Sensor: visibility | fields: lat, unit, qc, ts Task: Retrieve reading from temperature with reading above the AVG(value) of visibility readings sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="unit"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061571
train
v2
Sensor network script: Node: rainfall | code: thr | fields: depth, reading, type, unit Sensor: drought_index | fields: value, lon, unit, ts Task: Fetch lon from rainfall that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lon", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061572
train
v2
Sensor network script: Node: turbidity | code: ref | fields: ts, value, unit, reading Sensor: sunlight | fields: unit, ts, depth, value Task: Fetch reading from turbidity that have at least one corresponding sunlight measurement for the same ts. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "reading", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061573
train
v2
Sensor network script: Node: turbidity | code: mst | fields: type, value, qc, reading Sensor: uv_index | fields: depth, value, lon, type Task: Get level from turbidity where a corresponding entry exists in uv_index with the same ts. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "level", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061574
train
v3
Sensor network script: Node: visibility | code: mst | fields: reading, level, lat, unit Sensor: snow_depth | fields: reading, type, value, unit Task: Retrieve level from visibility with depth above the MAX(value) of snow_depth readings sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("snow_depth", code="snw"), match="qc"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061575
train
v1
Sensor network script: Node: pressure | code: prt | fields: depth, qc, type, lat Sensor: rainfall | fields: lat, depth, type, level Task: Fetch reading from pressure where unit exists in rainfall sensor data for the same type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061576
train
v3
Sensor network script: Node: sunlight | code: hub | fields: value, lat, level, unit Sensor: turbidity | fields: level, depth, qc, value Task: Fetch reading from sunlight where value is greater than the minimum of reading in turbidity for matching unit. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("turbidity", code="ftu"), match="unit"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061577
train
v2
Sensor network script: Node: dew_point | code: clr | fields: ts, unit, depth, reading Sensor: wind_speed | fields: level, ts, value, depth Task: Retrieve lon from dew_point that have at least one matching reading in wind_speed sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lon", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061578
train
v2
Sensor network script: Node: temperature | code: mst | fields: type, ts, reading, qc Sensor: sunlight | fields: qc, reading, lon, ts Task: Fetch level from temperature that have at least one corresponding sunlight measurement for the same type. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="level", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "level", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061579
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: type, level, reading, lon Sensor: dew_point | fields: value, depth, ts, lat Task: Get depth from wind_speed where unit appears in dew_point readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="depth", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061580
train
v2
Sensor network script: Node: rainfall | code: stn | fields: depth, qc, lon, level Sensor: uv_index | fields: qc, lon, unit, type Task: Retrieve reading from rainfall that have at least one matching reading in uv_index sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "reading", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061581
train
v2
Sensor network script: Node: temperature | code: hub | fields: qc, reading, value, ts Sensor: snow_depth | fields: value, ts, type, depth Task: Fetch lon from temperature that have at least one corresponding snow_depth measurement for the same depth. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061582
train
v1
Sensor network script: Node: dew_point | code: ref | fields: unit, qc, type, level Sensor: evaporation | fields: qc, type, depth, ts Task: Fetch lon from dew_point where qc exists in evaporation sensor data for the same qc. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="qc", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061583
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: unit, ts, depth, type Sensor: humidity | fields: value, reading, lon, depth Task: Get reading from cloud_cover where a corresponding entry exists in humidity with the same type. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "reading", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061584
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: qc, lat, value, depth Sensor: air_quality | fields: lon, value, level, ts Task: Fetch reading from cloud_cover where depth is greater than the maximum of depth in air_quality for matching type. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="type"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061585
train
v3
Sensor network script: Node: air_quality | code: ref | fields: lat, depth, type, qc Sensor: rainfall | fields: lon, reading, lat, type Task: Retrieve lat from air_quality with depth above the SUM(depth) of rainfall readings sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("rainfall", code="rnfl"), match="type"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061586
train
v3
Sensor network script: Node: humidity | code: ref | fields: ts, lat, type, depth Sensor: pressure | fields: lat, unit, level, depth Task: Fetch lat from humidity where depth is greater than the average of reading in pressure for matching type. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("pressure", code="mbl"), match="type"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061587
train
v1
Sensor network script: Node: frost | code: hub | fields: lon, lat, value, reading Sensor: uv_index | fields: type, lon, lat, qc Task: Get level from frost where qc appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="depth", ), output="level", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061588
train
v2
Sensor network script: Node: uv_index | code: stn | fields: qc, depth, reading, lon Sensor: soil_moisture | fields: level, unit, lat, lon Task: Fetch level from uv_index that have at least one corresponding soil_moisture measurement for the same qc. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "level", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061589
train
v3
Sensor network script: Node: drought_index | code: hub | fields: reading, level, lon, qc Sensor: dew_point | fields: qc, lat, value, ts Task: Fetch lat from drought_index where value is greater than the maximum of value in dew_point for matching qc. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("dew_point", code="cnd"), match="qc"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061590
train
v3
Sensor network script: Node: pressure | code: prt | fields: value, lat, depth, type Sensor: snow_depth | fields: type, reading, unit, lat Task: Retrieve value from pressure with depth above the SUM(value) of snow_depth readings sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("snow_depth", code="snw"), match="depth"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061591
train
v1
Sensor network script: Node: frost | code: prt | fields: unit, ts, lon, reading Sensor: uv_index | fields: lat, qc, depth, ts Task: Retrieve reading from frost whose unit is found in uv_index records where unit matches the outer node. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="unit", ), output="reading", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061592
train
v2
Sensor network script: Node: frost | code: mst | fields: lon, depth, level, ts Sensor: soil_moisture | fields: type, lon, level, reading Task: Fetch lon from frost that have at least one corresponding soil_moisture measurement for the same type. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="lon", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lon", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061593
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: level, lon, type, ts Sensor: humidity | fields: ts, qc, lat, value Task: Fetch lat from snow_depth where depth is greater than the total of depth in humidity for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("humidity", code="hgr"), match="qc"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061594
train
v2
Sensor network script: Node: lightning | code: thr | fields: unit, depth, reading, lon Sensor: wind_speed | fields: qc, reading, lat, unit Task: Retrieve lat from lightning that have at least one matching reading in wind_speed sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lat", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061595
train
v2
Sensor network script: Node: humidity | code: gst | fields: type, unit, reading, depth Sensor: drought_index | fields: qc, lat, ts, unit Task: Get lon from humidity where a corresponding entry exists in drought_index with the same unit. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061596
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: lon, depth, value, reading Sensor: dew_point | fields: value, qc, reading, level Task: Retrieve reading from soil_moisture with reading above the MIN(reading) of dew_point readings sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("dew_point", code="cnd"), match="unit"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061597
train
v1
Sensor network script: Node: visibility | code: gst | fields: depth, value, qc, type Sensor: sunlight | fields: depth, lat, lon, qc Task: Fetch lon from visibility where type exists in sunlight sensor data for the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="depth", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061598
train
v1
Sensor network script: Node: lightning | code: prt | fields: type, value, unit, depth Sensor: dew_point | fields: lon, qc, unit, level Task: Get depth from lightning where unit appears in dew_point readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="unit", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061599
train