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: wind_speed | code: mst | fields: level, qc, depth, type Sensor: temperature | fields: depth, ts, type, reading Task: Retrieve lat from wind_speed that have at least one matching reading in temperature sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lat", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020500
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: ts, type, qc, unit Sensor: rainfall | fields: ts, unit, reading, lon Task: Get lat from cloud_cover where reading exceeds the maximum depth from rainfall for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020501
train
v2
Sensor network script: Node: pressure | code: clr | fields: type, ts, lat, value Sensor: temperature | fields: ts, reading, depth, value Task: Fetch depth from pressure that have at least one corresponding temperature measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020502
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: lat, unit, reading, value Sensor: temperature | fields: depth, ts, lat, value Task: Get value from soil_moisture where depth exceeds the average value from temperature for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("temperature", code="thr"), match="type"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020503
train
v1
Sensor network script: Node: humidity | code: mst | fields: ts, unit, reading, lon Sensor: turbidity | fields: value, ts, lat, lon Task: Retrieve value from humidity whose qc is found in turbidity records where unit matches the outer node. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="unit", ), output="value", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "value", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020504
train
v3
Sensor network script: Node: humidity | code: thr | fields: ts, level, lat, unit Sensor: dew_point | fields: ts, level, value, depth Task: Get level from humidity where value exceeds the total depth from dew_point for the same type. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("dew_point", code="cnd"), match="type"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020505
train
v3
Sensor network script: Node: humidity | code: gst | fields: ts, reading, depth, lon Sensor: snow_depth | fields: reading, lat, lon, value Task: Retrieve lon from humidity with reading above the AVG(depth) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020506
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: value, ts, reading, level Sensor: frost | fields: reading, lat, type, level Task: Get reading from snow_depth where a corresponding entry exists in frost with the same ts. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "reading", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020507
train
v2
Sensor network script: Node: visibility | code: clr | fields: lat, depth, reading, qc Sensor: soil_moisture | fields: ts, type, unit, reading Task: Get depth from visibility where a corresponding entry exists in soil_moisture with the same qc. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020508
train
v3
Sensor network script: Node: uv_index | code: gst | fields: depth, unit, reading, value Sensor: drought_index | fields: qc, reading, lon, depth Task: Retrieve reading from uv_index with depth above the MAX(value) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("drought_index", code="drt"), match="qc"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020509
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: qc, depth, type, value Sensor: rainfall | fields: lon, level, unit, value Task: Retrieve value from wind_speed with depth above the COUNT(reading) of rainfall readings sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020510
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: type, ts, lon, level Sensor: sunlight | fields: value, level, type, qc Task: Retrieve value from soil_moisture with depth above the MAX(depth) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("sunlight", code="brt"), match="type"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020511
train
v1
Sensor network script: Node: humidity | code: mst | fields: lon, unit, type, reading Sensor: pressure | fields: reading, qc, lat, lon Task: Fetch value from humidity where unit exists in pressure sensor data for the same unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020512
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: type, reading, value, lat Sensor: rainfall | fields: level, depth, reading, ts Task: Fetch value from snow_depth where depth is greater than the maximum of depth in rainfall for matching ts. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020513
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: type, level, lat, qc Sensor: temperature | fields: lat, qc, ts, unit Task: Retrieve reading from cloud_cover with reading above the MIN(value) of temperature readings sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("temperature", code="thr"), match="depth"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020514
train
v1
Sensor network script: Node: frost | code: clr | fields: depth, reading, lat, ts Sensor: evaporation | fields: type, lat, qc, unit Task: Retrieve level from frost whose depth is found in evaporation records where qc matches the outer node. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020515
train
v3
Sensor network script: Node: evaporation | code: ref | fields: lat, qc, unit, level Sensor: cloud_cover | fields: ts, level, qc, value Task: Fetch depth from evaporation where reading is greater than the maximum of reading in cloud_cover for matching depth. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020516
train
v1
Sensor network script: Node: sunlight | code: mst | fields: qc, depth, value, type Sensor: temperature | fields: type, unit, depth, level Task: Fetch value from sunlight where type exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="qc", ), output="value", )
{ "outer_table": "sunlight", "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_020517
train
v2
Sensor network script: Node: drought_index | code: gst | fields: value, depth, type, reading Sensor: dew_point | fields: depth, value, ts, level Task: Fetch reading from drought_index that have at least one corresponding dew_point measurement for the same type. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "reading", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020518
train
v3
Sensor network script: Node: sunlight | code: hub | fields: lat, ts, reading, lon Sensor: humidity | fields: level, unit, lon, depth Task: Get level from sunlight where reading exceeds the minimum reading from humidity for the same qc. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020519
train
v3
Sensor network script: Node: sunlight | code: hub | fields: lon, level, lat, ts Sensor: frost | fields: ts, reading, type, depth Task: Fetch level from sunlight where value is greater than the maximum of value in frost for matching depth. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("frost", code="frs"), match="depth"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020520
train
v1
Sensor network script: Node: lightning | code: mst | fields: lat, lon, ts, type Sensor: evaporation | fields: level, type, ts, lon Task: Get lat from lightning where type appears in evaporation readings with matching ts. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="ts", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020521
train
v3
Sensor network script: Node: visibility | code: thr | fields: depth, qc, unit, ts Sensor: turbidity | fields: ts, qc, type, depth Task: Get lat from visibility where value exceeds the count of depth from turbidity for the same qc. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("turbidity", code="ftu"), match="qc"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020522
train
v2
Sensor network script: Node: sunlight | code: prt | fields: level, reading, depth, value Sensor: dew_point | fields: ts, type, value, level Task: Retrieve lon from sunlight that have at least one matching reading in dew_point sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020523
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: type, level, value, ts Sensor: turbidity | fields: depth, lat, ts, type Task: Retrieve lon from soil_moisture that have at least one matching reading in turbidity sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lon", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020524
train
v3
Sensor network script: Node: drought_index | code: hub | fields: qc, lon, unit, reading Sensor: soil_moisture | fields: unit, lon, reading, value Task: Fetch value from drought_index where reading is greater than the minimum of depth in soil_moisture for matching unit. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020525
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: unit, type, depth, value Sensor: air_quality | fields: value, type, lat, qc Task: Fetch value from snow_depth that have at least one corresponding air_quality measurement for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "value", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020526
train
v1
Sensor network script: Node: air_quality | code: thr | fields: reading, unit, depth, type Sensor: cloud_cover | fields: reading, qc, level, lat Task: Retrieve lat from air_quality whose type is found in cloud_cover records where type matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="type", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020527
train
v2
Sensor network script: Node: frost | code: mst | fields: value, depth, qc, reading Sensor: evaporation | fields: lon, lat, type, qc Task: Fetch level from frost that have at least one corresponding evaporation measurement for the same type. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="level", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "level", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020528
train
v2
Sensor network script: Node: frost | code: thr | fields: depth, lat, type, lon Sensor: snow_depth | fields: lat, level, lon, ts Task: Get lat from frost where a corresponding entry exists in snow_depth with the same unit. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="lat", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lat", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020529
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: ts, type, reading, depth Sensor: cloud_cover | fields: depth, unit, ts, lon Task: Fetch reading from wind_speed that have at least one corresponding cloud_cover measurement for the same type. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020530
train
v3
Sensor network script: Node: uv_index | code: clr | fields: lat, level, value, ts Sensor: lightning | fields: unit, lon, ts, value Task: Retrieve depth from uv_index with reading above the MAX(reading) of lightning readings sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("lightning", code="tnd"), match="depth"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020531
train
v1
Sensor network script: Node: dew_point | code: mst | fields: reading, value, ts, lat Sensor: cloud_cover | fields: unit, depth, level, reading Task: Get lat from dew_point where qc appears in cloud_cover readings with matching qc. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020532
train
v2
Sensor network script: Node: rainfall | code: ref | fields: qc, type, reading, level Sensor: lightning | fields: level, reading, qc, depth Task: Retrieve depth from rainfall that have at least one matching reading in lightning sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020533
train
v3
Sensor network script: Node: rainfall | code: clr | fields: level, unit, lon, reading Sensor: air_quality | fields: reading, depth, lon, lat Task: Retrieve lat from rainfall with depth above the MAX(depth) of air_quality readings sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="unit"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020534
train
v3
Sensor network script: Node: humidity | code: gst | fields: depth, type, value, lat Sensor: air_quality | fields: depth, value, ts, reading Task: Get reading from humidity where depth exceeds the average reading from air_quality for the same unit. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("air_quality", code="prt"), match="unit"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020535
train
v2
Sensor network script: Node: uv_index | code: prt | fields: level, lat, type, reading Sensor: cloud_cover | fields: qc, unit, reading, value Task: Fetch level from uv_index that have at least one corresponding cloud_cover measurement for the same depth. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020536
train
v2
Sensor network script: Node: evaporation | code: mst | fields: value, unit, ts, level Sensor: cloud_cover | fields: value, level, reading, qc Task: Retrieve lon from evaporation that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020537
train
v2
Sensor network script: Node: uv_index | code: clr | fields: lon, level, ts, unit Sensor: wind_speed | fields: qc, lon, reading, lat Task: Retrieve lat from uv_index that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020538
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: reading, type, unit, ts Sensor: visibility | fields: type, qc, lon, unit Task: Retrieve lon from snow_depth that have at least one matching reading in visibility sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020539
train
v1
Sensor network script: Node: drought_index | code: gst | fields: lon, ts, type, qc Sensor: soil_moisture | fields: ts, lon, reading, depth Task: Get reading from drought_index where unit appears in soil_moisture readings with matching depth. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020540
train
v2
Sensor network script: Node: frost | code: thr | fields: reading, value, unit, type Sensor: pressure | fields: ts, type, reading, qc Task: Retrieve value from frost that have at least one matching reading in pressure sharing the same qc. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="value", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020541
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: level, lat, value, qc Sensor: pressure | fields: qc, lat, value, unit Task: Get reading from wind_speed where depth exceeds the maximum depth from pressure for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("pressure", code="mbl"), match="unit"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020542
train
v1
Sensor network script: Node: visibility | code: mst | fields: level, lat, unit, lon Sensor: rainfall | fields: qc, reading, ts, level Task: Fetch level from visibility where qc exists in rainfall sensor data for the same ts. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020543
train
v2
Sensor network script: Node: uv_index | code: mst | fields: depth, lon, unit, type Sensor: lightning | fields: unit, lat, qc, reading Task: Get reading from uv_index where a corresponding entry exists in lightning with the same ts. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "reading", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020544
train
v2
Sensor network script: Node: turbidity | code: prt | fields: type, depth, level, reading Sensor: temperature | fields: value, lon, type, qc Task: Get level from turbidity where a corresponding entry exists in temperature with the same type. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020545
train
v2
Sensor network script: Node: dew_point | code: hub | fields: lat, reading, unit, value Sensor: lightning | fields: lat, type, unit, reading Task: Get lat from dew_point where a corresponding entry exists in lightning with the same type. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lat", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020546
train
v1
Sensor network script: Node: frost | code: gst | fields: level, lat, unit, reading Sensor: pressure | fields: lat, unit, reading, value Task: Fetch level from frost where unit exists in pressure sensor data for the same ts. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="ts", ), output="level", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020547
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: depth, ts, lat, type Sensor: sunlight | fields: level, depth, qc, lat Task: Retrieve depth from cloud_cover with reading above the SUM(reading) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("sunlight", code="brt"), match="type"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020548
train
v1
Sensor network script: Node: turbidity | code: stn | fields: lon, unit, level, type Sensor: rainfall | fields: level, unit, reading, lat Task: Retrieve lat from turbidity whose type is found in rainfall records where ts matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020549
train
v3
Sensor network script: Node: sunlight | code: mst | fields: qc, reading, type, unit Sensor: air_quality | fields: lon, depth, ts, type Task: Retrieve value from sunlight with reading above the MAX(depth) of air_quality readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="qc"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020550
train
v2
Sensor network script: Node: lightning | code: stn | fields: unit, qc, level, ts Sensor: evaporation | fields: reading, ts, value, lon Task: Retrieve value from lightning that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="value", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020551
train
v1
Sensor network script: Node: turbidity | code: ref | fields: depth, ts, type, lat Sensor: uv_index | fields: value, level, ts, qc Task: Retrieve depth from turbidity whose depth is found in uv_index records where unit matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="unit", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020552
train
v2
Sensor network script: Node: sunlight | code: clr | fields: value, ts, reading, lat Sensor: temperature | fields: level, depth, lat, value Task: Retrieve depth from sunlight that have at least one matching reading in temperature sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020553
train
v1
Sensor network script: Node: lightning | code: prt | fields: unit, type, depth, ts Sensor: temperature | fields: lon, qc, unit, level Task: Retrieve lat from lightning whose type is found in temperature records where qc matches the outer node. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020554
train
v2
Sensor network script: Node: temperature | code: stn | fields: depth, unit, reading, level Sensor: sunlight | fields: depth, ts, unit, value Task: Retrieve level from temperature that have at least one matching reading in sunlight sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="level", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "level", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020555
train
v2
Sensor network script: Node: air_quality | code: ref | fields: reading, depth, type, unit Sensor: uv_index | fields: lon, reading, ts, qc Task: Fetch lon from air_quality that have at least one corresponding uv_index measurement for the same depth. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020556
train
v1
Sensor network script: Node: temperature | code: thr | fields: ts, reading, lon, qc Sensor: pressure | fields: type, value, unit, lon Task: Get level from temperature where ts appears in pressure readings with matching qc. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="qc", ), output="level", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020557
train
v3
Sensor network script: Node: sunlight | code: ref | fields: reading, lon, level, value Sensor: drought_index | fields: depth, lon, reading, level Task: Retrieve depth from sunlight with depth above the COUNT(reading) of drought_index readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("drought_index", code="drt"), match="depth"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020558
train
v3
Sensor network script: Node: visibility | code: prt | fields: depth, qc, type, reading Sensor: lightning | fields: depth, reading, ts, value Task: Fetch lat from visibility where reading is greater than the maximum of value in lightning for matching type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("lightning", code="tnd"), match="type"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020559
train
v3
Sensor network script: Node: rainfall | code: thr | fields: lon, level, unit, value Sensor: soil_moisture | fields: lat, lon, type, qc Task: Retrieve level from rainfall with reading above the MAX(value) of soil_moisture readings sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020560
train
v3
Sensor network script: Node: humidity | code: mst | fields: ts, lat, type, level Sensor: soil_moisture | fields: level, value, lon, unit Task: Fetch depth from humidity where depth is greater than the average of value in soil_moisture for matching unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020561
train
v1
Sensor network script: Node: air_quality | code: clr | fields: type, qc, value, lat Sensor: uv_index | fields: ts, type, qc, reading Task: Retrieve value from air_quality whose depth is found in uv_index records where unit matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="unit", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020562
train
v2
Sensor network script: Node: rainfall | code: mst | fields: value, level, depth, lon Sensor: cloud_cover | fields: value, unit, reading, depth Task: Retrieve level from rainfall that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020563
train
v3
Sensor network script: Node: pressure | code: clr | fields: type, lon, ts, value Sensor: air_quality | fields: level, qc, ts, type Task: Fetch depth from pressure where reading is greater than the maximum of depth in air_quality for matching unit. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="unit"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020564
train
v3
Sensor network script: Node: drought_index | code: hub | fields: ts, level, lon, qc Sensor: snow_depth | fields: ts, unit, lon, qc Task: Retrieve lat from drought_index with depth above the MAX(depth) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020565
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: ts, lon, value, level Sensor: pressure | fields: lon, qc, lat, value Task: Get level from snow_depth where value exceeds the maximum value from pressure for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020566
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: value, depth, lat, reading Sensor: cloud_cover | fields: qc, unit, ts, type Task: Fetch depth from snow_depth where depth is greater than the average of depth in cloud_cover for matching type. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020567
train
v2
Sensor network script: Node: drought_index | code: clr | fields: reading, lon, qc, ts Sensor: wind_speed | fields: value, ts, depth, unit Task: Fetch depth from drought_index that have at least one corresponding wind_speed measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020568
train
v1
Sensor network script: Node: lightning | code: clr | fields: type, value, unit, reading Sensor: drought_index | fields: depth, ts, unit, qc Task: Get value from lightning where ts appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="ts", ), output="value", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020569
train
v3
Sensor network script: Node: air_quality | code: thr | fields: qc, value, unit, type Sensor: rainfall | fields: qc, type, depth, unit Task: Get value from air_quality where value exceeds the total reading from rainfall for the same type. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020570
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: depth, ts, type, lon Sensor: cloud_cover | fields: value, unit, level, qc Task: Get depth from wind_speed where value exceeds the minimum depth from cloud_cover for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020571
train
v2
Sensor network script: Node: rainfall | code: clr | fields: level, qc, reading, lon Sensor: temperature | fields: reading, lon, level, ts Task: Retrieve lat from rainfall that have at least one matching reading in temperature sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lat", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020572
train
v3
Sensor network script: Node: humidity | code: stn | fields: ts, level, depth, value Sensor: evaporation | fields: reading, lat, level, type Task: Fetch depth from humidity where reading is greater than the maximum of depth in evaporation for matching depth. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("evaporation", code="evp"), match="depth"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "depth", "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_020573
train
v1
Sensor network script: Node: frost | code: stn | fields: qc, ts, unit, lat Sensor: turbidity | fields: lon, value, level, unit Task: Fetch lat from frost where depth exists in turbidity sensor data for the same qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="qc", ), output="lat", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020574
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: lon, type, unit, ts Sensor: air_quality | fields: lon, ts, reading, type Task: Retrieve lat from snow_depth with depth above the SUM(depth) of air_quality readings sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("air_quality", code="prt"), match="unit"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020575
train
v3
Sensor network script: Node: rainfall | code: gst | fields: ts, type, level, value Sensor: lightning | fields: level, qc, lat, value Task: Get level from rainfall where reading exceeds the minimum value from lightning for the same type. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("lightning", code="tnd"), match="type"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020576
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: reading, unit, value, lat Sensor: visibility | fields: unit, qc, lat, level Task: Get lat from snow_depth where reading exceeds the average value from visibility for the same type. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="type"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020577
train
v3
Sensor network script: Node: evaporation | code: hub | fields: unit, qc, level, reading Sensor: frost | fields: value, qc, reading, unit Task: Fetch depth from evaporation where depth is greater than the total of value in frost for matching type. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("frost", code="frs"), match="type"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020578
train
v1
Sensor network script: Node: sunlight | code: mst | fields: ts, lat, qc, lon Sensor: visibility | fields: value, unit, depth, lat Task: Retrieve depth from sunlight whose type is found in visibility records where unit matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="unit", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020579
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: lon, reading, level, value Sensor: dew_point | fields: level, reading, depth, unit Task: Fetch depth from cloud_cover where depth exists in dew_point sensor data for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020580
train
v2
Sensor network script: Node: sunlight | code: stn | fields: reading, level, value, lat Sensor: pressure | fields: value, lon, depth, reading Task: Fetch value from sunlight that have at least one corresponding pressure measurement for the same ts. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020581
train
v1
Sensor network script: Node: rainfall | code: stn | fields: depth, lat, ts, unit Sensor: soil_moisture | fields: depth, lon, unit, value Task: Get depth from rainfall where depth appears in soil_moisture readings with matching type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="type", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020582
train
v2
Sensor network script: Node: turbidity | code: clr | fields: ts, unit, level, depth Sensor: soil_moisture | fields: lat, qc, type, lon Task: Get value from turbidity where a corresponding entry exists in soil_moisture with the same unit. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "value", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020583
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: value, depth, lon, unit Sensor: turbidity | fields: unit, ts, lat, reading Task: Get lat from soil_moisture where type appears in turbidity readings with matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="qc", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020584
train
v3
Sensor network script: Node: humidity | code: hub | fields: type, depth, lat, lon Sensor: snow_depth | fields: ts, unit, type, lon Task: Fetch lon from humidity where reading is greater than the count of of depth in snow_depth for matching ts. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020585
train
v2
Sensor network script: Node: rainfall | code: mst | fields: value, lat, qc, depth Sensor: temperature | fields: ts, reading, lon, type Task: Fetch value from rainfall that have at least one corresponding temperature measurement for the same depth. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020586
train
v3
Sensor network script: Node: sunlight | code: mst | fields: level, reading, value, ts Sensor: humidity | fields: reading, lat, type, ts Task: Retrieve level from sunlight with depth above the MAX(value) of humidity readings sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("humidity", code="hgr"), match="type"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020587
train
v2
Sensor network script: Node: visibility | code: stn | fields: reading, qc, type, level Sensor: frost | fields: depth, value, lat, level Task: Fetch depth from visibility that have at least one corresponding frost measurement for the same qc. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020588
train
v3
Sensor network script: Node: pressure | code: prt | fields: unit, value, qc, type Sensor: uv_index | fields: unit, reading, lon, ts Task: Fetch lat from pressure where depth is greater than the count of of value in uv_index for matching qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("uv_index", code="flx"), match="qc"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020589
train
v1
Sensor network script: Node: temperature | code: thr | fields: lon, qc, ts, level Sensor: snow_depth | fields: value, depth, level, ts Task: Fetch reading from temperature where qc exists in snow_depth sensor data for the same unit. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="unit", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020590
train
v1
Sensor network script: Node: humidity | code: hub | fields: reading, ts, value, unit Sensor: pressure | fields: reading, qc, value, depth Task: Get value from humidity where ts appears in pressure readings with matching depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="depth", ), output="value", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020591
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: reading, lat, depth, ts Sensor: drought_index | fields: value, qc, unit, reading Task: Retrieve lat from snow_depth whose unit is found in drought_index records where depth matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020592
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: reading, value, lat, unit Sensor: evaporation | fields: level, ts, lat, reading Task: Retrieve value from soil_moisture with depth above the AVG(depth) of evaporation readings sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("evaporation", code="evp"), match="unit"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020593
train
v1
Sensor network script: Node: humidity | code: hub | fields: unit, depth, value, qc Sensor: wind_speed | fields: type, ts, unit, qc Task: Retrieve lat from humidity whose qc is found in wind_speed records where unit matches the outer node. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="unit", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020594
train
v1
Sensor network script: Node: rainfall | code: clr | fields: reading, type, ts, lat Sensor: uv_index | fields: ts, lon, type, unit Task: Get level from rainfall where qc appears in uv_index readings with matching type. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="type", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020595
train
v3
Sensor network script: Node: drought_index | code: hub | fields: ts, lon, value, depth Sensor: snow_depth | fields: depth, lat, qc, ts Task: Get level from drought_index where value exceeds the minimum reading from snow_depth for the same depth. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("snow_depth", code="snw"), match="depth"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020596
train
v3
Sensor network script: Node: sunlight | code: stn | fields: ts, type, reading, lat Sensor: air_quality | fields: level, lat, type, qc Task: Retrieve value from sunlight with value above the SUM(value) of air_quality readings sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("air_quality", code="prt"), match="ts"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020597
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: ts, lat, reading, qc Sensor: temperature | fields: reading, type, value, ts Task: Retrieve value from wind_speed whose type is found in temperature records where type matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="type", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_020598
train
v3
Sensor network script: Node: air_quality | code: thr | fields: level, type, qc, unit Sensor: uv_index | fields: qc, level, reading, value Task: Retrieve lat from air_quality with value above the SUM(reading) of uv_index readings sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_020599
train