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: humidity | code: hub | fields: lat, depth, type, value Sensor: rainfall | fields: unit, level, reading, qc Task: Get level from humidity where value exceeds the minimum depth from rainfall for the same depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074700
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: reading, value, lon, lat Sensor: evaporation | fields: level, reading, ts, unit Task: Retrieve lat from cloud_cover that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074701
train
v2
Sensor network script: Node: air_quality | code: prt | fields: qc, lat, value, lon Sensor: turbidity | fields: qc, value, reading, ts Task: Fetch lon from air_quality that have at least one corresponding turbidity measurement for the same qc. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lon", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074702
train
v1
Sensor network script: Node: uv_index | code: hub | fields: level, unit, reading, type Sensor: evaporation | fields: unit, ts, value, lon Task: Fetch level from uv_index where unit exists in evaporation sensor data for the same depth. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="depth", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074703
train
v1
Sensor network script: Node: sunlight | code: mst | fields: reading, lat, level, lon Sensor: air_quality | fields: lon, lat, reading, type Task: Retrieve value from sunlight whose unit is found in air_quality records where ts matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="ts", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074704
train
v1
Sensor network script: Node: frost | code: clr | fields: ts, level, lon, qc Sensor: drought_index | fields: qc, reading, unit, depth Task: Retrieve level from frost whose qc is found in drought_index records where type matches the outer node. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="type", ), output="level", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074705
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: reading, unit, type, ts Sensor: drought_index | fields: value, reading, depth, type Task: Retrieve lon from snow_depth with depth above the COUNT(depth) of drought_index readings sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("drought_index", code="drt"), match="ts"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074706
train
v2
Sensor network script: Node: evaporation | code: gst | fields: type, level, value, lat Sensor: humidity | fields: value, depth, reading, unit Task: Get lon from evaporation where a corresponding entry exists in humidity with the same depth. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074707
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: depth, lat, unit, lon Sensor: frost | fields: unit, qc, reading, value Task: Retrieve level from snow_depth that have at least one matching reading in frost sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "level", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074708
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: lon, lat, value, depth Sensor: drought_index | fields: type, ts, unit, lat Task: Fetch value from soil_moisture where depth exists in drought_index sensor data for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="depth", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074709
train
v2
Sensor network script: Node: lightning | code: hub | fields: qc, ts, unit, value Sensor: pressure | fields: ts, depth, lat, reading Task: Retrieve lon from lightning that have at least one matching reading in pressure sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074710
train
v3
Sensor network script: Node: frost | code: stn | fields: type, lon, unit, lat Sensor: soil_moisture | fields: ts, lon, type, value Task: Fetch lon from frost where reading is greater than the total of reading in soil_moisture for matching qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074711
train
v3
Sensor network script: Node: sunlight | code: ref | fields: depth, ts, lon, level Sensor: rainfall | fields: unit, level, lon, value Task: Get lat from sunlight where reading exceeds the average depth from rainfall for the same type. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("rainfall", code="rnfl"), match="type"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074712
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: level, type, unit, lat Sensor: turbidity | fields: lat, lon, reading, type Task: Retrieve lon from soil_moisture with reading above the AVG(depth) of turbidity readings sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("turbidity", code="ftu"), match="type"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074713
train
v3
Sensor network script: Node: sunlight | code: ref | fields: lat, unit, type, level Sensor: soil_moisture | fields: qc, unit, type, reading Task: Retrieve depth from sunlight with value above the MAX(reading) of soil_moisture readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074714
train
v2
Sensor network script: Node: rainfall | code: stn | fields: depth, unit, lat, qc Sensor: humidity | fields: value, lat, ts, unit 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_074715
train
v1
Sensor network script: Node: dew_point | code: thr | fields: depth, qc, lon, unit Sensor: turbidity | fields: depth, unit, reading, lon Task: Get lon from dew_point where unit appears in turbidity readings with matching type. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="type", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074716
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: unit, type, reading, ts Sensor: pressure | fields: reading, level, lat, type Task: Retrieve value from snow_depth with value above the AVG(reading) of pressure readings sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("pressure", code="mbl"), match="unit"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074717
train
v1
Sensor network script: Node: drought_index | code: thr | fields: reading, lat, level, depth Sensor: snow_depth | fields: qc, value, ts, lat Task: Get value from drought_index where depth appears in snow_depth readings with matching depth. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="depth", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074718
train
v3
Sensor network script: Node: frost | code: hub | fields: ts, depth, qc, lat Sensor: dew_point | fields: type, level, value, lat Task: Fetch lon from frost where reading is greater than the average of depth in dew_point for matching ts. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("dew_point", code="cnd"), match="ts"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074719
train
v1
Sensor network script: Node: sunlight | code: clr | fields: type, ts, depth, value Sensor: air_quality | fields: value, depth, level, reading Task: Fetch lon from sunlight where unit exists in air_quality sensor data for the same unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="unit", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074720
train
v1
Sensor network script: Node: evaporation | code: mst | fields: ts, value, type, reading Sensor: uv_index | fields: depth, reading, level, ts Task: Retrieve lat from evaporation whose depth is found in uv_index records where unit matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="unit", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074721
train
v2
Sensor network script: Node: air_quality | code: gst | fields: lon, value, level, ts Sensor: soil_moisture | fields: value, qc, lon, lat Task: Retrieve lat from air_quality that have at least one matching reading in soil_moisture sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074722
train
v3
Sensor network script: Node: air_quality | code: clr | fields: qc, value, level, unit Sensor: humidity | fields: lat, level, type, reading Task: Get lon from air_quality where reading exceeds the total depth from humidity for the same qc. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("humidity", code="hgr"), match="qc"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074723
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: depth, ts, reading, lon Sensor: lightning | fields: value, lat, type, qc Task: Fetch depth from snow_depth that have at least one corresponding lightning measurement for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074724
train
v3
Sensor network script: Node: humidity | code: prt | fields: unit, type, value, reading Sensor: rainfall | fields: lon, unit, type, depth Task: Retrieve value from humidity with depth above the AVG(depth) of rainfall readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074725
train
v2
Sensor network script: Node: evaporation | code: gst | fields: depth, type, reading, value Sensor: air_quality | fields: qc, lat, depth, unit Task: Retrieve level from evaporation that have at least one matching reading in air_quality sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "level", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074726
train
v2
Sensor network script: Node: turbidity | code: hub | fields: level, type, lat, lon Sensor: visibility | fields: reading, ts, qc, depth Task: Get reading from turbidity where a corresponding entry exists in visibility with the same depth. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "reading", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074727
train
v3
Sensor network script: Node: air_quality | code: gst | fields: lon, lat, type, unit Sensor: humidity | fields: reading, depth, qc, type Task: Get value from air_quality where depth exceeds the minimum reading from humidity for the same qc. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074728
train
v3
Sensor network script: Node: lightning | code: ref | fields: qc, level, value, depth Sensor: visibility | fields: reading, depth, type, lat Task: Retrieve depth from lightning with reading above the COUNT(value) of visibility readings sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("visibility", code="clr"), match="depth"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074729
train
v2
Sensor network script: Node: turbidity | code: hub | fields: lon, ts, type, unit Sensor: wind_speed | fields: unit, lat, value, type Task: Get level from turbidity where a corresponding entry exists in wind_speed with the same type. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "level", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074730
train
v2
Sensor network script: Node: cloud_cover | code: stn | fields: qc, unit, depth, value Sensor: humidity | fields: depth, ts, qc, lat Task: Retrieve lon from cloud_cover that have at least one matching reading in humidity sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lon", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074731
train
v3
Sensor network script: Node: dew_point | code: clr | fields: type, depth, unit, ts Sensor: wind_speed | fields: value, depth, unit, lat Task: Retrieve lon from dew_point with value above the MAX(depth) of wind_speed readings sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074732
train
v3
Sensor network script: Node: drought_index | code: hub | fields: ts, reading, level, unit Sensor: snow_depth | fields: reading, qc, unit, depth Task: Get depth from drought_index where depth exceeds the average reading from snow_depth for the same depth. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("snow_depth", code="snw"), match="depth"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074733
train
v3
Sensor network script: Node: temperature | code: hub | fields: reading, ts, qc, level Sensor: wind_speed | fields: lat, qc, type, ts Task: Fetch lat from temperature where reading is greater than the count of of depth in wind_speed for matching depth. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="depth"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074734
train
v1
Sensor network script: Node: pressure | code: ref | fields: type, level, ts, qc Sensor: temperature | fields: reading, lat, value, unit Task: Get depth from pressure where ts appears in temperature readings with matching qc. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="qc", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074735
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: unit, reading, type, level Sensor: frost | fields: level, lon, lat, value Task: Retrieve depth from snow_depth that have at least one matching reading in frost sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074736
train
v1
Sensor network script: Node: air_quality | code: hub | fields: level, lon, qc, reading Sensor: humidity | fields: depth, unit, value, lon Task: Fetch lat from air_quality where qc exists in humidity sensor data for the same qc. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="qc", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074737
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: type, lat, level, reading Sensor: drought_index | fields: reading, lon, depth, value Task: Get lon from wind_speed where ts appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="ts", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074738
train
v2
Sensor network script: Node: temperature | code: thr | fields: value, type, level, lat Sensor: uv_index | fields: lat, ts, type, reading Task: Get lon from temperature where a corresponding entry exists in uv_index with the same ts. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lon", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074739
train
v3
Sensor network script: Node: turbidity | code: thr | fields: lon, level, value, reading Sensor: evaporation | fields: lat, unit, qc, reading Task: Fetch level from turbidity where depth is greater than the average of depth in evaporation for matching depth. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("evaporation", code="evp"), match="depth"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074740
train
v1
Sensor network script: Node: frost | code: hub | fields: reading, type, lat, lon Sensor: soil_moisture | fields: value, reading, ts, lon Task: Get level from frost where depth appears in soil_moisture readings with matching unit. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="level", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074741
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: lon, depth, unit, value Sensor: soil_moisture | fields: type, lat, value, level Task: Retrieve lon from cloud_cover with depth above the COUNT(depth) of soil_moisture readings sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074742
train
v2
Sensor network script: Node: drought_index | code: ref | fields: lat, reading, type, level Sensor: wind_speed | fields: lat, lon, depth, qc Task: Retrieve reading from drought_index that have at least one matching reading in wind_speed sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "reading", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074743
train
v1
Sensor network script: Node: rainfall | code: prt | fields: level, type, reading, lon Sensor: lightning | fields: lat, depth, type, reading Task: Fetch reading from rainfall where unit exists in lightning sensor data for the same qc. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="qc", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074744
train
v3
Sensor network script: Node: rainfall | code: ref | fields: level, depth, lon, unit Sensor: humidity | fields: qc, type, lat, depth Task: Get reading from rainfall where value exceeds the total value from humidity for the same unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("humidity", code="hgr"), match="unit"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074745
train
v3
Sensor network script: Node: drought_index | code: gst | fields: value, ts, depth, lon Sensor: soil_moisture | fields: lon, type, unit, qc Task: Get depth from drought_index where depth exceeds the count of depth from soil_moisture for the same qc. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074746
train
v1
Sensor network script: Node: drought_index | code: stn | fields: reading, type, qc, level Sensor: turbidity | fields: type, lon, level, value Task: Retrieve level from drought_index whose type is found in turbidity records where depth matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074747
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: lat, type, ts, level Sensor: turbidity | fields: unit, ts, depth, reading Task: Fetch lat from snow_depth that have at least one corresponding turbidity measurement for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lat", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074748
train
v2
Sensor network script: Node: sunlight | code: stn | fields: qc, type, lon, lat Sensor: soil_moisture | fields: qc, type, lon, value Task: Fetch value from sunlight that have at least one corresponding soil_moisture measurement for the same type. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "value", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074749
train
v2
Sensor network script: Node: uv_index | code: ref | fields: value, lon, depth, type Sensor: temperature | fields: depth, type, lat, qc Task: Fetch lon from uv_index that have at least one corresponding temperature measurement for the same ts. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074750
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: ts, reading, type, value Sensor: pressure | fields: level, qc, reading, lat Task: Get value from snow_depth where unit appears in pressure readings with matching unit. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074751
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: lon, type, reading, unit Sensor: dew_point | fields: qc, type, level, reading Task: Get level from snow_depth where a corresponding entry exists in dew_point with the same unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074752
train
v2
Sensor network script: Node: lightning | code: thr | fields: ts, unit, level, qc Sensor: uv_index | fields: unit, lon, value, lat Task: Retrieve value from lightning that have at least one matching reading in uv_index sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="value", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074753
train
v1
Sensor network script: Node: lightning | code: clr | fields: unit, reading, type, qc Sensor: wind_speed | fields: reading, qc, lat, lon Task: Fetch lat from lightning where ts exists in wind_speed sensor data for the same ts. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="ts", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074754
train
v3
Sensor network script: Node: evaporation | code: prt | fields: reading, lon, level, type Sensor: pressure | fields: unit, lon, type, reading Task: Get lon from evaporation where value exceeds the minimum depth from pressure for the same type. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("pressure", code="mbl"), match="type"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074755
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: lat, depth, lon, reading Sensor: sunlight | fields: lat, unit, type, ts Task: Fetch reading from cloud_cover where value is greater than the maximum of depth in sunlight for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("sunlight", code="brt"), match="unit"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074756
train
v3
Sensor network script: Node: drought_index | code: thr | fields: unit, type, value, lat Sensor: visibility | fields: level, value, reading, ts Task: Fetch level from drought_index where value is greater than the total of depth in visibility for matching unit. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="unit"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074757
train
v1
Sensor network script: Node: lightning | code: clr | fields: type, lat, lon, reading Sensor: cloud_cover | fields: unit, value, lon, lat Task: Retrieve reading from lightning whose ts is found in cloud_cover records where type matches the outer node. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="type", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074758
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: depth, lon, lat, value Sensor: frost | fields: lon, reading, depth, lat Task: Fetch lat from cloud_cover that have at least one corresponding frost measurement for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lat", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074759
train
v3
Sensor network script: Node: pressure | code: prt | fields: type, unit, level, ts Sensor: soil_moisture | fields: reading, lon, value, level Task: Get level from pressure where reading exceeds the minimum value from soil_moisture for the same qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074760
train
v1
Sensor network script: Node: drought_index | code: thr | fields: reading, qc, value, ts Sensor: wind_speed | fields: reading, lon, depth, ts Task: Retrieve lat from drought_index whose unit is found in wind_speed records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074761
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: lat, unit, reading, depth Sensor: humidity | fields: level, ts, unit, type Task: Fetch lat from snow_depth where reading is greater than the minimum of reading in humidity for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074762
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: lat, level, depth, value Sensor: evaporation | fields: depth, type, value, ts Task: Fetch depth from soil_moisture that have at least one corresponding evaporation measurement for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074763
train
v1
Sensor network script: Node: lightning | code: mst | fields: lat, type, ts, qc Sensor: rainfall | fields: depth, type, value, unit Task: Get value from lightning where qc appears in rainfall readings with matching qc. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="qc", ), output="value", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074764
train
v2
Sensor network script: Node: pressure | code: ref | fields: lon, reading, lat, ts Sensor: humidity | fields: qc, lon, level, ts Task: Retrieve level from pressure that have at least one matching reading in humidity sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="level", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074765
train
v1
Sensor network script: Node: frost | code: mst | fields: lat, ts, value, reading Sensor: pressure | fields: lon, type, lat, value Task: Fetch value from frost where qc exists in pressure sensor data for the same ts. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="ts", ), output="value", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074766
train
v3
Sensor network script: Node: humidity | code: prt | fields: level, lat, value, type Sensor: snow_depth | fields: lat, depth, value, qc Task: Fetch lat from humidity where value is greater than the count of of value in snow_depth for matching ts. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074767
train
v2
Sensor network script: Node: visibility | code: prt | fields: reading, lon, ts, type Sensor: evaporation | fields: qc, value, lon, depth Task: Fetch level from visibility that have at least one corresponding evaporation measurement for the same ts. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "level", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074768
train
v3
Sensor network script: Node: drought_index | code: hub | fields: reading, lon, depth, lat Sensor: visibility | fields: lon, depth, reading, type Task: Fetch value from drought_index where value is greater than the total of reading in visibility for matching type. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="type"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074769
train
v3
Sensor network script: Node: visibility | code: stn | fields: unit, lon, ts, lat Sensor: wind_speed | fields: depth, level, lon, qc Task: Retrieve level from visibility with value above the MAX(depth) of wind_speed readings sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("wind_speed", code="gst"), match="qc"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074770
train
v1
Sensor network script: Node: pressure | code: stn | fields: lon, unit, type, value Sensor: air_quality | fields: ts, unit, depth, value Task: Get depth from pressure where ts appears in air_quality readings with matching depth. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="depth", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074771
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: ts, qc, depth, level Sensor: soil_moisture | fields: depth, lon, qc, reading Task: Fetch value from snow_depth where depth is greater than the average of reading in soil_moisture for matching depth. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074772
train
v1
Sensor network script: Node: humidity | code: clr | fields: level, lat, depth, lon Sensor: frost | fields: type, lat, reading, qc Task: Retrieve lat from humidity whose unit is found in frost records where depth matches the outer node. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="depth", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074773
train
v2
Sensor network script: Node: uv_index | code: clr | fields: type, lat, reading, ts Sensor: soil_moisture | fields: type, reading, level, lon Task: Fetch lat from uv_index that have at least one corresponding soil_moisture measurement for the same qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074774
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: type, level, reading, unit Sensor: drought_index | fields: unit, level, value, reading Task: Get level from snow_depth where type appears in drought_index readings with matching depth. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="depth", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074775
train
v2
Sensor network script: Node: drought_index | code: hub | fields: ts, unit, qc, reading Sensor: visibility | fields: unit, type, ts, reading Task: Get lat from drought_index where a corresponding entry exists in visibility with the same ts. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074776
train
v2
Sensor network script: Node: evaporation | code: stn | fields: level, reading, depth, lat Sensor: temperature | fields: unit, ts, lat, qc Task: Retrieve lon from evaporation that have at least one matching reading in temperature sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074777
train
v2
Sensor network script: Node: drought_index | code: gst | fields: qc, unit, type, ts Sensor: soil_moisture | fields: level, lat, value, reading Task: Fetch lat from drought_index that have at least one corresponding soil_moisture measurement for the same qc. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074778
train
v2
Sensor network script: Node: air_quality | code: gst | fields: ts, unit, type, lat Sensor: temperature | fields: depth, reading, type, qc Task: Fetch value from air_quality that have at least one corresponding temperature measurement for the same unit. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074779
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: unit, lat, type, ts Sensor: uv_index | fields: reading, level, value, unit Task: Get depth from soil_moisture where type appears in uv_index readings with matching type. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="type", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074780
train
v2
Sensor network script: Node: turbidity | code: clr | fields: qc, lon, type, reading Sensor: soil_moisture | fields: depth, lat, value, reading Task: Fetch depth from turbidity that have at least one corresponding soil_moisture measurement for the same type. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074781
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: ts, level, depth, qc Sensor: uv_index | fields: lon, depth, ts, level Task: Fetch reading from snow_depth where ts exists in uv_index sensor data for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="depth", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "reading", "filter_col": "ts", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074782
train
v1
Sensor network script: Node: pressure | code: hub | fields: level, reading, lon, value Sensor: drought_index | fields: depth, lon, value, type Task: Retrieve lon from pressure whose qc is found in drought_index records where ts matches the outer node. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="ts", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074783
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: reading, lat, depth, value Sensor: frost | fields: lon, unit, reading, qc Task: Retrieve value from wind_speed that have at least one matching reading in frost sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "value", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074784
train
v2
Sensor network script: Node: pressure | code: prt | fields: ts, lon, type, lat Sensor: temperature | fields: unit, depth, ts, qc Task: Retrieve value from pressure that have at least one matching reading in temperature sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="value", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "value", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074785
train
v2
Sensor network script: Node: dew_point | code: prt | fields: qc, unit, value, level Sensor: cloud_cover | fields: ts, reading, value, lon Task: Get value from dew_point where a corresponding entry exists in cloud_cover with the same unit. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "value", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074786
train
v3
Sensor network script: Node: turbidity | code: thr | fields: unit, level, reading, depth Sensor: wind_speed | fields: qc, depth, level, lon Task: Get value from turbidity where reading exceeds the maximum reading from wind_speed for the same type. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074787
train
v2
Sensor network script: Node: visibility | code: prt | fields: type, ts, value, unit Sensor: snow_depth | fields: level, lon, value, reading Task: Retrieve level from visibility that have at least one matching reading in snow_depth sharing the same type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="level", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074788
train
v3
Sensor network script: Node: humidity | code: gst | fields: type, qc, reading, lon Sensor: pressure | fields: lon, depth, reading, qc Task: Get lon from humidity where reading exceeds the total reading from pressure for the same unit. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("pressure", code="mbl"), match="unit"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074789
train
v3
Sensor network script: Node: uv_index | code: stn | fields: unit, reading, depth, value Sensor: rainfall | fields: depth, qc, level, value Task: Get lon from uv_index where value exceeds the total reading from rainfall for the same ts. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074790
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: lon, type, depth, unit Sensor: cloud_cover | fields: lat, unit, ts, type Task: Retrieve reading from soil_moisture whose ts is found in cloud_cover records where depth matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074791
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: lon, type, ts, depth Sensor: visibility | fields: unit, value, qc, lat Task: Retrieve value from cloud_cover with depth above the SUM(reading) of visibility readings sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="ts"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074792
train
v3
Sensor network script: Node: turbidity | code: prt | fields: value, unit, depth, level Sensor: evaporation | fields: unit, ts, lon, type Task: Fetch value from turbidity where reading is greater than the minimum of reading in evaporation for matching unit. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("evaporation", code="evp"), match="unit"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074793
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: level, value, ts, reading Sensor: cloud_cover | fields: reading, lat, value, qc Task: Get reading from snow_depth where qc appears in cloud_cover readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074794
train
v2
Sensor network script: Node: rainfall | code: hub | fields: qc, lon, level, value Sensor: air_quality | fields: lat, qc, type, level Task: Retrieve lon from rainfall that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_074795
train
v1
Sensor network script: Node: evaporation | code: ref | fields: lon, value, lat, type Sensor: sunlight | fields: depth, qc, level, type Task: Fetch reading from evaporation where unit exists in sunlight sensor data for the same depth. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="depth", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074796
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: type, lon, depth, ts Sensor: rainfall | fields: level, ts, depth, lat Task: Get lon from wind_speed where depth exceeds the count of depth from rainfall for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074797
train
v3
Sensor network script: Node: evaporation | code: hub | fields: level, qc, type, lat Sensor: lightning | fields: lon, qc, depth, level Task: Fetch lat from evaporation where value is greater than the count of of value in lightning for matching unit. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("lightning", code="tnd"), match="unit"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074798
train
v1
Sensor network script: Node: dew_point | code: thr | fields: lon, level, reading, ts Sensor: lightning | fields: lat, level, value, depth Task: Get depth from dew_point where depth appears in lightning readings with matching depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="depth", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_074799
train