variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v1
Sensor network script: Node: frost | code: gst | fields: type, qc, lat, ts Sensor: drought_index | fields: reading, type, depth, qc Task: Retrieve depth from frost whose unit is found in drought_index records where unit matches the outer node. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="unit", ), output="depth", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075200
train
v3
Sensor network script: Node: dew_point | code: mst | fields: type, depth, qc, value Sensor: soil_moisture | fields: level, unit, lat, reading Task: Get depth from dew_point where reading exceeds the count of value from soil_moisture for the same ts. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075201
train
v3
Sensor network script: Node: dew_point | code: mst | fields: unit, qc, depth, level Sensor: frost | fields: depth, lat, type, value Task: Fetch value from dew_point where reading is greater than the total of value in frost for matching qc. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("frost", code="frs"), match="qc"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075202
train
v2
Sensor network script: Node: dew_point | code: hub | fields: depth, lat, unit, reading Sensor: pressure | fields: ts, value, type, level Task: Retrieve value from dew_point that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "value", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075203
train
v3
Sensor network script: Node: frost | code: gst | fields: lat, value, level, depth Sensor: humidity | fields: lon, qc, value, unit Task: Fetch depth from frost where depth is greater than the maximum of reading in humidity for matching depth. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("humidity", code="hgr"), match="depth"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075204
train
v2
Sensor network script: Node: pressure | code: clr | fields: unit, ts, depth, reading Sensor: cloud_cover | fields: type, level, ts, reading Task: Retrieve lon from pressure that have at least one matching reading in cloud_cover sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075205
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: lat, ts, value, lon Sensor: drought_index | fields: qc, depth, ts, level Task: Retrieve lon from soil_moisture that have at least one matching reading in drought_index sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lon", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075206
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: depth, lat, reading, ts Sensor: evaporation | fields: type, lat, reading, lon Task: Fetch lat from wind_speed that have at least one corresponding evaporation measurement for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lat", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075207
train
v3
Sensor network script: Node: drought_index | code: thr | fields: depth, reading, lat, lon Sensor: visibility | fields: lat, type, qc, level Task: Retrieve level from drought_index with depth above the MIN(depth) of visibility readings sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("visibility", code="clr"), match="ts"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075208
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: depth, lon, reading, type Sensor: temperature | fields: unit, reading, lon, qc Task: Retrieve depth from snow_depth that have at least one matching reading in temperature sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075209
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: ts, lat, type, lon Sensor: air_quality | fields: depth, unit, value, reading Task: Fetch reading from cloud_cover where reading is greater than the minimum of value in air_quality for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="unit"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075210
train
v1
Sensor network script: Node: visibility | code: mst | fields: value, type, unit, lat Sensor: sunlight | fields: lon, value, unit, type Task: Get lat from visibility where depth appears in sunlight readings with matching qc. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="qc", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075211
train
v3
Sensor network script: Node: evaporation | code: hub | fields: qc, lat, lon, reading Sensor: rainfall | fields: lon, level, value, reading Task: Get reading from evaporation where depth exceeds the average reading from rainfall for the same type. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075212
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: type, value, qc, lat Sensor: temperature | fields: depth, level, qc, lon Task: Get level from cloud_cover where a corresponding entry exists in temperature with the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075213
train
v2
Sensor network script: Node: dew_point | code: clr | fields: lat, qc, depth, value Sensor: humidity | fields: reading, unit, depth, type Task: Fetch level from dew_point that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075214
train
v1
Sensor network script: Node: drought_index | code: hub | fields: level, unit, type, value Sensor: humidity | fields: level, value, qc, lat Task: Retrieve lat from drought_index whose ts is found in humidity records where type matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075215
train
v3
Sensor network script: Node: pressure | code: gst | fields: type, level, lat, value Sensor: soil_moisture | fields: qc, lon, value, reading Task: Fetch value from pressure where reading is greater than the minimum of value in soil_moisture for matching qc. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075216
train
v2
Sensor network script: Node: turbidity | code: thr | fields: level, lat, ts, type Sensor: lightning | fields: level, type, depth, qc Task: Fetch lon from turbidity that have at least one corresponding lightning measurement for the same depth. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lon", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075217
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: lat, depth, qc, ts Sensor: cloud_cover | fields: type, qc, value, lon Task: Fetch lon from soil_moisture that have at least one corresponding cloud_cover measurement for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075218
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: reading, ts, lat, type Sensor: rainfall | fields: unit, lon, qc, level Task: Get depth from snow_depth where depth exceeds the maximum depth from rainfall for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075219
train
v2
Sensor network script: Node: rainfall | code: mst | fields: level, value, reading, lon Sensor: sunlight | fields: depth, unit, type, value Task: Retrieve depth from rainfall that have at least one matching reading in sunlight sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075220
train
v1
Sensor network script: Node: visibility | code: gst | fields: depth, unit, reading, lon Sensor: soil_moisture | fields: value, level, lon, unit Task: Retrieve lat from visibility whose unit is found in soil_moisture records where unit matches the outer node. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075221
train
v3
Sensor network script: Node: temperature | code: stn | fields: lat, ts, type, value Sensor: rainfall | fields: level, qc, reading, ts Task: Fetch depth from temperature where depth is greater than the average of reading in rainfall for matching qc. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075222
train
v3
Sensor network script: Node: humidity | code: hub | fields: unit, type, qc, ts Sensor: sunlight | fields: qc, value, lat, type Task: Retrieve lon from humidity with depth above the AVG(depth) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("sunlight", code="brt"), match="type"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075223
train
v2
Sensor network script: Node: rainfall | code: stn | fields: unit, reading, qc, ts Sensor: humidity | fields: unit, lat, level, reading Task: Get reading from rainfall where a corresponding entry exists in humidity with the same unit. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075224
train
v2
Sensor network script: Node: turbidity | code: thr | fields: lat, value, depth, lon Sensor: humidity | fields: lat, reading, unit, lon Task: Retrieve lat from turbidity that have at least one matching reading in humidity sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075225
train
v3
Sensor network script: Node: rainfall | code: ref | fields: value, ts, lat, depth Sensor: temperature | fields: level, unit, value, qc Task: Get value from rainfall where reading exceeds the maximum value from temperature for the same depth. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("temperature", code="thr"), match="depth"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075226
train
v3
Sensor network script: Node: uv_index | code: mst | fields: lat, type, qc, value Sensor: drought_index | fields: unit, lat, ts, qc Task: Retrieve level from uv_index with reading above the SUM(depth) of drought_index readings sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("drought_index", code="drt"), match="ts"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075227
train
v1
Sensor network script: Node: lightning | code: prt | fields: unit, qc, depth, type Sensor: evaporation | fields: lat, reading, depth, qc Task: Get lat from lightning where qc appears in evaporation readings with matching qc. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075228
train
v2
Sensor network script: Node: rainfall | code: clr | fields: qc, depth, level, ts Sensor: humidity | fields: unit, reading, lon, qc Task: Get lat from rainfall where a corresponding entry exists in humidity with the same type. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lat", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075229
train
v2
Sensor network script: Node: sunlight | code: clr | fields: type, reading, value, depth Sensor: frost | fields: ts, depth, value, qc Task: Get lat from sunlight where a corresponding entry exists in frost with the same ts. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lat", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075230
train
v1
Sensor network script: Node: pressure | code: prt | fields: unit, level, lat, value Sensor: turbidity | fields: lat, ts, qc, value Task: Fetch value from pressure where qc exists in turbidity sensor data for the same qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="qc", ), output="value", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075231
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: depth, ts, level, type Sensor: visibility | fields: reading, value, lat, lon Task: Retrieve reading from soil_moisture with reading above the AVG(value) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="qc"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075232
train
v1
Sensor network script: Node: evaporation | code: ref | fields: ts, type, unit, lon Sensor: visibility | fields: lon, ts, level, unit Task: Get reading from evaporation where depth appears in visibility readings with matching qc. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075233
train
v2
Sensor network script: Node: air_quality | code: stn | fields: depth, level, reading, ts Sensor: lightning | fields: lat, value, reading, depth Task: Fetch value from air_quality that have at least one corresponding lightning measurement for the same depth. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "value", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075234
train
v3
Sensor network script: Node: dew_point | code: gst | fields: type, ts, qc, lat Sensor: temperature | fields: level, value, depth, reading Task: Get value from dew_point where value exceeds the maximum value from temperature for the same ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("temperature", code="thr"), match="ts"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075235
train
v1
Sensor network script: Node: drought_index | code: thr | fields: level, qc, unit, reading Sensor: evaporation | fields: qc, type, reading, ts Task: Retrieve depth from drought_index whose depth is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="ts", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075236
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: depth, reading, level, type Sensor: air_quality | fields: level, type, lat, value Task: Get reading from wind_speed where type appears in air_quality readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="depth", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "reading", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075237
train
v1
Sensor network script: Node: dew_point | code: mst | fields: value, unit, lon, depth Sensor: temperature | fields: unit, type, qc, level Task: Get lat from dew_point where depth appears in temperature readings with matching type. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="type", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075238
train
v1
Sensor network script: Node: uv_index | code: mst | fields: unit, lat, depth, qc Sensor: evaporation | fields: lat, value, lon, depth Task: Retrieve depth from uv_index whose type is found in evaporation records where depth matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="depth", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075239
train
v1
Sensor network script: Node: humidity | code: prt | fields: lon, level, lat, ts Sensor: temperature | fields: lon, level, reading, ts Task: Fetch lon from humidity where qc exists in temperature sensor data for the same depth. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="depth", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075240
train
v1
Sensor network script: Node: rainfall | code: mst | fields: qc, ts, lat, lon Sensor: humidity | fields: depth, lat, type, ts Task: Fetch level from rainfall where qc exists in humidity sensor data for the same ts. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="ts", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075241
train
v1
Sensor network script: Node: pressure | code: clr | fields: lon, reading, ts, qc Sensor: dew_point | fields: ts, type, reading, unit Task: Get level from pressure where ts appears in dew_point readings with matching depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="depth", ), output="level", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075242
train
v3
Sensor network script: Node: turbidity | code: gst | fields: level, type, unit, value Sensor: humidity | fields: lat, unit, qc, ts Task: Retrieve lon from turbidity with reading above the AVG(depth) of humidity readings sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("humidity", code="hgr"), match="ts"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "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_075243
train
v2
Sensor network script: Node: uv_index | code: stn | fields: unit, lat, ts, lon Sensor: evaporation | fields: level, lon, reading, lat Task: Retrieve reading from uv_index that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075244
train
v2
Sensor network script: Node: pressure | code: gst | fields: depth, reading, qc, value Sensor: drought_index | fields: reading, type, qc, depth Task: Get value from pressure where a corresponding entry exists in drought_index with the same type. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="value", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "value", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075245
train
v2
Sensor network script: Node: turbidity | code: gst | fields: type, level, depth, lat Sensor: snow_depth | fields: level, unit, ts, lat Task: Retrieve lat from turbidity that have at least one matching reading in snow_depth sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lat", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075246
train
v3
Sensor network script: Node: dew_point | code: ref | fields: type, depth, lat, qc Sensor: soil_moisture | fields: ts, lon, level, reading Task: Get lon from dew_point where depth exceeds the count of depth from soil_moisture for the same ts. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075247
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: reading, lat, ts, qc Sensor: humidity | fields: qc, lon, depth, type Task: Fetch lon from wind_speed where value is greater than the total of value in humidity for matching type. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("humidity", code="hgr"), match="type"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075248
train
v1
Sensor network script: Node: visibility | code: ref | fields: type, lon, depth, lat Sensor: snow_depth | fields: lon, reading, unit, level Task: Fetch level from visibility where qc exists in snow_depth sensor data for the same qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="qc", ), output="level", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075249
train
v2
Sensor network script: Node: drought_index | code: clr | fields: reading, type, value, ts Sensor: soil_moisture | fields: ts, reading, depth, level Task: Get lon from drought_index where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075250
train
v1
Sensor network script: Node: evaporation | code: hub | fields: lon, depth, qc, value Sensor: soil_moisture | fields: value, lon, unit, lat Task: Get reading from evaporation where type appears in soil_moisture readings with matching ts. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075251
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: lat, ts, value, lon Sensor: temperature | fields: level, lon, value, qc Task: Fetch lon from soil_moisture where type exists in temperature sensor data for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="type", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075252
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: value, ts, depth, lat Sensor: soil_moisture | fields: level, lat, type, reading Task: Fetch reading from wind_speed where qc exists in soil_moisture sensor data for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075253
train
v3
Sensor network script: Node: pressure | code: prt | fields: unit, value, qc, level Sensor: snow_depth | fields: type, ts, unit, qc Task: Get reading from pressure where depth exceeds the count of depth from snow_depth for the same type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="type"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075254
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: qc, type, value, unit Sensor: wind_speed | fields: value, depth, type, lat Task: Retrieve depth from soil_moisture whose type is found in wind_speed records where type matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="type", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075255
train
v3
Sensor network script: Node: sunlight | code: prt | fields: depth, unit, ts, level Sensor: frost | fields: lon, ts, value, lat Task: Retrieve depth from sunlight with reading above the AVG(reading) of frost readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("frost", code="frs"), match="qc"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075256
train
v3
Sensor network script: Node: pressure | code: ref | fields: value, ts, reading, level Sensor: air_quality | fields: unit, qc, type, depth Task: Get value from pressure where value exceeds the average reading from air_quality for the same type. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("air_quality", code="prt"), match="type"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075257
train
v2
Sensor network script: Node: sunlight | code: thr | fields: type, reading, lat, value Sensor: rainfall | fields: level, type, lon, ts Task: Retrieve level from sunlight that have at least one matching reading in rainfall sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "level", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075258
train
v1
Sensor network script: Node: pressure | code: stn | fields: reading, lat, lon, qc Sensor: cloud_cover | fields: qc, lat, ts, value Task: Fetch lon from pressure where ts exists in cloud_cover sensor data for the same ts. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075259
train
v3
Sensor network script: Node: uv_index | code: ref | fields: depth, reading, type, unit Sensor: dew_point | fields: reading, ts, qc, level Task: Retrieve lon from uv_index with reading above the SUM(reading) of dew_point readings sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="qc"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075260
train
v2
Sensor network script: Node: frost | code: thr | fields: unit, reading, lat, ts Sensor: pressure | fields: ts, value, level, type Task: Get level from frost where a corresponding entry exists in pressure with the same qc. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075261
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: lat, ts, depth, lon Sensor: cloud_cover | fields: lon, unit, value, lat Task: Fetch level from soil_moisture that have at least one corresponding cloud_cover measurement for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "level", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075262
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: qc, reading, level, unit Sensor: lightning | fields: qc, unit, depth, lat Task: Retrieve lon from soil_moisture with value above the MIN(reading) of lightning readings sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="depth"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lon", "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_075263
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: type, level, unit, reading Sensor: cloud_cover | fields: lat, reading, lon, depth Task: Retrieve lat from soil_moisture whose qc is found in cloud_cover records where unit matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075264
train
v2
Sensor network script: Node: pressure | code: prt | fields: unit, lat, ts, lon Sensor: turbidity | fields: level, qc, ts, lon Task: Fetch level from pressure that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075265
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: lon, reading, qc, lat Sensor: snow_depth | fields: unit, qc, level, depth Task: Retrieve lat from cloud_cover whose qc is found in snow_depth records where qc matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="qc", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075266
train
v1
Sensor network script: Node: drought_index | code: hub | fields: qc, lon, reading, lat Sensor: humidity | fields: lat, reading, depth, type Task: Retrieve depth from drought_index whose qc is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075267
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: value, lat, depth, lon Sensor: cloud_cover | fields: ts, depth, type, lat Task: Get reading from soil_moisture where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075268
train
v3
Sensor network script: Node: visibility | code: stn | fields: lat, lon, reading, ts Sensor: wind_speed | fields: reading, unit, qc, value Task: Get reading from visibility where value exceeds the count of value from wind_speed for the same type. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("wind_speed", code="gst"), match="type"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075269
train
v2
Sensor network script: Node: lightning | code: thr | fields: qc, ts, value, depth Sensor: humidity | fields: lon, unit, depth, qc Task: Fetch lat from lightning that have at least one corresponding humidity measurement for the same type. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075270
train
v2
Sensor network script: Node: uv_index | code: hub | fields: ts, unit, value, depth Sensor: humidity | fields: ts, reading, lon, type Task: Retrieve value from uv_index that have at least one matching reading in humidity sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075271
train
v2
Sensor network script: Node: air_quality | code: prt | fields: level, qc, value, lat Sensor: humidity | fields: ts, reading, lon, type Task: Retrieve level from air_quality that have at least one matching reading in humidity sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075272
train
v2
Sensor network script: Node: visibility | code: clr | fields: depth, unit, reading, qc Sensor: cloud_cover | fields: qc, level, depth, type Task: Fetch lon from visibility that have at least one corresponding cloud_cover measurement for the same unit. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075273
train
v3
Sensor network script: Node: turbidity | code: mst | fields: depth, lat, ts, value Sensor: dew_point | fields: ts, type, lat, depth Task: Retrieve value from turbidity with reading above the MIN(value) of dew_point readings sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("dew_point", code="cnd"), match="ts"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075274
train
v2
Sensor network script: Node: uv_index | code: prt | fields: level, value, depth, type Sensor: wind_speed | fields: lat, type, ts, qc Task: Get reading from uv_index where a corresponding entry exists in wind_speed with the same type. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075275
train
v3
Sensor network script: Node: visibility | code: stn | fields: qc, type, value, lat Sensor: lightning | fields: unit, type, reading, depth Task: Get lat from visibility where depth exceeds the maximum value from lightning for the same type. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("lightning", code="tnd"), match="type"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075276
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: type, unit, value, reading Sensor: uv_index | fields: lon, qc, level, type Task: Retrieve lon from soil_moisture whose qc is found in uv_index records where qc matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="qc", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075277
train
v2
Sensor network script: Node: dew_point | code: gst | fields: ts, value, reading, unit Sensor: soil_moisture | fields: reading, depth, ts, level Task: Retrieve reading from dew_point that have at least one matching reading in soil_moisture sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075278
train
v2
Sensor network script: Node: sunlight | code: stn | fields: lon, depth, level, type Sensor: wind_speed | fields: lat, reading, level, qc Task: Fetch lon from sunlight that have at least one corresponding wind_speed measurement for the same ts. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lon", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075279
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: reading, depth, ts, value Sensor: drought_index | fields: ts, lat, depth, lon Task: Fetch lat from snow_depth where depth is greater than the maximum of reading in drought_index for matching depth. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("drought_index", code="drt"), match="depth"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075280
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: reading, lon, level, depth Sensor: uv_index | fields: lat, type, ts, value Task: Fetch lon from snow_depth that have at least one corresponding uv_index measurement for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075281
train
v1
Sensor network script: Node: air_quality | code: clr | fields: ts, value, type, level Sensor: temperature | fields: level, reading, depth, lon Task: Fetch level from air_quality where ts exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="qc", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075282
train
v1
Sensor network script: Node: drought_index | code: thr | fields: reading, level, ts, depth Sensor: evaporation | fields: depth, value, ts, level Task: Fetch depth from drought_index where unit exists in evaporation sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="depth", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075283
train
v1
Sensor network script: Node: visibility | code: clr | fields: lat, unit, qc, value Sensor: pressure | fields: reading, unit, level, ts Task: Retrieve lon from visibility whose depth is found in pressure records where unit matches the outer node. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="unit", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075284
train
v2
Sensor network script: Node: humidity | code: ref | fields: level, lon, value, ts Sensor: cloud_cover | fields: ts, lat, lon, unit Task: Get lon from humidity where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lon", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075285
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: depth, level, ts, reading Sensor: pressure | fields: level, qc, depth, reading Task: Retrieve level from snow_depth that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "level", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075286
train
v1
Sensor network script: Node: visibility | code: mst | fields: ts, value, lon, reading Sensor: snow_depth | fields: qc, depth, value, level Task: Get lon from visibility where type appears in snow_depth readings with matching qc. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075287
train
v1
Sensor network script: Node: visibility | code: mst | fields: value, lon, reading, lat Sensor: rainfall | fields: level, qc, depth, lon Task: Get lat from visibility where unit appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="unit", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075288
train
v1
Sensor network script: Node: temperature | code: thr | fields: qc, lat, unit, depth Sensor: rainfall | fields: type, qc, ts, unit Task: Retrieve lat from temperature whose ts is found in rainfall records where type matches the outer node. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="type", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075289
train
v1
Sensor network script: Node: air_quality | code: stn | fields: unit, value, lon, ts Sensor: lightning | fields: qc, lon, lat, type Task: Retrieve level from air_quality whose unit is found in lightning records where unit matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="unit", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075290
train
v3
Sensor network script: Node: uv_index | code: gst | fields: level, reading, ts, qc Sensor: pressure | fields: type, ts, lon, value Task: Retrieve depth from uv_index with reading above the MAX(depth) of pressure readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("pressure", code="mbl"), match="unit"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075291
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: reading, lon, unit, depth Sensor: evaporation | fields: qc, type, reading, lat Task: Retrieve lon from cloud_cover whose type is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="unit", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "type", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075292
train
v2
Sensor network script: Node: turbidity | code: hub | fields: qc, level, unit, depth Sensor: uv_index | fields: unit, value, qc, type Task: Get depth from turbidity where a corresponding entry exists in uv_index with the same unit. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075293
train
v1
Sensor network script: Node: humidity | code: prt | fields: qc, reading, lon, level Sensor: frost | fields: value, depth, ts, reading Task: Fetch lat from humidity where ts exists in frost sensor data for the same depth. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="depth", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075294
train
v3
Sensor network script: Node: humidity | code: gst | fields: qc, depth, level, type Sensor: pressure | fields: level, ts, type, qc Task: Retrieve lat from humidity with reading above the SUM(depth) of pressure readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("pressure", code="mbl"), match="unit"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075295
train
v2
Sensor network script: Node: air_quality | code: mst | fields: unit, level, depth, ts Sensor: visibility | fields: lat, ts, reading, type Task: Retrieve depth from air_quality that have at least one matching reading in visibility sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075296
train
v3
Sensor network script: Node: dew_point | code: prt | fields: depth, unit, level, qc Sensor: wind_speed | fields: lon, lat, qc, unit Task: Retrieve value from dew_point with depth above the MAX(depth) of wind_speed readings sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("wind_speed", code="gst"), match="depth"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075297
train
v1
Sensor network script: Node: evaporation | code: mst | fields: unit, level, ts, value Sensor: wind_speed | fields: lon, lat, value, qc Task: Retrieve value from evaporation whose unit is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="qc", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075298
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: type, reading, level, value Sensor: visibility | fields: value, unit, level, lat Task: Get level from cloud_cover where depth exceeds the minimum value from visibility for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("visibility", code="clr"), match="type"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075299
train