variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v2
Sensor network script: Node: humidity | code: stn | fields: value, reading, depth, ts Sensor: sunlight | fields: qc, value, lat, level Task: Get reading from humidity where a corresponding entry exists in sunlight with the same unit. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009700
train
v2
Sensor network script: Node: pressure | code: thr | fields: ts, qc, unit, level Sensor: lightning | fields: value, lon, lat, qc Task: Fetch lon from pressure that have at least one corresponding lightning measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lon", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009701
train
v1
Sensor network script: Node: turbidity | code: stn | fields: depth, reading, value, lon Sensor: humidity | fields: lon, qc, unit, ts Task: Retrieve level from turbidity whose qc is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="unit", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "level", "filter_col": "qc", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009702
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: level, lon, depth, value Sensor: wind_speed | fields: qc, lat, depth, lon Task: Get lon from snow_depth where value exceeds the count of depth from wind_speed for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="depth"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009703
train
v3
Sensor network script: Node: humidity | code: gst | fields: qc, value, reading, type Sensor: pressure | fields: ts, lon, value, qc Task: Fetch lat from humidity where reading is greater than the total of value in pressure for matching qc. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009704
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: qc, lat, lon, level Sensor: rainfall | fields: type, lon, reading, value Task: Fetch level from wind_speed that have at least one corresponding rainfall measurement for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009705
train
v1
Sensor network script: Node: pressure | code: hub | fields: qc, value, reading, type Sensor: turbidity | fields: reading, lat, lon, unit Task: Fetch lat from pressure where unit exists in turbidity sensor data for the same qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="qc", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009706
train
v3
Sensor network script: Node: humidity | code: clr | fields: type, depth, level, reading Sensor: drought_index | fields: ts, lon, lat, type Task: Fetch lon from humidity where depth is greater than the total of value in drought_index for matching type. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="type"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009707
train
v1
Sensor network script: Node: drought_index | code: ref | fields: level, ts, unit, type Sensor: sunlight | fields: lon, type, ts, lat Task: Fetch depth from drought_index where unit exists in sunlight sensor data for the same ts. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="ts", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009708
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: type, depth, lat, lon Sensor: soil_moisture | fields: reading, depth, lon, level Task: Retrieve level from snow_depth whose ts is found in soil_moisture records where qc matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009709
train
v1
Sensor network script: Node: sunlight | code: ref | fields: lat, lon, level, value Sensor: turbidity | fields: type, unit, ts, value Task: Get depth from sunlight where depth appears in turbidity readings with matching ts. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="ts", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009710
train
v2
Sensor network script: Node: air_quality | code: thr | fields: lat, qc, type, ts Sensor: visibility | fields: type, qc, value, level Task: Fetch reading from air_quality that have at least one corresponding visibility measurement for the same ts. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "reading", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009711
train
v2
Sensor network script: Node: humidity | code: gst | fields: lon, type, unit, qc Sensor: visibility | fields: reading, level, qc, lon Task: Fetch value from humidity that have at least one corresponding visibility measurement for the same unit. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="value", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009712
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: depth, type, value, lon Sensor: uv_index | fields: reading, unit, qc, ts Task: Retrieve lon from cloud_cover that have at least one matching reading in uv_index sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lon", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009713
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: lon, ts, type, reading Sensor: dew_point | fields: level, depth, reading, lat Task: Retrieve level from snow_depth whose depth is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="unit", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009714
train
v2
Sensor network script: Node: humidity | code: mst | fields: reading, depth, level, unit Sensor: pressure | fields: lat, qc, value, level Task: Retrieve lat from humidity that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009715
train
v2
Sensor network script: Node: dew_point | code: mst | fields: value, level, lon, type Sensor: temperature | fields: value, unit, lon, reading Task: Get depth from dew_point where a corresponding entry exists in temperature with the same type. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009716
train
v2
Sensor network script: Node: sunlight | code: gst | fields: lon, depth, unit, reading Sensor: frost | fields: lon, type, depth, unit Task: Get depth from sunlight where a corresponding entry exists in frost with the same unit. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009717
train
v1
Sensor network script: Node: dew_point | code: gst | fields: type, unit, depth, lon Sensor: drought_index | fields: level, ts, unit, lon Task: Get value from dew_point where unit appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="ts", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009718
train
v3
Sensor network script: Node: drought_index | code: mst | fields: unit, lon, value, type Sensor: pressure | fields: lon, unit, type, reading Task: Retrieve lon from drought_index with reading above the SUM(value) of pressure readings sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="unit"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009719
train
v3
Sensor network script: Node: frost | code: thr | fields: unit, lon, lat, level Sensor: pressure | fields: depth, lon, lat, value Task: Fetch level from frost where reading is greater than the count of of reading in pressure for matching unit. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("pressure", code="mbl"), match="unit"), ), output="level", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009720
train
v3
Sensor network script: Node: drought_index | code: ref | fields: ts, type, depth, unit Sensor: pressure | fields: unit, ts, level, lon Task: Get lon from drought_index where depth exceeds the total value from pressure for the same type. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="type"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009721
train
v3
Sensor network script: Node: uv_index | code: prt | fields: level, type, reading, ts Sensor: lightning | fields: lon, type, depth, level Task: Retrieve lat from uv_index with depth above the MIN(reading) of lightning readings sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="depth"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009722
train
v3
Sensor network script: Node: turbidity | code: thr | fields: unit, depth, qc, ts Sensor: humidity | fields: value, lat, lon, depth Task: Get reading from turbidity where reading exceeds the average reading from humidity for the same depth. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("humidity", code="hgr"), match="depth"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009723
train
v3
Sensor network script: Node: air_quality | code: stn | fields: ts, lon, type, qc Sensor: cloud_cover | fields: level, qc, lat, lon Task: Fetch lon from air_quality where value is greater than the total of reading in cloud_cover for matching ts. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "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_009724
train
v1
Sensor network script: Node: sunlight | code: hub | fields: level, depth, unit, ts Sensor: uv_index | fields: value, type, lat, qc Task: Retrieve reading from sunlight whose qc is found in uv_index records where depth matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="depth", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "reading", "filter_col": "qc", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009725
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: lon, ts, reading, depth Sensor: lightning | fields: lon, value, unit, level Task: Retrieve lat from wind_speed with reading above the MIN(reading) of lightning readings sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="depth"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009726
train
v1
Sensor network script: Node: air_quality | code: hub | fields: reading, type, value, depth Sensor: pressure | fields: reading, type, lon, ts Task: Fetch level from air_quality where type exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="qc", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009727
train
v3
Sensor network script: Node: evaporation | code: hub | fields: reading, ts, depth, unit Sensor: pressure | fields: reading, ts, lon, type Task: Retrieve reading from evaporation with depth above the AVG(reading) of pressure readings sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("pressure", code="mbl"), match="depth"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "reading", "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_009728
train
v1
Sensor network script: Node: lightning | code: hub | fields: value, lon, level, ts Sensor: turbidity | fields: reading, lat, ts, unit Task: Get depth from lightning where unit appears in turbidity readings with matching type. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="type", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009729
train
v2
Sensor network script: Node: pressure | code: thr | fields: depth, value, type, ts Sensor: frost | fields: depth, level, reading, type Task: Get lon from pressure where a corresponding entry exists in frost with the same depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009730
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: type, ts, lon, unit Sensor: humidity | fields: lat, qc, type, reading Task: Get value from snow_depth where a corresponding entry exists in humidity with the same type. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009731
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: ts, unit, depth, value Sensor: humidity | fields: depth, value, level, lon Task: Fetch depth from snow_depth that have at least one corresponding humidity measurement for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009732
train
v2
Sensor network script: Node: uv_index | code: clr | fields: lon, depth, ts, lat Sensor: snow_depth | fields: lon, unit, level, ts Task: Retrieve level from uv_index that have at least one matching reading in snow_depth sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "level", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009733
train
v2
Sensor network script: Node: humidity | code: ref | fields: lat, depth, level, ts Sensor: rainfall | fields: level, depth, unit, type Task: Fetch lat from humidity that have at least one corresponding rainfall measurement for the same ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009734
train
v3
Sensor network script: Node: turbidity | code: hub | fields: type, lon, reading, qc Sensor: temperature | fields: type, value, level, lon Task: Fetch level from turbidity where value is greater than the maximum of value in temperature for matching type. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("temperature", code="thr"), match="type"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009735
train
v1
Sensor network script: Node: rainfall | code: clr | fields: ts, lon, depth, qc Sensor: sunlight | fields: value, reading, depth, type Task: Retrieve reading from rainfall whose depth is found in sunlight records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="ts", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009736
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: level, ts, depth, lon Sensor: rainfall | fields: value, reading, lat, type Task: Fetch lon from cloud_cover that have at least one corresponding rainfall measurement for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009737
train
v2
Sensor network script: Node: air_quality | code: mst | fields: level, ts, depth, qc Sensor: dew_point | fields: reading, lon, qc, unit Task: Fetch reading from air_quality that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "reading", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009738
train
v1
Sensor network script: Node: rainfall | code: mst | fields: level, reading, lon, type Sensor: wind_speed | fields: lon, qc, type, reading Task: Get level from rainfall where depth appears in wind_speed readings with matching unit. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="unit", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009739
train
v3
Sensor network script: Node: frost | code: ref | fields: qc, lat, value, unit Sensor: pressure | fields: value, reading, level, ts Task: Get lat from frost where depth exceeds the total value from pressure for the same qc. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009740
train
v1
Sensor network script: Node: uv_index | code: stn | fields: value, unit, type, lat Sensor: evaporation | fields: unit, reading, level, ts Task: Get value from uv_index where qc appears in evaporation readings with matching ts. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="ts", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009741
train
v3
Sensor network script: Node: dew_point | code: ref | fields: type, ts, level, depth Sensor: lightning | fields: value, type, unit, lon Task: Fetch reading from dew_point where depth is greater than the maximum of reading in lightning for matching ts. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009742
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: reading, lat, qc, ts Sensor: soil_moisture | fields: lon, level, type, reading Task: Retrieve lat from wind_speed with reading above the COUNT(value) of soil_moisture readings sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009743
train
v2
Sensor network script: Node: sunlight | code: clr | fields: ts, reading, lon, type Sensor: air_quality | fields: value, type, reading, unit Task: Retrieve level from sunlight that have at least one matching reading in air_quality sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009744
train
v2
Sensor network script: Node: visibility | code: ref | fields: lon, qc, lat, value Sensor: pressure | fields: lat, level, depth, qc Task: Retrieve value from visibility that have at least one matching reading in pressure sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="value", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "value", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009745
train
v1
Sensor network script: Node: rainfall | code: stn | fields: reading, ts, unit, qc Sensor: temperature | fields: lat, reading, depth, ts Task: Get level from rainfall where qc appears in temperature readings with matching depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009746
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: depth, unit, qc, lat Sensor: dew_point | fields: reading, ts, unit, type Task: Get lon from wind_speed where qc appears in dew_point readings with matching type. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="type", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009747
train
v2
Sensor network script: Node: uv_index | code: thr | fields: qc, level, lon, reading Sensor: sunlight | fields: value, lon, qc, unit Task: Fetch depth from uv_index that have at least one corresponding sunlight measurement for the same unit. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009748
train
v3
Sensor network script: Node: pressure | code: thr | fields: lon, unit, value, type Sensor: soil_moisture | fields: level, qc, lat, depth Task: Get lon from pressure where value exceeds the total value from soil_moisture for the same ts. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009749
train
v1
Sensor network script: Node: air_quality | code: thr | fields: qc, depth, lat, lon Sensor: sunlight | fields: unit, type, qc, lat Task: Get reading from air_quality where depth appears in sunlight readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="unit", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009750
train
v3
Sensor network script: Node: lightning | code: mst | fields: depth, value, lon, qc Sensor: temperature | fields: ts, reading, value, level Task: Retrieve value from lightning with value above the MAX(reading) of temperature readings sharing the same type. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("temperature", code="thr"), match="type"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009751
train
v3
Sensor network script: Node: visibility | code: mst | fields: type, level, qc, lon Sensor: rainfall | fields: lon, reading, ts, type Task: Retrieve value from visibility with reading above the COUNT(depth) of rainfall readings sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009752
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: type, level, lon, depth Sensor: humidity | fields: lat, qc, ts, value Task: Retrieve reading from soil_moisture with reading above the COUNT(depth) of humidity readings sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("humidity", code="hgr"), match="ts"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009753
train
v1
Sensor network script: Node: drought_index | code: stn | fields: level, lon, type, depth Sensor: temperature | fields: reading, value, type, lon Task: Fetch reading from drought_index where qc exists in temperature sensor data for the same ts. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="ts", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009754
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: reading, level, ts, value Sensor: drought_index | fields: ts, level, lat, depth Task: Retrieve level from wind_speed with value above the MAX(reading) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("drought_index", code="drt"), match="qc"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009755
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: unit, qc, ts, level Sensor: sunlight | fields: ts, type, reading, qc Task: Get reading from soil_moisture where reading exceeds the minimum reading from sunlight for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("sunlight", code="brt"), match="depth"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009756
train
v1
Sensor network script: Node: sunlight | code: mst | fields: reading, unit, level, qc Sensor: lightning | fields: reading, unit, ts, depth Task: Retrieve level from sunlight whose ts is found in lightning records where unit matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="unit", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009757
train
v1
Sensor network script: Node: visibility | code: hub | fields: level, reading, depth, lon Sensor: sunlight | fields: ts, type, lat, reading Task: Retrieve value from visibility whose unit is found in sunlight records where ts matches the outer node. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="ts", ), output="value", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009758
train
v3
Sensor network script: Node: rainfall | code: thr | fields: lat, lon, ts, reading Sensor: frost | fields: lon, ts, level, unit Task: Fetch lat from rainfall where depth is greater than the count of of depth in frost for matching qc. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("frost", code="frs"), match="qc"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009759
train
v1
Sensor network script: Node: humidity | code: gst | fields: lon, unit, qc, ts Sensor: visibility | fields: value, lon, reading, level Task: Get reading from humidity where ts appears in visibility readings with matching depth. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="depth", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "ts", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009760
train
v3
Sensor network script: Node: dew_point | code: ref | fields: level, ts, lat, reading Sensor: soil_moisture | fields: type, value, unit, ts Task: Retrieve lat from dew_point with depth above the MAX(value) of soil_moisture readings sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009761
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: qc, lon, value, type Sensor: rainfall | fields: level, ts, type, value Task: Retrieve level from soil_moisture with depth above the MAX(depth) of rainfall readings sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009762
train
v3
Sensor network script: Node: rainfall | code: mst | fields: qc, type, depth, unit Sensor: cloud_cover | fields: reading, level, lon, depth Task: Retrieve lon from rainfall with value above the MAX(value) of cloud_cover readings sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009763
train
v2
Sensor network script: Node: drought_index | code: mst | fields: lon, qc, type, lat Sensor: visibility | fields: reading, unit, lon, lat Task: Fetch reading from drought_index that have at least one corresponding visibility measurement for the same qc. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009764
train
v2
Sensor network script: Node: dew_point | code: thr | fields: type, reading, lat, ts Sensor: snow_depth | fields: lat, reading, ts, type Task: Get value from dew_point where a corresponding entry exists in snow_depth with the same ts. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "value", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009765
train
v1
Sensor network script: Node: temperature | code: prt | fields: qc, level, lon, reading Sensor: pressure | fields: depth, type, lat, level Task: Retrieve lat from temperature whose unit is found in pressure records where depth matches the outer node. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="depth", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009766
train
v2
Sensor network script: Node: sunlight | code: stn | fields: level, value, ts, unit Sensor: soil_moisture | fields: reading, type, value, depth Task: Retrieve reading from sunlight that have at least one matching reading in soil_moisture sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009767
train
v3
Sensor network script: Node: humidity | code: hub | fields: value, qc, unit, level Sensor: lightning | fields: depth, qc, reading, value Task: Fetch lon from humidity where depth is greater than the count of of depth in lightning for matching qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("lightning", code="tnd"), match="qc"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009768
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: depth, ts, unit, type Sensor: pressure | fields: value, ts, reading, unit Task: Retrieve depth from soil_moisture whose unit is found in pressure records where depth matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="depth", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009769
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: reading, value, depth, lat Sensor: frost | fields: lon, ts, depth, value Task: Retrieve value from snow_depth that have at least one matching reading in frost sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009770
train
v3
Sensor network script: Node: drought_index | code: hub | fields: level, reading, lat, ts Sensor: wind_speed | fields: unit, lat, lon, depth Task: Fetch reading from drought_index where depth is greater than the total of value in wind_speed for matching depth. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("wind_speed", code="gst"), match="depth"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009771
train
v1
Sensor network script: Node: frost | code: prt | fields: level, type, qc, lat Sensor: temperature | fields: level, lat, value, ts Task: Fetch lon from frost where type exists in temperature sensor data for the same type. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="type", ), output="lon", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009772
train
v1
Sensor network script: Node: frost | code: mst | fields: qc, lon, type, depth Sensor: snow_depth | fields: unit, depth, lat, level Task: Retrieve reading from frost whose type is found in snow_depth records where qc matches the outer node. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="qc", ), output="reading", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "type", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009773
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: level, type, ts, unit Sensor: temperature | fields: depth, lon, reading, lat Task: Retrieve reading from cloud_cover with value above the MIN(value) of temperature readings sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("temperature", code="thr"), match="ts"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009774
train
v1
Sensor network script: Node: pressure | code: ref | fields: lon, lat, qc, unit Sensor: frost | fields: depth, lat, lon, reading Task: Retrieve lat from pressure whose ts is found in frost records where unit matches the outer node. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="unit", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009775
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: depth, unit, value, reading Sensor: soil_moisture | fields: depth, reading, unit, ts Task: Retrieve level from cloud_cover whose ts is found in soil_moisture records where ts matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009776
train
v1
Sensor network script: Node: uv_index | code: ref | fields: reading, level, type, lat Sensor: temperature | fields: lon, lat, qc, level Task: Fetch reading from uv_index where type exists in temperature sensor data for the same depth. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="depth", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "filter_col": "type", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009777
train
v2
Sensor network script: Node: sunlight | code: stn | fields: value, level, reading, lon Sensor: humidity | fields: qc, reading, level, unit Task: Fetch level from sunlight that have at least one corresponding humidity measurement for the same ts. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "level", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009778
train
v1
Sensor network script: Node: dew_point | code: thr | fields: depth, unit, lon, reading Sensor: pressure | fields: ts, depth, lat, lon Task: Get reading from dew_point where qc appears in pressure readings with matching depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="depth", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "qc", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009779
train
v3
Sensor network script: Node: pressure | code: clr | fields: type, ts, depth, level Sensor: turbidity | fields: unit, lon, ts, level Task: Retrieve value from pressure with depth above the COUNT(depth) of turbidity readings sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("turbidity", code="ftu"), match="unit"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009780
train
v1
Sensor network script: Node: visibility | code: gst | fields: level, type, reading, unit Sensor: evaporation | fields: unit, type, reading, ts Task: Retrieve lon from visibility whose qc is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009781
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: value, reading, unit, ts Sensor: humidity | fields: unit, lon, qc, depth Task: Fetch lon from soil_moisture where depth exists in humidity sensor data for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="ts", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009782
train
v1
Sensor network script: Node: visibility | code: prt | fields: reading, lon, lat, type Sensor: lightning | fields: qc, value, reading, type Task: Fetch reading from visibility where ts exists in lightning sensor data for the same type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="type", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009783
train
v2
Sensor network script: Node: pressure | code: ref | fields: depth, unit, lon, level Sensor: cloud_cover | fields: unit, value, depth, level Task: Fetch lat from pressure that have at least one corresponding cloud_cover measurement for the same qc. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009784
train
v2
Sensor network script: Node: air_quality | code: thr | fields: reading, value, lat, level Sensor: pressure | fields: qc, lon, lat, ts Task: Retrieve value from air_quality that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "value", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009785
train
v2
Sensor network script: Node: pressure | code: clr | fields: lat, value, unit, type Sensor: uv_index | fields: qc, reading, unit, lat Task: Fetch value from pressure that have at least one corresponding uv_index measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="value", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009786
train
v2
Sensor network script: Node: dew_point | code: thr | fields: unit, level, lat, type Sensor: lightning | fields: ts, value, depth, reading Task: Fetch value from dew_point that have at least one corresponding lightning measurement for the same unit. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "value", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009787
train
v2
Sensor network script: Node: snow_depth | code: mst | fields: value, ts, lat, lon Sensor: sunlight | fields: reading, value, level, depth Task: Fetch level from snow_depth that have at least one corresponding sunlight measurement for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "level", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009788
train
v3
Sensor network script: Node: drought_index | code: stn | fields: reading, ts, type, qc Sensor: lightning | fields: reading, lon, unit, depth Task: Fetch lat from drought_index where reading is greater than the total of reading in lightning for matching ts. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009789
train
v1
Sensor network script: Node: air_quality | code: stn | fields: unit, depth, type, ts Sensor: cloud_cover | fields: unit, lon, qc, value Task: Get reading from air_quality where depth appears in cloud_cover readings with matching type. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="type", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009790
train
v3
Sensor network script: Node: frost | code: thr | fields: qc, unit, ts, depth Sensor: wind_speed | fields: level, ts, value, qc Task: Retrieve level from frost with reading above the MIN(depth) of wind_speed readings sharing the same ts. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="level", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009791
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: lat, type, ts, qc Sensor: snow_depth | fields: lon, ts, qc, reading Task: Get level from wind_speed where a corresponding entry exists in snow_depth with the same depth. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "level", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009792
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: lat, lon, depth, reading Sensor: humidity | fields: ts, reading, level, lat Task: Retrieve reading from cloud_cover whose ts is found in humidity records where ts matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="ts", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009793
train
v2
Sensor network script: Node: sunlight | code: hub | fields: value, type, depth, lat Sensor: humidity | fields: unit, qc, type, lon Task: Retrieve depth from sunlight that have at least one matching reading in humidity sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="depth", )
{ "outer_table": "sunlight", "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_009794
train
v1
Sensor network script: Node: uv_index | code: prt | fields: qc, type, lon, unit Sensor: visibility | fields: lat, type, level, lon Task: Get value from uv_index where depth appears in visibility readings with matching type. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009795
train
v2
Sensor network script: Node: dew_point | code: mst | fields: type, level, reading, lat Sensor: snow_depth | fields: unit, lat, lon, ts Task: Fetch value from dew_point that have at least one corresponding snow_depth measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "value", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009796
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: value, type, lat, unit Sensor: frost | fields: type, reading, level, value Task: Retrieve reading from wind_speed with value above the SUM(value) of frost readings sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("frost", code="frs"), match="ts"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009797
train
v2
Sensor network script: Node: rainfall | code: mst | fields: ts, level, depth, lon Sensor: evaporation | fields: lat, level, depth, lon Task: Retrieve level from rainfall that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "level", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009798
train
v3
Sensor network script: Node: humidity | code: clr | fields: lat, unit, qc, level Sensor: drought_index | fields: qc, depth, reading, lon Task: Get level from humidity where value exceeds the maximum value from drought_index for the same unit. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009799
train