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: turbidity | code: mst | fields: lat, type, level, value Sensor: wind_speed | fields: ts, reading, lon, qc Task: Get depth from turbidity where value exceeds the maximum value from wind_speed for the same qc. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("wind_speed", code="gst"), match="qc"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063300
train
v3
Sensor network script: Node: turbidity | code: prt | fields: lat, ts, unit, lon Sensor: visibility | fields: qc, reading, level, depth Task: Fetch depth from turbidity where value is greater than the average of value in visibility for matching ts. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063301
train
v2
Sensor network script: Node: uv_index | code: stn | fields: value, lat, level, ts Sensor: evaporation | fields: lat, unit, level, reading Task: Get depth from uv_index where a corresponding entry exists in evaporation with the same unit. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063302
train
v2
Sensor network script: Node: frost | code: ref | fields: reading, value, lat, ts Sensor: lightning | fields: ts, level, reading, type Task: Get reading from frost where a corresponding entry exists in lightning with the same depth. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="reading", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "reading", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063303
train
v2
Sensor network script: Node: temperature | code: thr | fields: level, ts, unit, qc Sensor: rainfall | fields: value, type, depth, unit Task: Get depth from temperature where a corresponding entry exists in rainfall with the same qc. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063304
train
v3
Sensor network script: Node: turbidity | code: hub | fields: unit, depth, reading, ts Sensor: air_quality | fields: depth, lon, ts, level Task: Get level from turbidity where value exceeds the maximum depth from air_quality for the same unit. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="unit"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063305
train
v3
Sensor network script: Node: dew_point | code: stn | fields: level, value, lat, qc Sensor: soil_moisture | fields: ts, qc, level, lat Task: Retrieve level from dew_point with depth above the SUM(depth) of soil_moisture readings sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063306
train
v2
Sensor network script: Node: evaporation | code: hub | fields: qc, reading, lat, lon Sensor: humidity | fields: lon, reading, unit, qc Task: Retrieve depth from evaporation that have at least one matching reading in humidity sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063307
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: ts, depth, qc, reading Sensor: evaporation | fields: lat, value, lon, qc Task: Retrieve reading from snow_depth with value above the COUNT(reading) of evaporation readings sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("evaporation", code="evp"), match="type"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063308
train
v1
Sensor network script: Node: evaporation | code: stn | fields: unit, value, depth, type Sensor: drought_index | fields: lon, reading, qc, level Task: Get depth from evaporation where ts appears in drought_index readings with matching unit. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="unit", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063309
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: level, value, reading, unit Sensor: frost | fields: lon, depth, reading, type Task: Retrieve level from snow_depth whose qc is found in frost records where type matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="type", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063310
train
v2
Sensor network script: Node: temperature | code: gst | fields: reading, ts, level, depth Sensor: sunlight | fields: unit, level, value, qc Task: Fetch lat from temperature that have at least one corresponding sunlight measurement for the same qc. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063311
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: qc, type, lon, value Sensor: visibility | fields: ts, lon, level, type Task: Fetch level from wind_speed where depth is greater than the minimum of value in visibility for matching ts. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063312
train
v3
Sensor network script: Node: visibility | code: ref | fields: type, lat, lon, ts Sensor: turbidity | fields: depth, lon, type, lat Task: Get lat from visibility where depth exceeds the minimum depth from turbidity for the same depth. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("turbidity", code="ftu"), match="depth"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063313
train
v3
Sensor network script: Node: evaporation | code: gst | fields: qc, depth, lon, lat Sensor: cloud_cover | fields: lon, qc, type, reading Task: Get lat from evaporation where reading exceeds the total depth from cloud_cover for the same ts. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063314
train
v3
Sensor network script: Node: air_quality | code: prt | fields: lat, depth, reading, lon Sensor: frost | fields: qc, value, level, lon Task: Get depth from air_quality where value exceeds the maximum depth from frost for the same ts. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("frost", code="frs"), match="ts"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063315
train
v1
Sensor network script: Node: temperature | code: prt | fields: value, ts, type, qc Sensor: soil_moisture | fields: qc, depth, reading, ts Task: Fetch depth from temperature where ts exists in soil_moisture sensor data for the same ts. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063316
train
v3
Sensor network script: Node: turbidity | code: ref | fields: type, value, unit, lon Sensor: pressure | fields: unit, depth, lon, value Task: Fetch value from turbidity where depth is greater than the maximum of reading in pressure for matching qc. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("pressure", code="mbl"), match="qc"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063317
train
v3
Sensor network script: Node: pressure | code: prt | fields: depth, level, unit, type Sensor: dew_point | fields: depth, unit, lat, qc Task: Get value from pressure where value exceeds the minimum reading from dew_point for the same ts. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063318
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: ts, depth, value, unit Sensor: dew_point | fields: level, qc, type, reading Task: Fetch level from soil_moisture where qc exists in dew_point sensor data for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="qc", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063319
train
v1
Sensor network script: Node: frost | code: ref | fields: lon, unit, ts, depth Sensor: cloud_cover | fields: depth, lon, level, reading Task: Retrieve level from frost whose type is found in cloud_cover records where qc matches the outer node. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063320
train
v2
Sensor network script: Node: rainfall | code: gst | fields: type, depth, value, lon Sensor: snow_depth | fields: lon, qc, lat, value Task: Retrieve depth from rainfall that have at least one matching reading in snow_depth sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063321
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: ts, unit, value, depth Sensor: frost | fields: value, lat, lon, unit Task: Get lat from wind_speed where depth appears in frost readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="depth", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063322
train
v2
Sensor network script: Node: visibility | code: stn | fields: level, type, qc, ts Sensor: snow_depth | fields: reading, level, ts, lat Task: Retrieve level from visibility that have at least one matching reading in snow_depth sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="level", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "level", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063323
train
v1
Sensor network script: Node: rainfall | code: clr | fields: depth, lat, reading, qc Sensor: wind_speed | fields: value, lon, qc, type Task: Retrieve depth from rainfall whose type is found in wind_speed records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="ts", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "type", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063324
train
v3
Sensor network script: Node: pressure | code: hub | fields: unit, type, lat, ts Sensor: cloud_cover | fields: lon, depth, reading, value Task: Retrieve lon from pressure with reading above the COUNT(depth) of cloud_cover readings sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063325
train
v2
Sensor network script: Node: rainfall | code: clr | fields: ts, unit, lon, reading Sensor: air_quality | fields: reading, ts, unit, qc Task: Fetch value from rainfall that have at least one corresponding air_quality measurement for the same depth. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063326
train
v2
Sensor network script: Node: uv_index | code: clr | fields: reading, lon, qc, level Sensor: snow_depth | fields: level, lon, qc, reading Task: Retrieve lat from uv_index that have at least one matching reading in snow_depth sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lat", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063327
train
v3
Sensor network script: Node: humidity | code: ref | fields: lat, type, lon, ts Sensor: snow_depth | fields: depth, qc, lon, value Task: Retrieve reading from humidity with value above the SUM(reading) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063328
train
v3
Sensor network script: Node: rainfall | code: ref | fields: lat, qc, value, reading Sensor: sunlight | fields: type, level, ts, reading Task: Fetch lat from rainfall where value is greater than the total of reading in sunlight for matching unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("sunlight", code="brt"), match="unit"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063329
train
v2
Sensor network script: Node: lightning | code: prt | fields: depth, lat, level, ts Sensor: cloud_cover | fields: value, type, qc, depth Task: Fetch depth from lightning that have at least one corresponding cloud_cover measurement for the same type. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063330
train
v1
Sensor network script: Node: visibility | code: stn | fields: unit, lat, depth, reading Sensor: drought_index | fields: lon, unit, lat, reading Task: Retrieve level from visibility whose ts is found in drought_index records where depth matches the outer node. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="depth", ), output="level", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063331
train
v2
Sensor network script: Node: uv_index | code: hub | fields: depth, qc, reading, lon Sensor: snow_depth | fields: type, value, depth, ts Task: Get depth from uv_index where a corresponding entry exists in snow_depth with the same ts. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063332
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: depth, type, level, lon Sensor: frost | fields: lat, lon, unit, value Task: Get depth from soil_moisture where a corresponding entry exists in frost with the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063333
train
v1
Sensor network script: Node: evaporation | code: clr | fields: unit, type, reading, lat Sensor: lightning | fields: reading, lon, unit, ts Task: Fetch lat from evaporation where depth exists in lightning sensor data for the same type. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="type", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063334
train
v3
Sensor network script: Node: uv_index | code: stn | fields: reading, level, unit, value Sensor: sunlight | fields: ts, level, reading, type Task: Fetch level from uv_index where depth is greater than the total of value in sunlight for matching qc. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("sunlight", code="brt"), match="qc"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063335
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: depth, value, ts, unit Sensor: dew_point | fields: unit, depth, reading, lat Task: Fetch level from soil_moisture that have at least one corresponding dew_point measurement for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063336
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: type, level, unit, ts Sensor: snow_depth | fields: value, type, ts, qc Task: Get level from wind_speed where a corresponding entry exists in snow_depth with the same ts. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "level", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063337
train
v3
Sensor network script: Node: turbidity | code: stn | fields: value, reading, ts, lon Sensor: dew_point | fields: lat, level, value, qc Task: Get value from turbidity where reading exceeds the minimum value from dew_point for the same type. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("dew_point", code="cnd"), match="type"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063338
train
v2
Sensor network script: Node: temperature | code: mst | fields: reading, depth, lat, type Sensor: lightning | fields: qc, lat, value, lon Task: Fetch lon from temperature that have at least one corresponding lightning measurement for the same qc. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063339
train
v2
Sensor network script: Node: frost | code: hub | fields: reading, type, lon, level Sensor: drought_index | fields: lat, ts, qc, value Task: Fetch depth from frost that have at least one corresponding drought_index measurement for the same unit. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="depth", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063340
train
v2
Sensor network script: Node: pressure | code: prt | fields: depth, ts, lat, unit Sensor: wind_speed | fields: value, lon, reading, unit Task: Get level from pressure where a corresponding entry exists in wind_speed with the same type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063341
train
v2
Sensor network script: Node: frost | code: mst | fields: qc, lon, reading, lat Sensor: humidity | fields: value, unit, ts, level Task: Retrieve lat from frost that have at least one matching reading in humidity sharing the same depth. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="lat", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063342
train
v1
Sensor network script: Node: temperature | code: thr | fields: type, lat, qc, level Sensor: air_quality | fields: unit, depth, level, value Task: Fetch lon from temperature where depth exists in air_quality sensor data for the same type. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="type", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063343
train
v3
Sensor network script: Node: visibility | code: mst | fields: unit, lon, depth, value Sensor: wind_speed | fields: ts, qc, unit, reading Task: Get level from visibility where value exceeds the total reading from wind_speed for the same type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063344
train
v3
Sensor network script: Node: evaporation | code: ref | fields: ts, lon, type, reading Sensor: soil_moisture | fields: depth, lat, lon, qc Task: Get depth from evaporation where value exceeds the average depth from soil_moisture for the same ts. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063345
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: value, level, lon, ts Sensor: temperature | fields: type, lat, qc, unit Task: Retrieve lat from cloud_cover whose depth is found in temperature records where type matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lat", "filter_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063346
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: depth, reading, qc, type Sensor: wind_speed | fields: ts, depth, reading, level Task: Get lon from soil_moisture where a corresponding entry exists in wind_speed with the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063347
train
v2
Sensor network script: Node: evaporation | code: clr | fields: lon, reading, ts, type Sensor: temperature | fields: qc, value, type, unit Task: Fetch depth from evaporation that have at least one corresponding temperature measurement for the same type. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063348
train
v2
Sensor network script: Node: visibility | code: clr | fields: level, type, qc, depth Sensor: humidity | fields: lat, reading, level, value Task: Get value from visibility where a corresponding entry exists in humidity with the same unit. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063349
train
v2
Sensor network script: Node: pressure | code: ref | fields: qc, value, depth, type Sensor: uv_index | fields: lat, type, level, depth Task: Get depth from pressure where a corresponding entry exists in uv_index with the same ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063350
train
v3
Sensor network script: Node: turbidity | code: prt | fields: level, lon, ts, depth Sensor: dew_point | fields: lat, value, level, type Task: Retrieve lat from turbidity with reading above the MAX(depth) of dew_point readings sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("dew_point", code="cnd"), match="type"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063351
train
v3
Sensor network script: Node: visibility | code: clr | fields: type, level, unit, lat Sensor: turbidity | fields: reading, lon, type, depth Task: Get level from visibility where reading exceeds the average reading from turbidity for the same depth. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("turbidity", code="ftu"), match="depth"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063352
train
v1
Sensor network script: Node: drought_index | code: ref | fields: unit, qc, type, ts Sensor: air_quality | fields: depth, qc, level, ts Task: Fetch lat from drought_index where ts exists in air_quality sensor data for the same type. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="type", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063353
train
v1
Sensor network script: Node: pressure | code: hub | fields: level, lon, qc, value Sensor: dew_point | fields: reading, qc, lat, depth Task: Retrieve level from pressure whose type is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="unit", ), output="level", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063354
train
v1
Sensor network script: Node: turbidity | code: clr | fields: qc, type, ts, level Sensor: sunlight | fields: lat, reading, unit, ts Task: Get lon from turbidity where ts appears in sunlight readings with matching qc. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="qc", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063355
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: reading, lon, ts, value Sensor: evaporation | fields: lat, value, unit, type Task: Retrieve value from cloud_cover with depth above the SUM(depth) of evaporation readings sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063356
train
v3
Sensor network script: Node: uv_index | code: mst | fields: lat, reading, type, ts Sensor: wind_speed | fields: depth, reading, ts, lon Task: Get lat from uv_index where depth exceeds the total depth from wind_speed for the same ts. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063357
train
v2
Sensor network script: Node: lightning | code: ref | fields: ts, depth, reading, value Sensor: turbidity | fields: depth, reading, ts, value Task: Get lat from lightning where a corresponding entry exists in turbidity with the same depth. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lat", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063358
train
v1
Sensor network script: Node: sunlight | code: prt | fields: type, value, qc, unit Sensor: dew_point | fields: qc, ts, reading, depth Task: Get lon from sunlight where depth appears in dew_point readings with matching depth. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="depth", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063359
train
v3
Sensor network script: Node: turbidity | code: mst | fields: value, lat, reading, unit Sensor: soil_moisture | fields: value, ts, lat, lon Task: Fetch lon from turbidity where reading is greater than the minimum of value in soil_moisture for matching unit. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063360
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: value, type, qc, reading Sensor: drought_index | fields: ts, lon, reading, depth Task: Get lat from wind_speed where value exceeds the maximum reading from drought_index for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("drought_index", code="drt"), match="depth"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063361
train
v1
Sensor network script: Node: visibility | code: prt | fields: value, level, lat, unit Sensor: turbidity | fields: unit, depth, reading, lon Task: Fetch level from visibility where qc exists in turbidity sensor data for the same depth. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063362
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: depth, lat, ts, unit Sensor: air_quality | fields: type, ts, qc, lat Task: Get reading from soil_moisture where a corresponding entry exists in air_quality with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063363
train
v1
Sensor network script: Node: visibility | code: stn | fields: unit, lat, qc, level Sensor: sunlight | fields: unit, type, ts, level Task: Get lon from visibility where depth appears in sunlight readings with matching qc. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="qc", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063364
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: unit, depth, lon, lat Sensor: temperature | fields: depth, qc, lon, lat Task: Retrieve lon from cloud_cover that have at least one matching reading in temperature sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063365
train
v3
Sensor network script: Node: air_quality | code: clr | fields: ts, level, type, qc Sensor: snow_depth | fields: qc, lat, reading, level Task: Fetch depth from air_quality where reading is greater than the minimum of value in snow_depth for matching depth. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="depth"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063366
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: depth, value, lat, unit Sensor: uv_index | fields: depth, value, lat, unit Task: Fetch value from wind_speed that have at least one corresponding uv_index measurement for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "value", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063367
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: unit, lat, type, depth Sensor: uv_index | fields: unit, lat, qc, level Task: Get lat from snow_depth where reading exceeds the minimum depth from uv_index for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("uv_index", code="flx"), match="depth"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063368
train
v3
Sensor network script: Node: dew_point | code: thr | fields: lon, ts, reading, unit Sensor: frost | fields: qc, unit, level, reading Task: Fetch lon from dew_point where depth is greater than the maximum of value in frost for matching depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("frost", code="frs"), match="depth"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063369
train
v1
Sensor network script: Node: sunlight | code: hub | fields: ts, lat, qc, level Sensor: drought_index | fields: value, level, unit, reading Task: Get level from sunlight where ts appears in drought_index readings with matching qc. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063370
train
v2
Sensor network script: Node: frost | code: clr | fields: ts, value, level, qc Sensor: humidity | fields: qc, reading, value, lat Task: Retrieve level from frost that have at least one matching reading in humidity sharing the same unit. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="level", )
{ "outer_table": "frost", "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_063371
train
v3
Sensor network script: Node: sunlight | code: mst | fields: ts, reading, lon, type Sensor: turbidity | fields: lat, reading, value, level Task: Get depth from sunlight where value exceeds the maximum reading from turbidity for the same unit. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("turbidity", code="ftu"), match="unit"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063372
train
v2
Sensor network script: Node: lightning | code: clr | fields: type, unit, value, lat Sensor: drought_index | fields: type, qc, ts, depth Task: Retrieve depth from lightning that have at least one matching reading in drought_index sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063373
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: lon, ts, depth, reading Sensor: rainfall | fields: unit, reading, type, level Task: Retrieve level from cloud_cover with depth above the SUM(reading) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063374
train
v3
Sensor network script: Node: lightning | code: clr | fields: lat, level, depth, lon Sensor: drought_index | fields: ts, lat, reading, level Task: Retrieve reading from lightning with reading above the SUM(value) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="qc"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063375
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: qc, type, ts, lat Sensor: wind_speed | fields: type, value, lat, unit Task: Get lat from snow_depth where qc appears in wind_speed readings with matching qc. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063376
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: qc, value, type, lon Sensor: uv_index | fields: reading, level, type, ts Task: Retrieve lat from cloud_cover that have at least one matching reading in uv_index sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lat", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063377
train
v3
Sensor network script: Node: uv_index | code: stn | fields: lon, reading, level, depth Sensor: humidity | fields: type, unit, lat, reading Task: Get lon from uv_index where depth exceeds the count of depth from humidity for the same type. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("humidity", code="hgr"), match="type"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063378
train
v1
Sensor network script: Node: air_quality | code: ref | fields: reading, unit, level, depth Sensor: visibility | fields: ts, unit, value, reading Task: Get level from air_quality where ts appears in visibility readings with matching qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="qc", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063379
train
v3
Sensor network script: Node: sunlight | code: thr | fields: reading, ts, lon, type Sensor: wind_speed | fields: unit, ts, qc, reading Task: Retrieve lon from sunlight with value above the AVG(reading) of wind_speed readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("wind_speed", code="gst"), match="depth"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063380
train
v3
Sensor network script: Node: air_quality | code: clr | fields: qc, reading, depth, type Sensor: uv_index | fields: depth, value, lon, type Task: Get depth from air_quality where depth exceeds the average value from uv_index for the same qc. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("uv_index", code="flx"), match="qc"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063381
train
v3
Sensor network script: Node: humidity | code: stn | fields: lat, ts, value, level Sensor: rainfall | fields: unit, ts, level, qc Task: Retrieve reading from humidity with value above the MIN(reading) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063382
train
v3
Sensor network script: Node: lightning | code: prt | fields: value, type, unit, qc Sensor: evaporation | fields: depth, level, lat, reading Task: Get value from lightning where value exceeds the count of value from evaporation for the same qc. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("evaporation", code="evp"), match="qc"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063383
train
v1
Sensor network script: Node: rainfall | code: prt | fields: type, lon, value, ts Sensor: visibility | fields: lat, value, ts, depth Task: Retrieve lat from rainfall whose unit is found in visibility records where depth matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="depth", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063384
train
v2
Sensor network script: Node: rainfall | code: gst | fields: level, lat, qc, lon Sensor: uv_index | fields: unit, reading, qc, value Task: Get reading from rainfall where a corresponding entry exists in uv_index with the same type. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "reading", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063385
train
v3
Sensor network script: Node: rainfall | code: mst | fields: reading, level, type, depth Sensor: evaporation | fields: depth, type, lat, ts Task: Get lon from rainfall where depth exceeds the total value from evaporation for the same ts. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("evaporation", code="evp"), match="ts"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063386
train
v2
Sensor network script: Node: humidity | code: ref | fields: lon, unit, type, value Sensor: frost | fields: level, depth, lat, ts Task: Fetch value from humidity that have at least one corresponding frost measurement for the same type. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="value", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "value", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063387
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: lon, depth, ts, type Sensor: dew_point | fields: unit, type, qc, ts Task: Retrieve level from wind_speed that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "level", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063388
train
v3
Sensor network script: Node: drought_index | code: thr | fields: level, lat, reading, value Sensor: cloud_cover | fields: depth, ts, value, lat Task: Get depth from drought_index where depth exceeds the minimum reading from cloud_cover for the same unit. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063389
train
v3
Sensor network script: Node: uv_index | code: mst | fields: qc, lat, unit, value Sensor: cloud_cover | fields: value, lat, lon, ts Task: Get value from uv_index where reading exceeds the average depth from cloud_cover for the same type. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063390
train
v2
Sensor network script: Node: drought_index | code: gst | fields: qc, lat, reading, depth Sensor: soil_moisture | fields: unit, ts, qc, lat Task: Fetch value from drought_index that have at least one corresponding soil_moisture measurement for the same ts. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "value", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063391
train
v3
Sensor network script: Node: frost | code: hub | fields: reading, lon, qc, level Sensor: dew_point | fields: value, ts, type, level Task: Retrieve value from frost with depth above the SUM(value) of dew_point readings sharing the same unit. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("dew_point", code="cnd"), match="unit"), ), output="value", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063392
train
v1
Sensor network script: Node: temperature | code: ref | fields: level, type, lat, reading Sensor: humidity | fields: qc, lat, lon, reading Task: Fetch lon from temperature where unit exists in humidity sensor data for the same type. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="type", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063393
train
v2
Sensor network script: Node: uv_index | code: mst | fields: value, qc, unit, ts Sensor: turbidity | fields: depth, reading, lon, level Task: Get lon from uv_index where a corresponding entry exists in turbidity with the same unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lon", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063394
train
v1
Sensor network script: Node: frost | code: hub | fields: type, value, qc, reading Sensor: temperature | fields: value, qc, lat, lon Task: Get lon from frost where depth appears in temperature readings with matching type. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="type", ), output="lon", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063395
train
v2
Sensor network script: Node: dew_point | code: hub | fields: lat, level, value, depth Sensor: air_quality | fields: lat, lon, ts, depth Task: Fetch level from dew_point that have at least one corresponding air_quality measurement for the same ts. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "level", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063396
train
v2
Sensor network script: Node: sunlight | code: clr | fields: qc, lon, lat, reading Sensor: pressure | fields: reading, ts, level, type Task: Retrieve value from sunlight that have at least one matching reading in pressure sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "value", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063397
train
v2
Sensor network script: Node: uv_index | code: hub | fields: type, reading, level, value Sensor: pressure | fields: ts, unit, level, lat Task: Get reading from uv_index where a corresponding entry exists in pressure with the same type. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063398
train
v3
Sensor network script: Node: evaporation | code: gst | fields: depth, lat, lon, unit Sensor: drought_index | fields: unit, qc, type, depth Task: Get lon from evaporation where depth exceeds the average value from drought_index for the same qc. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("drought_index", code="drt"), match="qc"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063399
train