variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v3
Sensor network script: Node: soil_moisture | code: prt | fields: ts, level, type, qc Sensor: rainfall | fields: value, depth, lat, lon Task: Get depth from soil_moisture where depth exceeds the minimum depth from rainfall for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="type"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012700
train
v1
Sensor network script: Node: pressure | code: mst | fields: lon, depth, qc, reading Sensor: drought_index | fields: qc, unit, level, reading Task: Retrieve depth from pressure whose unit is found in drought_index records where ts matches the outer node. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012701
train
v2
Sensor network script: Node: dew_point | code: gst | fields: qc, lat, level, type Sensor: pressure | fields: value, unit, qc, depth Task: Fetch lat from dew_point that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012702
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: depth, lat, value, lon Sensor: sunlight | fields: value, lon, level, lat Task: Fetch reading from soil_moisture where depth is greater than the total of depth in sunlight for matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("sunlight", code="brt"), match="unit"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012703
train
v2
Sensor network script: Node: evaporation | code: stn | fields: lon, lat, qc, type Sensor: visibility | fields: depth, ts, unit, lon Task: Retrieve reading from evaporation that have at least one matching reading in visibility sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012704
train
v2
Sensor network script: Node: temperature | code: gst | fields: lon, reading, ts, lat Sensor: humidity | fields: value, lat, depth, level Task: Fetch lon from temperature that have at least one corresponding humidity measurement for the same depth. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "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_012705
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: lat, type, unit, depth Sensor: pressure | fields: lat, ts, level, value Task: Get level from soil_moisture where a corresponding entry exists in pressure with the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "level", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012706
train
v2
Sensor network script: Node: uv_index | code: thr | fields: unit, type, level, ts Sensor: lightning | fields: value, unit, lon, depth Task: Retrieve lat from uv_index that have at least one matching reading in lightning sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lat", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012707
train
v3
Sensor network script: Node: uv_index | code: hub | fields: unit, lon, depth, reading Sensor: evaporation | fields: reading, lon, qc, depth Task: Retrieve reading from uv_index with reading above the SUM(reading) of evaporation readings sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("evaporation", code="evp"), match="ts"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012708
train
v3
Sensor network script: Node: dew_point | code: thr | fields: lon, unit, type, reading Sensor: uv_index | fields: unit, type, qc, lon Task: Retrieve lon from dew_point with value above the AVG(value) of uv_index readings sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012709
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: unit, level, reading, type Sensor: uv_index | fields: lat, level, value, reading Task: Get lat from soil_moisture where a corresponding entry exists in uv_index with the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lat", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012710
train
v3
Sensor network script: Node: air_quality | code: gst | fields: value, lon, unit, depth Sensor: visibility | fields: lon, depth, reading, ts Task: Fetch lat from air_quality where depth is greater than the maximum of value in visibility for matching unit. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("visibility", code="clr"), match="unit"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012711
train
v2
Sensor network script: Node: frost | code: gst | fields: depth, level, reading, lon Sensor: air_quality | fields: qc, lat, level, lon Task: Fetch reading from frost that have at least one corresponding air_quality measurement for the same depth. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="reading", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012712
train
v1
Sensor network script: Node: rainfall | code: ref | fields: qc, depth, unit, value Sensor: evaporation | fields: qc, reading, lat, ts Task: Get reading from rainfall where qc appears in evaporation readings with matching type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012713
train
v2
Sensor network script: Node: uv_index | code: hub | fields: ts, qc, value, depth Sensor: evaporation | fields: level, value, reading, lon Task: Retrieve reading from uv_index that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012714
train
v3
Sensor network script: Node: sunlight | code: mst | fields: type, ts, level, lon Sensor: rainfall | fields: ts, level, value, unit Task: Retrieve lat from sunlight with depth above the COUNT(depth) of rainfall readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012715
train
v1
Sensor network script: Node: dew_point | code: mst | fields: level, lon, lat, unit Sensor: lightning | fields: ts, value, lat, type Task: Get level from dew_point where unit appears in lightning readings with matching qc. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="qc", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012716
train
v2
Sensor network script: Node: frost | code: prt | fields: unit, value, depth, lon Sensor: snow_depth | fields: level, value, reading, type Task: Retrieve lat from frost that have at least one matching reading in snow_depth sharing the same ts. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="lat", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lat", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012717
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: qc, type, lat, lon Sensor: rainfall | fields: type, level, unit, lon Task: Get reading from snow_depth where unit appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012718
train
v3
Sensor network script: Node: turbidity | code: prt | fields: qc, ts, value, reading Sensor: rainfall | fields: ts, qc, type, lat Task: Retrieve value from turbidity with depth above the MIN(depth) of rainfall readings sharing the same depth. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012719
train
v1
Sensor network script: Node: humidity | code: stn | fields: ts, reading, qc, lon Sensor: frost | fields: unit, level, qc, type Task: Retrieve lon from humidity whose ts is found in frost records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="ts", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012720
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: type, lon, unit, lat Sensor: visibility | fields: value, reading, depth, level Task: Get depth from wind_speed where qc appears in visibility readings with matching qc. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="qc", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012721
train
v3
Sensor network script: Node: air_quality | code: gst | fields: lat, qc, reading, level Sensor: turbidity | fields: level, lat, type, ts Task: Retrieve lon from air_quality with depth above the COUNT(reading) of turbidity readings sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("turbidity", code="ftu"), match="type"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012722
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: qc, lat, level, unit Sensor: sunlight | fields: lat, value, ts, qc Task: Retrieve lat from wind_speed with depth above the SUM(depth) of sunlight readings sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("sunlight", code="brt"), match="unit"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012723
train
v2
Sensor network script: Node: air_quality | code: clr | fields: ts, lat, reading, depth Sensor: humidity | fields: qc, lat, level, depth Task: Get depth from air_quality where a corresponding entry exists in humidity with the same ts. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012724
train
v3
Sensor network script: Node: rainfall | code: stn | fields: value, reading, unit, depth Sensor: temperature | fields: depth, qc, type, ts Task: Fetch reading from rainfall where reading is greater than the average of depth in temperature for matching type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012725
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: qc, depth, level, reading Sensor: soil_moisture | fields: value, type, qc, lat Task: Retrieve lat from cloud_cover with depth above the MAX(value) of soil_moisture readings sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012726
train
v1
Sensor network script: Node: evaporation | code: prt | fields: value, depth, reading, level Sensor: pressure | fields: depth, unit, level, ts Task: Get lat from evaporation where depth appears in pressure readings with matching unit. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="unit", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012727
train
v1
Sensor network script: Node: air_quality | code: hub | fields: ts, type, depth, value Sensor: dew_point | fields: ts, depth, reading, level Task: Get reading from air_quality where type appears in dew_point readings with matching ts. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012728
train
v1
Sensor network script: Node: uv_index | code: mst | fields: value, ts, level, qc Sensor: evaporation | fields: lat, unit, ts, qc Task: Get lat from uv_index where unit appears in evaporation readings with matching unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="unit", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012729
train
v1
Sensor network script: Node: frost | code: stn | fields: value, unit, lat, depth Sensor: snow_depth | fields: reading, lon, ts, type Task: Retrieve reading from frost whose type is found in snow_depth records where depth matches the outer node. Script:
readings = fetch( node=Node("frost", code="stn"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="depth", ), output="reading", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "reading", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012730
train
v2
Sensor network script: Node: lightning | code: clr | fields: level, lat, depth, qc Sensor: frost | fields: lon, qc, depth, lat Task: Get value from lightning where a corresponding entry exists in frost with the same depth. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012731
train
v3
Sensor network script: Node: lightning | code: gst | fields: qc, type, lon, level Sensor: dew_point | fields: depth, type, reading, unit Task: Get value from lightning where value exceeds the count of value from dew_point for the same type. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("dew_point", code="cnd"), match="type"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012732
train
v3
Sensor network script: Node: evaporation | code: hub | fields: reading, qc, depth, type Sensor: dew_point | fields: unit, value, reading, lat Task: Get depth from evaporation where depth exceeds the total value from dew_point for the same unit. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("dew_point", code="cnd"), match="unit"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012733
train
v2
Sensor network script: Node: temperature | code: clr | fields: value, ts, level, lon Sensor: lightning | fields: lat, qc, value, level Task: Retrieve reading from temperature that have at least one matching reading in lightning sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "reading", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012734
train
v2
Sensor network script: Node: dew_point | code: thr | fields: value, type, level, unit Sensor: pressure | fields: ts, reading, lon, type Task: Fetch level from dew_point that have at least one corresponding pressure measurement for the same ts. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "level", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012735
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: value, lat, ts, depth Sensor: rainfall | fields: ts, unit, lat, type Task: Retrieve lon from soil_moisture with value above the AVG(value) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012736
train
v3
Sensor network script: Node: frost | code: prt | fields: ts, reading, lon, level Sensor: humidity | fields: lon, unit, type, value Task: Get lat from frost where depth exceeds the minimum value from humidity for the same qc. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("humidity", code="hgr"), match="qc"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012737
train
v3
Sensor network script: Node: temperature | code: clr | fields: level, reading, value, depth Sensor: turbidity | fields: level, unit, type, qc Task: Retrieve lat from temperature with depth above the AVG(value) of turbidity readings sharing the same depth. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("turbidity", code="ftu"), match="depth"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012738
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: value, level, ts, lon Sensor: dew_point | fields: qc, unit, value, lat Task: Fetch depth from wind_speed where value is greater than the total of depth in dew_point for matching ts. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("dew_point", code="cnd"), match="ts"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012739
train
v3
Sensor network script: Node: drought_index | code: stn | fields: lat, qc, ts, reading Sensor: evaporation | fields: qc, type, level, lon Task: Get level from drought_index where value exceeds the minimum value from evaporation for the same unit. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("evaporation", code="evp"), match="unit"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012740
train
v2
Sensor network script: Node: sunlight | code: clr | fields: type, value, unit, ts Sensor: air_quality | fields: type, qc, lon, level Task: Retrieve level from sunlight that have at least one matching reading in air_quality sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "level", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012741
train
v2
Sensor network script: Node: uv_index | code: clr | fields: unit, value, depth, lat Sensor: lightning | fields: qc, level, type, reading Task: Fetch lon from uv_index that have at least one corresponding lightning measurement for the same unit. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012742
train
v3
Sensor network script: Node: temperature | code: clr | fields: qc, type, ts, value Sensor: dew_point | fields: reading, level, depth, ts Task: Retrieve level from temperature with reading above the AVG(depth) of dew_point readings sharing the same type. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("dew_point", code="cnd"), match="type"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "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_012743
train
v1
Sensor network script: Node: evaporation | code: clr | fields: value, level, reading, qc Sensor: drought_index | fields: qc, ts, lon, unit Task: Retrieve lat from evaporation whose type is found in drought_index records where unit matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="unit", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lat", "filter_col": "type", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012744
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: lat, qc, reading, depth Sensor: snow_depth | fields: ts, qc, lat, lon Task: Get level from cloud_cover where a corresponding entry exists in snow_depth with the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "level", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012745
train
v1
Sensor network script: Node: frost | code: mst | fields: ts, reading, value, lon Sensor: humidity | fields: level, unit, reading, depth Task: Fetch lon from frost where unit exists in humidity sensor data for the same type. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="type", ), output="lon", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012746
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: qc, unit, value, ts Sensor: temperature | fields: lon, lat, depth, type Task: Get lat from soil_moisture where reading exceeds the minimum depth from temperature for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012747
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: depth, unit, ts, lon Sensor: wind_speed | fields: value, level, lon, unit Task: Get lon from soil_moisture where depth exceeds the maximum reading from wind_speed for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("wind_speed", code="gst"), match="ts"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012748
train
v3
Sensor network script: Node: humidity | code: prt | fields: lat, unit, value, depth Sensor: soil_moisture | fields: reading, lat, lon, qc Task: Retrieve lat from humidity with depth above the SUM(value) of soil_moisture readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012749
train
v1
Sensor network script: Node: lightning | code: gst | fields: lon, lat, depth, unit Sensor: frost | fields: level, unit, qc, lon Task: Get depth from lightning where qc appears in frost readings with matching qc. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="qc", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012750
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: lon, value, unit, lat Sensor: turbidity | fields: type, qc, reading, depth Task: Fetch level from snow_depth where unit exists in turbidity sensor data for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012751
train
v3
Sensor network script: Node: visibility | code: thr | fields: level, depth, qc, type Sensor: pressure | fields: reading, lat, qc, depth Task: Get depth from visibility where reading exceeds the average reading from pressure for the same qc. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("pressure", code="mbl"), match="qc"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012752
train
v2
Sensor network script: Node: humidity | code: thr | fields: lon, reading, lat, level Sensor: soil_moisture | fields: unit, ts, value, reading Task: Retrieve reading from humidity that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012753
train
v1
Sensor network script: Node: drought_index | code: ref | fields: reading, value, lat, lon Sensor: air_quality | fields: qc, level, type, unit Task: Retrieve level from drought_index whose qc is found in air_quality records where qc matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="qc", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012754
train
v1
Sensor network script: Node: turbidity | code: prt | fields: level, lat, qc, unit Sensor: uv_index | fields: type, lat, qc, unit Task: Fetch depth from turbidity where type exists in uv_index sensor data for the same ts. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="ts", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "depth", "filter_col": "type", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012755
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: value, ts, lat, qc Sensor: rainfall | fields: value, lat, unit, level Task: Get depth from cloud_cover where a corresponding entry exists in rainfall with the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012756
train
v1
Sensor network script: Node: uv_index | code: thr | fields: value, reading, type, qc Sensor: visibility | fields: lon, reading, depth, lat Task: Get level from uv_index where unit appears in visibility readings with matching qc. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012757
train
v1
Sensor network script: Node: visibility | code: prt | fields: type, lon, depth, ts Sensor: humidity | fields: depth, value, level, ts Task: Retrieve reading from visibility whose unit is found in humidity records where ts matches the outer node. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="ts", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012758
train
v2
Sensor network script: Node: lightning | code: ref | fields: unit, lon, depth, value Sensor: evaporation | fields: type, ts, lon, reading Task: Retrieve reading from lightning that have at least one matching reading in evaporation sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "reading", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012759
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: depth, unit, lat, level Sensor: frost | fields: value, ts, level, type Task: Get level from wind_speed where depth appears in frost readings with matching ts. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="ts", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012760
train
v2
Sensor network script: Node: air_quality | code: gst | fields: qc, ts, reading, lat Sensor: visibility | fields: type, lon, qc, lat Task: Retrieve level from air_quality that have at least one matching reading in visibility sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "level", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012761
train
v3
Sensor network script: Node: air_quality | code: mst | fields: level, type, lat, reading Sensor: turbidity | fields: depth, lat, ts, unit Task: Fetch reading from air_quality where depth is greater than the count of of depth in turbidity for matching depth. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("turbidity", code="ftu"), match="depth"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012762
train
v3
Sensor network script: Node: air_quality | code: gst | fields: type, depth, lon, reading Sensor: temperature | fields: depth, lat, unit, lon Task: Fetch depth from air_quality where reading is greater than the count of of depth in temperature for matching type. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012763
train
v1
Sensor network script: Node: humidity | code: hub | fields: unit, level, type, depth Sensor: turbidity | fields: lon, qc, level, value Task: Fetch level from humidity where ts exists in turbidity sensor data for the same qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="qc", ), output="level", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012764
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: reading, lon, value, depth Sensor: humidity | fields: type, unit, value, qc Task: Fetch depth from soil_moisture where depth is greater than the total of depth in humidity for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("humidity", code="hgr"), match="ts"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012765
train
v3
Sensor network script: Node: sunlight | code: thr | fields: ts, type, lon, lat Sensor: evaporation | fields: lat, depth, ts, type Task: Retrieve reading from sunlight with value above the SUM(value) of evaporation readings sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("evaporation", code="evp"), match="unit"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012766
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: depth, value, reading, qc Sensor: lightning | fields: unit, reading, qc, lon Task: Get lat from cloud_cover where unit appears in lightning readings with matching type. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012767
train
v1
Sensor network script: Node: rainfall | code: stn | fields: ts, level, lat, lon Sensor: snow_depth | fields: reading, depth, type, value Task: Get depth from rainfall where ts appears in snow_depth readings with matching type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="type", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012768
train
v2
Sensor network script: Node: turbidity | code: hub | fields: reading, type, depth, lat Sensor: evaporation | fields: ts, reading, depth, lat Task: Fetch level from turbidity that have at least one corresponding evaporation measurement for the same depth. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012769
train
v3
Sensor network script: Node: dew_point | code: gst | fields: unit, type, level, depth Sensor: visibility | fields: unit, depth, qc, reading Task: Fetch depth from dew_point where value is greater than the minimum of reading in visibility for matching ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("visibility", code="clr"), match="ts"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012770
train
v1
Sensor network script: Node: rainfall | code: mst | fields: value, unit, ts, lon Sensor: sunlight | fields: unit, lon, lat, reading Task: Retrieve value from rainfall whose depth is found in sunlight records where depth matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012771
train
v2
Sensor network script: Node: uv_index | code: mst | fields: value, ts, reading, unit Sensor: evaporation | fields: reading, qc, lon, level Task: Get lon from uv_index where a corresponding entry exists in evaporation with the same qc. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012772
train
v2
Sensor network script: Node: sunlight | code: mst | fields: lon, unit, lat, qc Sensor: cloud_cover | fields: ts, level, type, value Task: Fetch value from sunlight that have at least one corresponding cloud_cover measurement for the same qc. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "value", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012773
train
v2
Sensor network script: Node: temperature | code: ref | fields: ts, reading, lat, qc Sensor: dew_point | fields: type, value, reading, ts Task: Retrieve value from temperature that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="value", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012774
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: type, level, depth, reading Sensor: sunlight | fields: ts, reading, type, qc Task: Retrieve depth from soil_moisture whose depth is found in sunlight records where ts matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="ts", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012775
train
v1
Sensor network script: Node: pressure | code: ref | fields: depth, reading, qc, type Sensor: turbidity | fields: ts, lat, unit, value Task: Fetch lat from pressure where ts exists in turbidity sensor data for the same ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="ts", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012776
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: depth, unit, value, lon Sensor: soil_moisture | fields: qc, ts, value, lon Task: Fetch depth from snow_depth that have at least one corresponding soil_moisture measurement for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012777
train
v3
Sensor network script: Node: temperature | code: ref | fields: depth, lat, ts, qc Sensor: frost | fields: lon, reading, qc, value Task: Fetch reading from temperature where depth is greater than the maximum of reading in frost for matching ts. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("frost", code="frs"), match="ts"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "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_012778
train
v3
Sensor network script: Node: lightning | code: prt | fields: ts, unit, level, type Sensor: visibility | fields: qc, lat, unit, level Task: Fetch depth from lightning where value is greater than the maximum of reading in visibility for matching type. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("visibility", code="clr"), match="type"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012779
train
v2
Sensor network script: Node: rainfall | code: mst | fields: type, depth, lon, unit Sensor: sunlight | fields: qc, type, level, reading Task: Get depth from rainfall where a corresponding entry exists in sunlight with the same unit. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012780
train
v3
Sensor network script: Node: temperature | code: mst | fields: qc, type, lat, lon Sensor: visibility | fields: level, ts, lon, reading Task: Get lon from temperature where depth exceeds the total value from visibility for the same type. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="type"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012781
train
v2
Sensor network script: Node: visibility | code: mst | fields: depth, unit, lat, level Sensor: temperature | fields: lon, ts, level, qc Task: Get depth from visibility where a corresponding entry exists in temperature with the same type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="depth", )
{ "outer_table": "visibility", "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_012782
train
v2
Sensor network script: Node: drought_index | code: thr | fields: reading, unit, lon, ts Sensor: uv_index | fields: qc, depth, lon, level Task: Fetch level from drought_index that have at least one corresponding uv_index measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012783
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: type, ts, level, value Sensor: turbidity | fields: value, lon, depth, lat Task: Retrieve value from soil_moisture with depth above the SUM(value) of turbidity readings sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("turbidity", code="ftu"), match="depth"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012784
train
v2
Sensor network script: Node: visibility | code: clr | fields: type, lat, lon, ts Sensor: dew_point | fields: lat, level, unit, lon Task: Retrieve reading from visibility that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012785
train
v3
Sensor network script: Node: uv_index | code: hub | fields: value, type, qc, level Sensor: temperature | fields: lat, type, qc, lon Task: Retrieve level from uv_index with depth above the MAX(value) of temperature readings sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("temperature", code="thr"), match="qc"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012786
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: ts, lat, lon, qc Sensor: dew_point | fields: ts, qc, value, lat Task: Retrieve depth from wind_speed that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012787
train
v1
Sensor network script: Node: evaporation | code: prt | fields: level, lat, type, depth Sensor: drought_index | fields: reading, ts, level, value Task: Retrieve depth from evaporation whose unit is found in drought_index records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012788
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: value, lat, lon, level Sensor: frost | fields: depth, unit, lon, lat Task: Retrieve reading from snow_depth that have at least one matching reading in frost sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012789
train
v2
Sensor network script: Node: uv_index | code: prt | fields: reading, lat, unit, depth Sensor: dew_point | fields: unit, ts, qc, level Task: Fetch level from uv_index that have at least one corresponding dew_point measurement for the same unit. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "level", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012790
train
v2
Sensor network script: Node: evaporation | code: gst | fields: level, lon, qc, depth Sensor: uv_index | fields: value, lat, type, qc Task: Fetch depth from evaporation that have at least one corresponding uv_index measurement for the same ts. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012791
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: depth, ts, value, qc Sensor: visibility | fields: unit, qc, depth, type Task: Fetch value from wind_speed where ts exists in visibility sensor data for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="depth", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_012792
train
v2
Sensor network script: Node: pressure | code: gst | fields: level, lat, depth, reading Sensor: turbidity | fields: level, reading, lat, qc Task: Fetch lat from pressure that have at least one corresponding turbidity measurement for the same ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012793
train
v3
Sensor network script: Node: sunlight | code: clr | fields: depth, ts, reading, value Sensor: humidity | fields: unit, value, lat, reading Task: Get lat from sunlight where reading exceeds the count of depth from humidity for the same unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012794
train
v3
Sensor network script: Node: temperature | code: gst | fields: type, ts, value, lon Sensor: drought_index | fields: ts, value, reading, lon Task: Fetch value from temperature where value is greater than the maximum of value in drought_index for matching type. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("drought_index", code="drt"), match="type"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012795
train
v2
Sensor network script: Node: uv_index | code: prt | fields: lon, type, value, depth Sensor: rainfall | fields: lat, unit, value, ts Task: Fetch level from uv_index that have at least one corresponding rainfall measurement for the same qc. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "level", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012796
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: qc, unit, type, value Sensor: soil_moisture | fields: lon, value, depth, ts Task: Retrieve depth from wind_speed whose ts is found in soil_moisture records where unit matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012797
train
v3
Sensor network script: Node: air_quality | code: hub | fields: unit, value, level, lat Sensor: rainfall | fields: depth, reading, unit, lat Task: Get level from air_quality where value exceeds the total value from rainfall for the same type. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("rainfall", code="rnfl"), match="type"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012798
train
v1
Sensor network script: Node: dew_point | code: gst | fields: qc, type, unit, value Sensor: snow_depth | fields: value, qc, unit, level Task: Get level from dew_point where qc appears in snow_depth readings with matching unit. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="unit", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "level", "filter_col": "qc", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_012799
train