variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v1
Sensor network script: Node: humidity | code: gst | fields: qc, lon, lat, reading Sensor: cloud_cover | fields: value, lat, qc, ts Task: Get lat from humidity where depth appears in cloud_cover readings with matching depth. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017500
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: value, depth, ts, qc Sensor: wind_speed | fields: value, lon, ts, lat Task: Get value from snow_depth where depth exceeds the maximum reading from wind_speed for the same type. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017501
train
v3
Sensor network script: Node: frost | code: hub | fields: unit, lat, depth, level Sensor: pressure | fields: level, unit, depth, lat Task: Retrieve lon from frost with reading above the MAX(value) of pressure readings sharing the same qc. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017502
train
v3
Sensor network script: Node: dew_point | code: ref | fields: value, qc, depth, lat Sensor: uv_index | fields: depth, type, qc, level Task: Get depth from dew_point where reading exceeds the maximum value from uv_index for the same unit. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="unit"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017503
train
v3
Sensor network script: Node: uv_index | code: prt | fields: value, qc, lon, level Sensor: pressure | fields: depth, lat, type, value Task: Fetch value from uv_index where reading is greater than the count of of depth in pressure for matching unit. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("pressure", code="mbl"), match="unit"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017504
train
v3
Sensor network script: Node: temperature | code: gst | fields: reading, ts, qc, value Sensor: evaporation | fields: ts, reading, type, level Task: Retrieve value from temperature with depth above the SUM(reading) of evaporation readings sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("evaporation", code="evp"), match="qc"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017505
train
v1
Sensor network script: Node: humidity | code: stn | fields: qc, reading, level, ts Sensor: wind_speed | fields: ts, lat, type, level Task: Fetch depth from humidity where unit exists in wind_speed sensor data for the same depth. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="depth", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017506
train
v1
Sensor network script: Node: dew_point | code: stn | fields: depth, type, level, lat Sensor: cloud_cover | fields: type, depth, value, level Task: Fetch lat from dew_point where depth exists in cloud_cover sensor data for the same ts. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017507
train
v1
Sensor network script: Node: pressure | code: ref | fields: lat, value, lon, ts Sensor: visibility | fields: lat, unit, depth, reading Task: Get value from pressure where depth appears in visibility readings with matching type. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="type", ), output="value", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017508
train
v3
Sensor network script: Node: visibility | code: prt | fields: type, depth, unit, lat Sensor: drought_index | fields: reading, type, unit, level Task: Retrieve value from visibility with reading above the COUNT(depth) of drought_index readings sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("drought_index", code="drt"), match="ts"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017509
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: qc, depth, unit, lat Sensor: dew_point | fields: ts, lat, lon, value Task: Retrieve value from cloud_cover with value above the MIN(depth) of dew_point readings sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("dew_point", code="cnd"), match="type"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017510
train
v2
Sensor network script: Node: lightning | code: gst | fields: reading, unit, qc, ts Sensor: snow_depth | fields: depth, qc, level, value Task: Fetch level from lightning that have at least one corresponding snow_depth measurement for the same ts. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="level", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017511
train
v3
Sensor network script: Node: drought_index | code: clr | fields: depth, value, reading, lat Sensor: sunlight | fields: qc, lat, unit, type Task: Get lon from drought_index where reading exceeds the maximum value from sunlight for the same type. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("sunlight", code="brt"), match="type"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017512
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: value, level, qc, depth Sensor: temperature | fields: lat, reading, type, depth Task: Fetch reading from soil_moisture that have at least one corresponding temperature measurement for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017513
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: qc, lon, ts, depth Sensor: humidity | fields: qc, type, reading, depth Task: Get lon from soil_moisture where a corresponding entry exists in humidity with the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017514
train
v1
Sensor network script: Node: frost | code: ref | fields: depth, qc, lat, lon Sensor: rainfall | fields: lat, reading, ts, depth Task: Fetch level from frost where unit exists in rainfall sensor data for the same unit. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="unit", ), output="level", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017515
train
v3
Sensor network script: Node: sunlight | code: ref | fields: reading, type, lon, qc Sensor: cloud_cover | fields: unit, lat, qc, level Task: Retrieve lon from sunlight with reading above the MIN(value) of cloud_cover readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017516
train
v3
Sensor network script: Node: sunlight | code: ref | fields: unit, lon, type, reading Sensor: snow_depth | fields: type, level, depth, reading Task: Retrieve lat from sunlight with value above the COUNT(value) of snow_depth readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("snow_depth", code="snw"), match="qc"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017517
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: ts, type, value, lat Sensor: pressure | fields: lon, unit, reading, type Task: Get level from soil_moisture where unit appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="ts", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017518
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: depth, lon, value, type Sensor: cloud_cover | fields: unit, value, lon, type Task: Get lat from wind_speed where a corresponding entry exists in cloud_cover with the same depth. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017519
train
v2
Sensor network script: Node: temperature | code: prt | fields: qc, lat, lon, depth Sensor: wind_speed | fields: reading, depth, value, type Task: Retrieve reading from temperature that have at least one matching reading in wind_speed sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "reading", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017520
train
v3
Sensor network script: Node: visibility | code: stn | fields: level, reading, lon, unit Sensor: humidity | fields: ts, level, lon, lat Task: Retrieve lat from visibility with reading above the SUM(value) of humidity readings sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("humidity", code="hgr"), match="unit"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017521
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: level, type, qc, reading Sensor: sunlight | fields: reading, level, ts, value Task: Retrieve level from snow_depth whose ts is found in sunlight records where unit matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="unit", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017522
train
v1
Sensor network script: Node: humidity | code: thr | fields: level, value, unit, ts Sensor: visibility | fields: value, lon, level, lat Task: Retrieve lon from humidity whose type is found in visibility records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017523
train
v3
Sensor network script: Node: visibility | code: hub | fields: lon, depth, value, level Sensor: soil_moisture | fields: lon, reading, lat, level Task: Get depth from visibility where value exceeds the count of value from soil_moisture for the same ts. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017524
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: qc, lat, ts, level Sensor: temperature | fields: level, lat, lon, value Task: Fetch value from snow_depth where reading is greater than the average of value in temperature for matching type. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("temperature", code="thr"), match="type"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017525
train
v1
Sensor network script: Node: frost | code: mst | fields: reading, depth, ts, value Sensor: drought_index | fields: depth, lat, type, ts Task: Fetch value from frost where qc exists in drought_index sensor data for the same qc. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="qc", ), output="value", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017526
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: depth, reading, type, lon Sensor: frost | fields: depth, lat, lon, reading Task: Retrieve lon from soil_moisture that have at least one matching reading in frost sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lon", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017527
train
v3
Sensor network script: Node: drought_index | code: clr | fields: value, unit, type, reading Sensor: rainfall | fields: type, depth, ts, unit Task: Retrieve value from drought_index with depth above the AVG(value) of rainfall readings sharing the same depth. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017528
train
v2
Sensor network script: Node: turbidity | code: thr | fields: lon, level, unit, value Sensor: wind_speed | fields: level, lat, ts, depth Task: Get lon from turbidity where a corresponding entry exists in wind_speed with the same unit. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017529
train
v2
Sensor network script: Node: frost | code: mst | fields: lon, depth, qc, ts Sensor: soil_moisture | fields: qc, value, ts, type Task: Fetch reading 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="reading", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "reading", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017530
train
v3
Sensor network script: Node: drought_index | code: ref | fields: type, reading, lat, lon Sensor: wind_speed | fields: reading, lat, depth, value Task: Retrieve value from drought_index with value above the MIN(reading) of wind_speed readings sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("wind_speed", code="gst"), match="qc"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017531
train
v1
Sensor network script: Node: pressure | code: stn | fields: type, qc, value, level Sensor: frost | fields: qc, level, type, depth Task: Retrieve reading from pressure whose depth is found in frost records where type matches the outer node. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017532
train
v3
Sensor network script: Node: evaporation | code: mst | fields: depth, lat, reading, unit Sensor: uv_index | fields: level, ts, depth, type Task: Retrieve level from evaporation with value above the SUM(value) of uv_index readings sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("uv_index", code="flx"), match="depth"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017533
train
v1
Sensor network script: Node: drought_index | code: clr | fields: ts, qc, value, lat Sensor: snow_depth | fields: type, value, depth, lat Task: Retrieve depth from drought_index whose ts is found in snow_depth records where ts matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017534
train
v2
Sensor network script: Node: air_quality | code: stn | fields: lon, depth, lat, reading Sensor: wind_speed | fields: type, unit, lat, lon Task: Fetch lon from air_quality that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lon", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017535
train
v2
Sensor network script: Node: rainfall | code: clr | fields: reading, unit, value, depth Sensor: drought_index | fields: lon, lat, ts, type Task: Get lon from rainfall where a corresponding entry exists in drought_index with the same type. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lon", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017536
train
v1
Sensor network script: Node: temperature | code: gst | fields: lon, depth, level, ts Sensor: sunlight | fields: lat, depth, level, type Task: Retrieve lat from temperature whose type is found in sunlight records where depth matches the outer node. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="depth", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lat", "filter_col": "type", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017537
train
v2
Sensor network script: Node: humidity | code: hub | fields: lat, reading, ts, type Sensor: frost | fields: unit, value, ts, lon Task: Retrieve depth from humidity that have at least one matching reading in frost sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017538
train
v3
Sensor network script: Node: evaporation | code: ref | fields: lon, unit, depth, lat Sensor: lightning | fields: depth, type, ts, qc Task: Retrieve depth from evaporation with reading above the SUM(reading) of lightning readings sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017539
train
v2
Sensor network script: Node: frost | code: gst | fields: value, unit, reading, ts Sensor: turbidity | fields: qc, lat, lon, ts Task: Fetch lon from frost that have at least one corresponding turbidity measurement for the same ts. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lon", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017540
train
v3
Sensor network script: Node: rainfall | code: hub | fields: lon, unit, depth, ts Sensor: sunlight | fields: depth, unit, ts, qc Task: Get lat from rainfall where reading exceeds the average reading from sunlight for the same ts. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("sunlight", code="brt"), match="ts"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017541
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: value, level, unit, depth Sensor: visibility | fields: value, depth, qc, reading Task: Get lon from soil_moisture where ts appears in visibility readings with matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="depth", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017542
train
v3
Sensor network script: Node: evaporation | code: stn | fields: depth, value, lat, lon Sensor: lightning | fields: value, ts, lon, level Task: Fetch lat from evaporation where depth is greater than the minimum of depth in lightning for matching depth. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("lightning", code="tnd"), match="depth"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017543
train
v3
Sensor network script: Node: frost | code: mst | fields: qc, unit, ts, depth Sensor: temperature | fields: lon, reading, value, level Task: Fetch value from frost where reading is greater than the average of depth in temperature for matching ts. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="ts"), ), output="value", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017544
train
v2
Sensor network script: Node: dew_point | code: gst | fields: ts, type, level, reading Sensor: turbidity | fields: lat, level, qc, value Task: Get level from dew_point where a corresponding entry exists in turbidity with the same depth. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "level", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017545
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: depth, value, ts, lat Sensor: snow_depth | fields: depth, level, type, unit Task: Retrieve reading from wind_speed whose qc is found in snow_depth records where qc matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="qc", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017546
train
v3
Sensor network script: Node: uv_index | code: gst | fields: value, reading, ts, lat Sensor: drought_index | fields: lat, lon, value, reading Task: Retrieve lon from uv_index with depth above the MAX(depth) of drought_index readings sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("drought_index", code="drt"), match="type"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017547
train
v3
Sensor network script: Node: rainfall | code: ref | fields: qc, type, lat, lon Sensor: visibility | fields: unit, depth, ts, reading Task: Retrieve value from rainfall with value above the MIN(reading) of visibility readings sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("visibility", code="clr"), match="unit"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017548
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: qc, type, ts, unit Sensor: drought_index | fields: ts, reading, type, value Task: Retrieve lat from snow_depth whose ts is found in drought_index records where type matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="type", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017549
train
v1
Sensor network script: Node: visibility | code: hub | fields: value, type, unit, qc Sensor: cloud_cover | fields: depth, lon, type, reading Task: Fetch lat from visibility where ts exists in cloud_cover sensor data for the same ts. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017550
train
v1
Sensor network script: Node: pressure | code: hub | fields: lat, type, depth, reading Sensor: soil_moisture | fields: reading, lon, ts, qc Task: Get lon from pressure where type appears in soil_moisture readings with matching type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="type", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017551
train
v2
Sensor network script: Node: sunlight | code: ref | fields: type, lon, lat, reading Sensor: uv_index | fields: type, unit, lon, value Task: Fetch lon from sunlight that have at least one corresponding uv_index measurement for the same type. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017552
train
v1
Sensor network script: Node: uv_index | code: hub | fields: ts, unit, value, lon Sensor: humidity | fields: level, lon, lat, value Task: Retrieve level from uv_index whose type is found in humidity records where depth matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="depth", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017553
train
v2
Sensor network script: Node: evaporation | code: hub | fields: depth, lon, value, qc Sensor: soil_moisture | fields: level, value, lon, type Task: Fetch lon from evaporation that have at least one corresponding soil_moisture measurement for the same qc. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017554
train
v3
Sensor network script: Node: pressure | code: thr | fields: reading, value, ts, depth Sensor: wind_speed | fields: type, value, lat, reading Task: Fetch lon from pressure where depth is greater than the count of of value in wind_speed for matching depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("wind_speed", code="gst"), match="depth"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017555
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: reading, value, qc, level Sensor: rainfall | fields: value, lat, reading, qc Task: Fetch lat from soil_moisture where reading is greater than the average of reading in rainfall for matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017556
train
v1
Sensor network script: Node: visibility | code: clr | fields: lon, level, reading, type Sensor: pressure | fields: lon, depth, reading, value Task: Get level from visibility where ts appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017557
train
v2
Sensor network script: Node: temperature | code: gst | fields: type, lon, reading, qc Sensor: air_quality | fields: unit, type, depth, qc Task: Retrieve depth from temperature that have at least one matching reading in air_quality sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017558
train
v2
Sensor network script: Node: temperature | code: stn | fields: value, type, depth, reading Sensor: visibility | fields: qc, lon, depth, lat Task: Fetch lon from temperature that have at least one corresponding visibility measurement for the same depth. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017559
train
v1
Sensor network script: Node: evaporation | code: prt | fields: lon, qc, unit, ts Sensor: drought_index | fields: unit, ts, lon, reading Task: Get reading from evaporation where depth appears in drought_index readings with matching type. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="type", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017560
train
v1
Sensor network script: Node: sunlight | code: stn | fields: reading, value, depth, lat Sensor: evaporation | fields: qc, depth, lon, reading Task: Get value from sunlight where ts appears in evaporation readings with matching type. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="type", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017561
train
v3
Sensor network script: Node: pressure | code: ref | fields: qc, type, reading, depth Sensor: humidity | fields: depth, reading, value, lon Task: Get value from pressure where value exceeds the minimum depth from humidity for the same qc. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("humidity", code="hgr"), match="qc"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017562
train
v1
Sensor network script: Node: temperature | code: stn | fields: type, lon, lat, unit Sensor: soil_moisture | fields: value, lat, ts, lon Task: Get lat from temperature where unit appears in soil_moisture readings with matching unit. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017563
train
v1
Sensor network script: Node: drought_index | code: mst | fields: reading, lat, value, ts Sensor: air_quality | fields: reading, unit, value, lat Task: Retrieve lat from drought_index whose depth is found in air_quality records where qc matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="qc", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017564
train
v1
Sensor network script: Node: uv_index | code: stn | fields: reading, qc, unit, type Sensor: soil_moisture | fields: depth, ts, reading, unit Task: Get lon from uv_index where qc appears in soil_moisture readings with matching type. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="type", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017565
train
v3
Sensor network script: Node: rainfall | code: stn | fields: unit, ts, lat, lon Sensor: evaporation | fields: ts, level, lat, qc Task: Fetch level from rainfall where depth is greater than the maximum of reading in evaporation for matching unit. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("evaporation", code="evp"), match="unit"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017566
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: reading, value, depth, lat Sensor: humidity | fields: lat, lon, qc, unit Task: Retrieve value from wind_speed with reading above the MAX(depth) of humidity readings sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("humidity", code="hgr"), match="depth"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017567
train
v1
Sensor network script: Node: cloud_cover | code: mst | fields: type, value, reading, qc Sensor: soil_moisture | fields: ts, depth, lat, type Task: Get depth from cloud_cover where unit appears in soil_moisture readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017568
train
v1
Sensor network script: Node: evaporation | code: clr | fields: ts, type, lat, depth Sensor: uv_index | fields: lon, depth, value, unit Task: Get lon from evaporation where type appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="depth", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017569
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: lat, value, type, unit Sensor: temperature | fields: lat, value, qc, level Task: Get value from snow_depth where type appears in temperature readings with matching qc. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="qc", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017570
train
v3
Sensor network script: Node: lightning | code: thr | fields: lat, qc, depth, unit Sensor: air_quality | fields: depth, level, type, reading Task: Fetch reading from lightning where reading is greater than the average of reading in air_quality for matching type. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("air_quality", code="prt"), match="type"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017571
train
v1
Sensor network script: Node: dew_point | code: mst | fields: depth, qc, ts, lon Sensor: drought_index | fields: qc, depth, lat, lon Task: Fetch reading from dew_point where type exists in drought_index sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="unit", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017572
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: value, unit, ts, lon Sensor: visibility | fields: reading, lat, depth, value Task: Retrieve reading from wind_speed with reading above the COUNT(reading) of visibility readings sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("visibility", code="clr"), match="type"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017573
train
v3
Sensor network script: Node: humidity | code: mst | fields: unit, lon, ts, reading Sensor: visibility | fields: ts, type, value, depth Task: Fetch lon from humidity where value is greater than the total of reading in visibility for matching unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="unit"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017574
train
v2
Sensor network script: Node: cloud_cover | code: gst | fields: type, qc, value, reading Sensor: frost | fields: ts, reading, qc, lat Task: Fetch depth from cloud_cover that have at least one corresponding frost measurement for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017575
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: ts, lon, lat, type Sensor: turbidity | fields: reading, lon, value, ts Task: Fetch lon from soil_moisture where type exists in turbidity sensor data for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="qc", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017576
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: value, depth, lat, qc Sensor: snow_depth | fields: unit, lon, level, ts Task: Fetch lon from soil_moisture where type exists in snow_depth sensor data for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="type", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017577
train
v1
Sensor network script: Node: turbidity | code: mst | fields: lat, qc, reading, value Sensor: visibility | fields: ts, lon, lat, level Task: Fetch value from turbidity where qc exists in visibility sensor data for the same unit. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "value", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017578
train
v3
Sensor network script: Node: evaporation | code: gst | fields: reading, lat, lon, type Sensor: turbidity | fields: unit, ts, depth, type Task: Retrieve lon from evaporation with reading above the MIN(reading) of turbidity readings sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", 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": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017579
train
v1
Sensor network script: Node: sunlight | code: ref | fields: reading, value, lon, unit Sensor: visibility | fields: type, reading, ts, value Task: Fetch level from sunlight where unit exists in visibility sensor data for the same ts. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="ts", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017580
train
v1
Sensor network script: Node: rainfall | code: ref | fields: ts, lat, type, level Sensor: cloud_cover | fields: value, level, ts, lat Task: Retrieve value from rainfall whose type is found in cloud_cover records where qc matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017581
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: qc, type, lat, unit Sensor: dew_point | fields: depth, qc, type, level Task: Fetch level from soil_moisture where type exists in dew_point sensor data for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="ts", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017582
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: qc, depth, level, ts Sensor: sunlight | fields: reading, lon, lat, type Task: Fetch lat from soil_moisture where qc exists in sunlight sensor data for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="ts", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017583
train
v2
Sensor network script: Node: pressure | code: ref | fields: level, value, unit, qc Sensor: rainfall | fields: level, qc, type, lon Task: Get lat from pressure where a corresponding entry exists in rainfall with the same qc. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017584
train
v1
Sensor network script: Node: rainfall | code: gst | fields: value, qc, unit, type Sensor: humidity | fields: lon, qc, lat, reading Task: Retrieve reading from rainfall whose type is found in humidity records where type matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="type", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017585
train
v2
Sensor network script: Node: temperature | code: gst | fields: type, lat, unit, value Sensor: rainfall | fields: lat, value, type, unit Task: Fetch depth from temperature that have at least one corresponding rainfall measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017586
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: lon, level, depth, qc Sensor: lightning | fields: depth, value, ts, qc Task: Get value from wind_speed where a corresponding entry exists in lightning with the same qc. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017587
train
v1
Sensor network script: Node: lightning | code: thr | fields: type, lon, reading, ts Sensor: evaporation | fields: lat, depth, reading, value Task: Fetch value from lightning where qc exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="unit", ), output="value", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "value", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017588
train
v1
Sensor network script: Node: lightning | code: thr | fields: type, level, reading, value Sensor: snow_depth | fields: lat, ts, level, depth Task: Retrieve lon from lightning whose depth is found in snow_depth records where ts matches the outer node. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="ts", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017589
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: reading, ts, lat, value Sensor: visibility | fields: reading, value, lon, ts Task: Fetch lat from snow_depth where depth is greater than the average of depth in visibility for matching unit. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("visibility", code="clr"), match="unit"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017590
train
v3
Sensor network script: Node: visibility | code: clr | fields: depth, unit, value, ts Sensor: turbidity | fields: depth, lat, level, value Task: Retrieve lon from visibility with value above the MIN(reading) of turbidity readings sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("turbidity", code="ftu"), match="depth"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lon", "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_017591
train
v2
Sensor network script: Node: humidity | code: ref | fields: unit, lon, ts, reading Sensor: air_quality | fields: type, qc, unit, reading Task: Fetch reading from humidity that have at least one corresponding air_quality measurement for the same unit. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "reading", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017592
train
v2
Sensor network script: Node: pressure | code: mst | fields: value, lat, lon, qc Sensor: evaporation | fields: unit, reading, lat, type Task: Fetch reading from pressure that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "reading", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017593
train
v2
Sensor network script: Node: humidity | code: hub | fields: value, unit, qc, lat Sensor: dew_point | fields: unit, reading, lat, level Task: Retrieve reading from humidity that have at least one matching reading in dew_point sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "reading", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017594
train
v1
Sensor network script: Node: humidity | code: prt | fields: ts, depth, qc, unit Sensor: sunlight | fields: qc, lon, type, depth Task: Retrieve lat from humidity whose qc is found in sunlight records where unit matches the outer node. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="unit", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017595
train
v2
Sensor network script: Node: turbidity | code: hub | fields: value, unit, lat, type Sensor: wind_speed | fields: lon, qc, reading, lat Task: Fetch value from turbidity that have at least one corresponding wind_speed measurement for the same qc. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "value", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017596
train
v1
Sensor network script: Node: dew_point | code: hub | fields: level, ts, reading, depth Sensor: drought_index | fields: ts, level, qc, type Task: Fetch level from dew_point where unit exists in drought_index sensor data for the same type. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="type", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017597
train
v1
Sensor network script: Node: turbidity | code: prt | fields: unit, type, ts, qc Sensor: pressure | fields: depth, lat, value, ts Task: Fetch level from turbidity where depth exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="qc", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017598
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: reading, unit, qc, ts Sensor: lightning | fields: depth, lon, ts, qc Task: Get reading from snow_depth where reading exceeds the average depth from lightning for the same type. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("lightning", code="tnd"), match="type"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "reading", "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_017599
train