variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v3
Sensor network script: Node: soil_moisture | code: clr | fields: qc, value, reading, unit Sensor: air_quality | fields: value, type, lat, qc Task: Get value from soil_moisture where depth exceeds the minimum value from air_quality for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="type"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024600
train
v2
Sensor network script: Node: sunlight | code: hub | fields: qc, level, value, unit Sensor: rainfall | fields: value, lat, lon, reading Task: Fetch value from sunlight that have at least one corresponding rainfall measurement for the same type. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "value", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024601
train
v2
Sensor network script: Node: lightning | code: hub | fields: lat, depth, reading, qc Sensor: rainfall | fields: value, unit, level, depth Task: Get lat from lightning where a corresponding entry exists in rainfall with the same depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024602
train
v3
Sensor network script: Node: frost | code: ref | fields: lon, ts, type, unit Sensor: evaporation | fields: type, reading, unit, level Task: Get reading from frost where reading exceeds the average value from evaporation for the same type. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="type"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024603
train
v1
Sensor network script: Node: temperature | code: prt | fields: level, ts, lon, qc Sensor: pressure | fields: unit, type, lat, qc Task: Get level from temperature where qc appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="ts", ), output="level", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024604
train
v2
Sensor network script: Node: sunlight | code: ref | fields: depth, reading, type, lon Sensor: dew_point | fields: depth, reading, lon, unit Task: Get lon from sunlight where a corresponding entry exists in dew_point with the same unit. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024605
train
v1
Sensor network script: Node: air_quality | code: mst | fields: qc, unit, lon, lat Sensor: soil_moisture | fields: type, lat, level, unit Task: Retrieve level from air_quality whose type is found in soil_moisture records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024606
train
v1
Sensor network script: Node: evaporation | code: thr | fields: depth, ts, unit, reading Sensor: air_quality | fields: lon, level, lat, reading Task: Get value from evaporation where qc appears in air_quality readings with matching type. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="type", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024607
train
v2
Sensor network script: Node: pressure | code: mst | fields: reading, depth, lat, ts Sensor: evaporation | fields: level, value, depth, lat Task: Retrieve lon from pressure that have at least one matching reading in evaporation sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lon", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024608
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: type, lon, value, depth Sensor: temperature | fields: ts, qc, lon, unit Task: Get lon from soil_moisture where type appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "type", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024609
train
v1
Sensor network script: Node: rainfall | code: thr | fields: value, ts, reading, level Sensor: soil_moisture | fields: qc, ts, type, level Task: Retrieve depth from rainfall whose unit is found in soil_moisture records where qc matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024610
train
v3
Sensor network script: Node: humidity | code: hub | fields: reading, lat, depth, type Sensor: cloud_cover | fields: qc, reading, type, depth Task: Get reading from humidity where value exceeds the count of value from cloud_cover for the same depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024611
train
v1
Sensor network script: Node: temperature | code: prt | fields: depth, reading, value, lat Sensor: visibility | fields: lat, qc, depth, type Task: Get reading from temperature where ts appears in visibility readings with matching qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="qc", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024612
train
v3
Sensor network script: Node: uv_index | code: mst | fields: unit, reading, lon, value Sensor: humidity | fields: lat, reading, qc, ts Task: Retrieve lat from uv_index with reading above the MAX(reading) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024613
train
v2
Sensor network script: Node: rainfall | code: thr | fields: depth, qc, level, ts Sensor: uv_index | fields: reading, ts, lon, type Task: Fetch lat from rainfall that have at least one corresponding uv_index measurement for the same ts. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lat", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024614
train
v2
Sensor network script: Node: turbidity | code: hub | fields: type, level, depth, unit Sensor: visibility | fields: reading, value, lon, level Task: Retrieve depth from turbidity that have at least one matching reading in visibility sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024615
train
v1
Sensor network script: Node: evaporation | code: stn | fields: qc, unit, type, level Sensor: visibility | fields: type, reading, level, lat Task: Fetch reading from evaporation where ts exists in visibility sensor data for the same qc. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024616
train
v1
Sensor network script: Node: dew_point | code: prt | fields: value, lon, type, qc Sensor: drought_index | fields: level, ts, unit, depth Task: Get lat from dew_point where unit appears in drought_index readings with matching unit. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="unit", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024617
train
v3
Sensor network script: Node: lightning | code: prt | fields: lon, value, ts, type Sensor: cloud_cover | fields: qc, lat, level, value Task: Retrieve value from lightning with depth above the COUNT(reading) of cloud_cover readings sharing the same type. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024618
train
v2
Sensor network script: Node: visibility | code: hub | fields: lat, qc, lon, type Sensor: drought_index | fields: level, type, unit, reading Task: Get level from visibility where a corresponding entry exists in drought_index with the same qc. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024619
train
v2
Sensor network script: Node: air_quality | code: stn | fields: ts, lat, unit, type Sensor: temperature | fields: lon, value, ts, unit Task: Fetch depth from air_quality that have at least one corresponding temperature measurement for the same ts. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024620
train
v1
Sensor network script: Node: air_quality | code: prt | fields: unit, lat, value, level Sensor: snow_depth | fields: lat, ts, reading, depth Task: Get level from air_quality where depth appears in snow_depth readings with matching ts. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="ts", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024621
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: level, ts, type, value Sensor: pressure | fields: level, qc, lat, depth Task: Fetch value from soil_moisture where type exists in pressure sensor data for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="depth", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024622
train
v2
Sensor network script: Node: pressure | code: mst | fields: type, qc, depth, reading Sensor: sunlight | fields: value, lat, reading, depth Task: Retrieve lat from pressure that have at least one matching reading in sunlight sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024623
train
v1
Sensor network script: Node: humidity | code: hub | fields: lat, value, depth, qc Sensor: uv_index | fields: qc, type, level, lat Task: Fetch depth from humidity where qc exists in uv_index sensor data for the same depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="depth", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "depth", "filter_col": "qc", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024624
train
v2
Sensor network script: Node: turbidity | code: ref | fields: unit, value, qc, lon Sensor: cloud_cover | fields: lat, reading, lon, ts Task: Get lat from turbidity where a corresponding entry exists in cloud_cover with the same depth. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024625
train
v3
Sensor network script: Node: visibility | code: mst | fields: lon, reading, lat, unit Sensor: temperature | fields: depth, reading, qc, type Task: Fetch lon from visibility where depth is greater than the count of of depth in temperature for matching unit. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="unit"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024626
train
v3
Sensor network script: Node: humidity | code: mst | fields: lon, lat, unit, qc Sensor: visibility | fields: depth, lon, type, lat Task: Get depth from humidity where depth exceeds the count of value from visibility for the same ts. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024627
train
v2
Sensor network script: Node: turbidity | code: clr | fields: type, ts, unit, level Sensor: wind_speed | fields: lon, type, unit, depth Task: Retrieve reading from turbidity that have at least one matching reading in wind_speed sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024628
train
v2
Sensor network script: Node: frost | code: clr | fields: lat, ts, depth, type Sensor: cloud_cover | fields: value, unit, type, lon Task: Fetch level from frost that have at least one corresponding cloud_cover measurement for the same qc. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "level", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024629
train
v3
Sensor network script: Node: evaporation | code: hub | fields: lat, reading, unit, type Sensor: soil_moisture | fields: depth, lat, lon, qc Task: Fetch depth from evaporation where value is greater than the average of value in soil_moisture for matching qc. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024630
train
v3
Sensor network script: Node: uv_index | code: gst | fields: value, lat, lon, depth Sensor: cloud_cover | fields: depth, lon, qc, type Task: Get level from uv_index where depth exceeds the total value from cloud_cover for the same qc. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024631
train
v3
Sensor network script: Node: visibility | code: mst | fields: ts, reading, value, qc Sensor: snow_depth | fields: reading, qc, unit, lon Task: Fetch reading from visibility where value is greater than the minimum of reading in snow_depth for matching type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("snow_depth", code="snw"), match="type"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024632
train
v2
Sensor network script: Node: frost | code: thr | fields: depth, lon, unit, lat Sensor: dew_point | fields: qc, depth, type, unit Task: Get depth from frost where a corresponding entry exists in dew_point with the same qc. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="depth", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024633
train
v1
Sensor network script: Node: frost | code: thr | fields: depth, reading, qc, unit Sensor: cloud_cover | fields: value, reading, type, lon Task: Retrieve reading from frost whose unit is found in cloud_cover records where qc matches the outer node. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="reading", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024634
train
v3
Sensor network script: Node: uv_index | code: thr | fields: reading, value, type, level Sensor: rainfall | fields: unit, level, ts, value Task: Retrieve lat from uv_index with depth above the MAX(value) of rainfall readings sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("rainfall", code="rnfl"), match="type"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024635
train
v1
Sensor network script: Node: sunlight | code: ref | fields: lon, type, unit, value Sensor: dew_point | fields: level, qc, reading, lat Task: Fetch level from sunlight where unit exists in dew_point sensor data for the same depth. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="depth", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024636
train
v2
Sensor network script: Node: uv_index | code: hub | fields: value, qc, ts, unit Sensor: lightning | fields: type, ts, value, depth Task: Get depth from uv_index where a corresponding entry exists in lightning with the same type. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024637
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: qc, reading, value, type Sensor: pressure | fields: lon, level, reading, type Task: Fetch depth from snow_depth where depth is greater than the count of of value in pressure for matching unit. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("pressure", code="mbl"), match="unit"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024638
train
v3
Sensor network script: Node: air_quality | code: prt | fields: ts, qc, reading, type Sensor: temperature | fields: level, unit, qc, lon Task: Retrieve reading from air_quality with reading above the MAX(reading) of temperature readings sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("temperature", code="thr"), match="type"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024639
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: qc, ts, level, lon Sensor: pressure | fields: lat, reading, lon, value Task: Get lon from cloud_cover where value exceeds the average depth from pressure for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("pressure", code="mbl"), match="qc"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024640
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: lat, unit, qc, type Sensor: frost | fields: lat, unit, value, level Task: Fetch lat from cloud_cover where depth exists in frost sensor data for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024641
train
v2
Sensor network script: Node: turbidity | code: thr | fields: lat, lon, qc, depth Sensor: visibility | fields: value, qc, ts, reading Task: Get reading from turbidity where a corresponding entry exists in visibility with the same type. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "reading", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024642
train
v1
Sensor network script: Node: air_quality | code: stn | fields: qc, reading, ts, type Sensor: sunlight | fields: depth, ts, lat, type Task: Retrieve level from air_quality whose depth is found in sunlight records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="ts", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024643
train
v1
Sensor network script: Node: lightning | code: mst | fields: value, unit, type, ts Sensor: frost | fields: lon, type, depth, unit Task: Retrieve depth from lightning whose type is found in frost records where depth matches the outer node. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="depth", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024644
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: level, lat, reading, type Sensor: sunlight | fields: unit, value, qc, depth Task: Fetch value from wind_speed where ts exists in sunlight sensor data for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="unit", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024645
train
v1
Sensor network script: Node: humidity | code: clr | fields: type, ts, unit, level Sensor: evaporation | fields: unit, ts, reading, level Task: Fetch lon from humidity where unit exists in evaporation sensor data for the same qc. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="qc", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024646
train
v2
Sensor network script: Node: uv_index | code: mst | fields: reading, qc, lon, level Sensor: drought_index | fields: ts, qc, value, unit Task: Get lat from uv_index where a corresponding entry exists in drought_index with the same unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024647
train
v1
Sensor network script: Node: drought_index | code: prt | fields: qc, reading, unit, value Sensor: lightning | fields: reading, unit, ts, lat Task: Fetch depth from drought_index where ts exists in lightning sensor data for the same type. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="type", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024648
train
v3
Sensor network script: Node: rainfall | code: ref | fields: unit, depth, ts, type Sensor: wind_speed | fields: value, lon, level, reading Task: Fetch reading from rainfall where depth is greater than the maximum of reading in wind_speed for matching depth. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("wind_speed", code="gst"), match="depth"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024649
train
v3
Sensor network script: Node: rainfall | code: hub | fields: ts, lat, depth, reading Sensor: cloud_cover | fields: unit, type, lat, ts Task: Get lat from rainfall where reading exceeds the minimum depth from cloud_cover for the same qc. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024650
train
v2
Sensor network script: Node: pressure | code: prt | fields: level, qc, reading, type Sensor: humidity | fields: qc, level, reading, lat Task: Fetch lat from pressure that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lat", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024651
train
v1
Sensor network script: Node: air_quality | code: prt | fields: unit, reading, lon, lat Sensor: rainfall | fields: qc, reading, unit, lat Task: Retrieve depth from air_quality whose type is found in rainfall records where depth matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="depth", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024652
train
v3
Sensor network script: Node: visibility | code: hub | fields: level, qc, reading, type Sensor: dew_point | fields: lat, qc, unit, lon Task: Get value from visibility where depth exceeds the count of depth from dew_point for the same qc. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("dew_point", code="cnd"), match="qc"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024653
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: lat, unit, type, value Sensor: drought_index | fields: reading, value, lat, unit Task: Retrieve depth from soil_moisture whose depth is found in drought_index records where ts matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024654
train
v1
Sensor network script: Node: humidity | code: stn | fields: ts, lon, depth, value Sensor: dew_point | fields: lon, level, depth, unit Task: Retrieve reading from humidity whose ts is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024655
train
v2
Sensor network script: Node: temperature | code: prt | fields: ts, value, lat, level Sensor: snow_depth | fields: lat, depth, lon, reading Task: Retrieve level from temperature that have at least one matching reading in snow_depth sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="level", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "level", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024656
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: value, reading, level, type Sensor: drought_index | fields: depth, lat, type, reading Task: Fetch depth from wind_speed where value is greater than the count of of depth in drought_index for matching ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("drought_index", code="drt"), match="ts"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024657
train
v1
Sensor network script: Node: frost | code: stn | fields: value, type, lon, qc Sensor: air_quality | fields: unit, qc, depth, level Task: Get lon from frost where type appears in air_quality readings with matching qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="qc", ), output="lon", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024658
train
v3
Sensor network script: Node: drought_index | code: ref | fields: qc, unit, lat, value Sensor: wind_speed | fields: lon, lat, type, qc Task: Fetch depth from drought_index where reading is greater than the count of of value in wind_speed for matching type. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("wind_speed", code="gst"), match="type"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024659
train
v3
Sensor network script: Node: sunlight | code: gst | fields: qc, unit, type, lat Sensor: frost | fields: lat, reading, value, depth Task: Get reading from sunlight where depth exceeds the maximum value from frost for the same qc. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("frost", code="frs"), match="qc"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "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_024660
train
v1
Sensor network script: Node: uv_index | code: clr | fields: depth, lat, unit, qc Sensor: lightning | fields: ts, qc, reading, value Task: Fetch reading from uv_index where depth exists in lightning sensor data for the same depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="depth", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024661
train
v1
Sensor network script: Node: uv_index | code: mst | fields: lat, ts, value, qc Sensor: dew_point | fields: level, unit, ts, lat Task: Fetch lon from uv_index where qc exists in dew_point sensor data for the same depth. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="depth", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024662
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: reading, qc, ts, lat Sensor: frost | fields: depth, unit, level, lon Task: Fetch lon from cloud_cover where ts exists in frost sensor data for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024663
train
v1
Sensor network script: Node: visibility | code: mst | fields: type, lon, lat, level Sensor: sunlight | fields: value, lon, qc, unit Task: Fetch level from visibility where unit exists in sunlight sensor data for the same unit. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="unit", ), output="level", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024664
train
v2
Sensor network script: Node: visibility | code: mst | fields: value, depth, level, lat Sensor: humidity | fields: type, level, unit, lon Task: Get reading from visibility where a corresponding entry exists in humidity with the same type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "reading", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024665
train
v2
Sensor network script: Node: visibility | code: hub | fields: depth, qc, value, reading Sensor: air_quality | fields: lat, unit, depth, qc Task: Get lon from visibility where a corresponding entry exists in air_quality with the same type. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lon", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024666
train
v2
Sensor network script: Node: uv_index | code: ref | fields: unit, ts, type, level Sensor: temperature | fields: type, unit, qc, level Task: Retrieve depth from uv_index that have at least one matching reading in temperature sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024667
train
v1
Sensor network script: Node: turbidity | code: gst | fields: reading, value, qc, unit Sensor: temperature | fields: lat, ts, level, qc Task: Retrieve level from turbidity whose depth is found in temperature records where unit matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="unit", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024668
train
v3
Sensor network script: Node: humidity | code: gst | fields: qc, reading, type, level Sensor: air_quality | fields: unit, lat, reading, qc Task: Get depth from humidity where reading exceeds the count of reading from air_quality for the same qc. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("air_quality", code="prt"), match="qc"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024669
train
v1
Sensor network script: Node: dew_point | code: mst | fields: type, lon, level, ts Sensor: drought_index | fields: lon, lat, level, qc Task: Retrieve lon from dew_point whose type is found in drought_index records where depth matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="depth", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024670
train
v2
Sensor network script: Node: humidity | code: ref | fields: ts, lon, type, lat Sensor: dew_point | fields: lat, type, level, lon Task: Fetch depth from humidity that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024671
train
v2
Sensor network script: Node: evaporation | code: ref | fields: reading, level, qc, type Sensor: soil_moisture | fields: level, unit, reading, qc Task: Retrieve level from evaporation that have at least one matching reading in soil_moisture sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024672
train
v1
Sensor network script: Node: turbidity | code: stn | fields: lat, level, reading, qc Sensor: soil_moisture | fields: level, value, lat, type Task: Fetch lon from turbidity where unit exists in soil_moisture sensor data for the same depth. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024673
train
v3
Sensor network script: Node: frost | code: stn | fields: lon, type, level, unit Sensor: rainfall | fields: lon, type, depth, value Task: Fetch level from frost where depth is greater than the count of of reading in rainfall for matching unit. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="level", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024674
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: lat, unit, value, qc Sensor: soil_moisture | fields: level, unit, type, value Task: Get level from cloud_cover where ts appears in soil_moisture readings with matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024675
train
v1
Sensor network script: Node: uv_index | code: prt | fields: depth, lon, level, ts Sensor: drought_index | fields: qc, lat, reading, type Task: Fetch lon from uv_index where qc exists in drought_index sensor data for the same type. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="type", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024676
train
v1
Sensor network script: Node: humidity | code: hub | fields: lat, value, lon, unit Sensor: pressure | fields: reading, value, type, lon Task: Fetch lat from humidity where type exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="qc", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024677
train
v3
Sensor network script: Node: dew_point | code: gst | fields: ts, lat, depth, lon Sensor: temperature | fields: type, depth, unit, qc Task: Get lon from dew_point where reading exceeds the maximum value from temperature for the same depth. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("temperature", code="thr"), match="depth"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024678
train
v1
Sensor network script: Node: lightning | code: thr | fields: lat, lon, unit, depth Sensor: uv_index | fields: depth, qc, lat, ts Task: Fetch reading from lightning where ts exists in uv_index sensor data for the same unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="unit", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024679
train
v1
Sensor network script: Node: dew_point | code: ref | fields: qc, value, lat, ts Sensor: visibility | fields: type, level, unit, qc Task: Retrieve depth from dew_point whose qc is found in visibility records where qc matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="qc", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024680
train
v1
Sensor network script: Node: pressure | code: ref | fields: level, lat, qc, depth Sensor: temperature | fields: qc, reading, unit, depth Task: Retrieve lat from pressure whose ts is found in temperature records where qc matches the outer node. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="qc", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024681
train
v2
Sensor network script: Node: visibility | code: mst | fields: reading, lat, lon, value Sensor: uv_index | fields: lat, ts, lon, value Task: Retrieve lon from visibility that have at least one matching reading in uv_index sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024682
train
v1
Sensor network script: Node: drought_index | code: thr | fields: reading, lat, lon, depth Sensor: frost | fields: qc, level, reading, ts Task: Retrieve lat from drought_index whose qc is found in frost records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024683
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: unit, lon, value, ts Sensor: turbidity | fields: lon, depth, reading, value Task: Get reading from snow_depth where type appears in turbidity readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024684
train
v2
Sensor network script: Node: humidity | code: hub | fields: level, lon, depth, unit Sensor: frost | fields: type, qc, unit, level Task: Retrieve level from humidity that have at least one matching reading in frost sharing the same type. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="level", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "level", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024685
train
v3
Sensor network script: Node: air_quality | code: thr | fields: level, type, reading, value Sensor: humidity | fields: qc, unit, lon, ts Task: Retrieve level from air_quality with reading above the MAX(reading) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024686
train
v2
Sensor network script: Node: sunlight | code: stn | fields: lon, type, value, level Sensor: temperature | fields: qc, depth, level, ts Task: Get lon from sunlight where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024687
train
v2
Sensor network script: Node: temperature | code: ref | fields: lat, unit, ts, value Sensor: cloud_cover | fields: lat, qc, type, ts Task: Get depth from temperature where a corresponding entry exists in cloud_cover with the same ts. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024688
train
v3
Sensor network script: Node: visibility | code: hub | fields: type, value, depth, ts Sensor: drought_index | fields: lat, type, value, qc Task: Retrieve lon from visibility with reading above the MAX(depth) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024689
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: type, lat, value, ts Sensor: visibility | fields: unit, qc, ts, reading Task: Get value from wind_speed where value exceeds the maximum depth from visibility for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("visibility", code="clr"), match="depth"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_024690
train
v3
Sensor network script: Node: humidity | code: hub | fields: depth, ts, type, level Sensor: sunlight | fields: reading, qc, ts, value Task: Retrieve reading from humidity with value above the AVG(depth) of sunlight readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("sunlight", code="brt"), match="qc"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024691
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: lon, depth, reading, level Sensor: dew_point | fields: reading, lat, lon, depth Task: Retrieve value from snow_depth that have at least one matching reading in dew_point sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "value", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024692
train
v3
Sensor network script: Node: evaporation | code: hub | fields: lat, level, value, ts Sensor: drought_index | fields: lat, value, lon, type Task: Retrieve level from evaporation with depth above the AVG(value) of drought_index readings sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024693
train
v2
Sensor network script: Node: humidity | code: hub | fields: depth, lon, reading, level Sensor: turbidity | fields: value, unit, ts, type Task: Retrieve lon from humidity that have at least one matching reading in turbidity sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lon", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024694
train
v2
Sensor network script: Node: drought_index | code: mst | fields: reading, type, depth, value Sensor: frost | fields: level, value, qc, depth Task: Fetch value from drought_index that have at least one corresponding frost measurement for the same depth. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "value", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024695
train
v1
Sensor network script: Node: turbidity | code: prt | fields: qc, type, lat, unit Sensor: pressure | fields: type, ts, depth, qc Task: Fetch reading from turbidity where type exists in pressure sensor data for the same ts. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="ts", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024696
train
v2
Sensor network script: Node: temperature | code: hub | fields: depth, unit, lat, qc Sensor: cloud_cover | fields: lat, depth, reading, unit Task: Get lat from temperature where a corresponding entry exists in cloud_cover with the same ts. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024697
train
v3
Sensor network script: Node: humidity | code: clr | fields: ts, lat, level, lon Sensor: dew_point | fields: depth, reading, type, lon Task: Get value from humidity where value exceeds the average reading from dew_point for the same depth. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("dew_point", code="cnd"), match="depth"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024698
train
v2
Sensor network script: Node: rainfall | code: thr | fields: qc, value, depth, unit Sensor: humidity | fields: type, reading, lon, unit Task: Retrieve depth from rainfall that have at least one matching reading in humidity sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_024699
train