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: frost | code: ref | fields: unit, depth, type, value Sensor: cloud_cover | fields: ts, depth, value, lat Task: Retrieve lon from frost that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lon", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067000
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: qc, type, lon, level Sensor: drought_index | fields: lat, type, ts, unit Task: Fetch level from cloud_cover where depth exists in drought_index sensor data for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067001
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: ts, value, reading, level Sensor: drought_index | fields: qc, unit, reading, level Task: Fetch value from cloud_cover where value is greater than the maximum of reading in drought_index for matching type. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("drought_index", code="drt"), match="type"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067002
train
v1
Sensor network script: Node: turbidity | code: thr | fields: unit, lon, level, reading Sensor: visibility | fields: lon, lat, unit, value Task: Retrieve lon from turbidity whose type is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="type", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067003
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: depth, qc, level, reading Sensor: dew_point | fields: level, depth, lon, ts Task: Get value from soil_moisture where a corresponding entry exists in dew_point with the same type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "value", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067004
train
v2
Sensor network script: Node: turbidity | code: clr | fields: unit, level, type, depth Sensor: cloud_cover | fields: unit, level, depth, reading Task: Retrieve level from turbidity that have at least one matching reading in cloud_cover sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "level", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067005
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: level, unit, ts, lon Sensor: drought_index | fields: unit, level, reading, depth Task: Get level from snow_depth where depth exceeds the total value from drought_index for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067006
train
v3
Sensor network script: Node: turbidity | code: mst | fields: reading, lon, ts, lat Sensor: uv_index | fields: reading, level, type, lat Task: Retrieve lat from turbidity with depth above the MAX(depth) of uv_index readings sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("uv_index", code="flx"), match="unit"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067007
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: ts, type, reading, qc Sensor: temperature | fields: reading, lat, value, depth Task: Fetch value from soil_moisture that have at least one corresponding temperature measurement for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "value", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067008
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: value, reading, lat, level Sensor: drought_index | fields: type, qc, unit, value Task: Fetch reading from wind_speed where depth exists in drought_index sensor data for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="unit", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067009
train
v3
Sensor network script: Node: evaporation | code: ref | fields: qc, lat, unit, lon Sensor: soil_moisture | fields: unit, lat, lon, depth Task: Fetch lon from evaporation where depth is greater than the count of of depth in soil_moisture for matching type. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067010
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: qc, depth, unit, reading Sensor: evaporation | fields: qc, lat, value, lon Task: Fetch lon from snow_depth where depth exists in evaporation sensor data for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="qc", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067011
train
v1
Sensor network script: Node: rainfall | code: gst | fields: lat, ts, depth, reading Sensor: cloud_cover | fields: unit, value, depth, reading Task: Retrieve reading from rainfall whose depth is found in cloud_cover records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067012
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: ts, depth, unit, qc Sensor: soil_moisture | fields: qc, level, type, ts Task: Retrieve lat from cloud_cover whose unit is found in soil_moisture records where ts matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067013
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: reading, unit, depth, level Sensor: soil_moisture | fields: qc, lat, ts, type Task: Retrieve reading from wind_speed that have at least one matching reading in soil_moisture sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067014
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: level, qc, reading, unit Sensor: pressure | fields: level, lat, unit, value Task: Retrieve lon from cloud_cover with reading above the MAX(depth) of pressure readings sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("pressure", code="mbl"), match="ts"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067015
train
v1
Sensor network script: Node: humidity | code: thr | fields: level, depth, unit, lat Sensor: soil_moisture | fields: level, unit, type, reading Task: Get lat from humidity where qc appears in soil_moisture readings with matching type. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="type", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067016
train
v3
Sensor network script: Node: dew_point | code: mst | fields: type, level, unit, lon Sensor: uv_index | fields: type, reading, lat, qc Task: Get depth from dew_point where reading exceeds the count of reading from uv_index for the same qc. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("uv_index", code="flx"), match="qc"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067017
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: level, unit, type, value Sensor: frost | fields: unit, reading, qc, lat Task: Fetch depth from wind_speed that have at least one corresponding frost measurement for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067018
train
v3
Sensor network script: Node: frost | code: hub | fields: depth, lon, qc, value Sensor: temperature | fields: ts, type, lat, value Task: Retrieve lat from frost with reading above the AVG(value) of temperature readings sharing the same type. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("temperature", code="thr"), match="type"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067019
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: type, level, value, lat Sensor: dew_point | fields: unit, type, lat, level Task: Fetch level from wind_speed where depth is greater than the average of depth in dew_point for matching depth. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("dew_point", code="cnd"), match="depth"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067020
train
v3
Sensor network script: Node: drought_index | code: stn | fields: type, level, ts, unit Sensor: frost | fields: qc, reading, lon, ts Task: Fetch reading from drought_index where reading is greater than the count of of reading in frost for matching unit. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067021
train
v2
Sensor network script: Node: rainfall | code: hub | fields: reading, value, qc, lon Sensor: uv_index | fields: depth, lon, type, reading Task: Fetch lon from rainfall that have at least one corresponding uv_index measurement for the same unit. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lon", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067022
train
v1
Sensor network script: Node: cloud_cover | code: mst | fields: type, value, lon, depth Sensor: dew_point | fields: depth, type, level, ts Task: Fetch lat from cloud_cover where type exists in dew_point sensor data for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067023
train
v2
Sensor network script: Node: drought_index | code: ref | fields: reading, unit, type, lat Sensor: rainfall | fields: lon, value, lat, qc Task: Get level from drought_index where a corresponding entry exists in rainfall with the same depth. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "level", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067024
train
v1
Sensor network script: Node: turbidity | code: stn | fields: depth, value, unit, type Sensor: snow_depth | fields: type, qc, reading, lat Task: Get lat from turbidity where ts appears in snow_depth readings with matching unit. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="unit", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067025
train
v2
Sensor network script: Node: rainfall | code: ref | fields: unit, depth, ts, lon Sensor: temperature | fields: reading, qc, unit, value Task: Retrieve reading from rainfall that have at least one matching reading in temperature sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067026
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: level, reading, depth, type Sensor: dew_point | fields: unit, value, qc, type Task: Fetch reading from wind_speed that have at least one corresponding dew_point measurement for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "reading", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067027
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: type, unit, value, lat Sensor: wind_speed | fields: lat, reading, unit, depth Task: Get depth from soil_moisture where a corresponding entry exists in wind_speed with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067028
train
v1
Sensor network script: Node: uv_index | code: prt | fields: level, reading, lon, ts Sensor: dew_point | fields: value, qc, lat, type Task: Get depth from uv_index where qc appears in dew_point readings with matching type. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="type", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067029
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: unit, value, depth, level Sensor: frost | fields: depth, value, unit, lat Task: Get level from wind_speed where unit appears in frost readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067030
train
v3
Sensor network script: Node: temperature | code: thr | fields: qc, type, lat, level Sensor: visibility | fields: lat, lon, unit, type Task: Fetch value from temperature where value is greater than the average of value in visibility for matching depth. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="depth"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067031
train
v1
Sensor network script: Node: frost | code: thr | fields: qc, lon, unit, type Sensor: pressure | fields: lon, lat, qc, type Task: Retrieve reading from frost whose qc is found in pressure records where unit matches the outer node. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="unit", ), output="reading", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067032
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: lon, ts, type, depth Sensor: drought_index | fields: depth, type, lat, level Task: Retrieve level from wind_speed whose type is found in drought_index records where ts matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067033
train
v1
Sensor network script: Node: rainfall | code: gst | fields: type, lat, reading, value Sensor: humidity | fields: level, ts, type, qc Task: Get level from rainfall where qc appears in humidity readings with matching depth. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067034
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: type, qc, depth, lon Sensor: visibility | fields: qc, unit, depth, value Task: Fetch lat from soil_moisture where depth exists in visibility sensor data for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="depth", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067035
train
v1
Sensor network script: Node: frost | code: gst | fields: depth, lon, value, lat Sensor: humidity | fields: unit, lon, ts, value Task: Retrieve lat from frost whose type is found in humidity records where type matches the outer node. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067036
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: lon, value, reading, level Sensor: rainfall | fields: qc, level, ts, type Task: Fetch reading from soil_moisture where value is greater than the average of reading in rainfall for matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067037
train
v2
Sensor network script: Node: lightning | code: ref | fields: type, reading, level, value Sensor: humidity | fields: ts, level, lat, unit Task: Fetch lat from lightning that have at least one corresponding humidity measurement for the same depth. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lat", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067038
train
v3
Sensor network script: Node: drought_index | code: thr | fields: lon, unit, type, depth Sensor: pressure | fields: ts, reading, depth, lat Task: Retrieve depth from drought_index with reading above the COUNT(reading) of pressure readings sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("pressure", code="mbl"), match="qc"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067039
train
v1
Sensor network script: Node: visibility | code: stn | fields: ts, reading, depth, level Sensor: uv_index | fields: type, depth, qc, value Task: Fetch level from visibility where ts exists in uv_index sensor data for the same depth. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="depth", ), output="level", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067040
train
v2
Sensor network script: Node: pressure | code: stn | fields: level, ts, qc, lat Sensor: temperature | fields: ts, lat, reading, type Task: Retrieve reading from pressure that have at least one matching reading in temperature sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "reading", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067041
train
v1
Sensor network script: Node: humidity | code: thr | fields: ts, lat, depth, type Sensor: pressure | fields: reading, value, lon, qc Task: Get reading from humidity where unit appears in pressure readings with matching qc. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="qc", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067042
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: lat, reading, level, value Sensor: air_quality | fields: lat, level, qc, type Task: Fetch reading from cloud_cover where value is greater than the average of depth in air_quality for matching type. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("air_quality", code="prt"), match="type"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067043
train
v1
Sensor network script: Node: evaporation | code: prt | fields: ts, depth, lat, unit Sensor: cloud_cover | fields: unit, level, ts, value Task: Retrieve level from evaporation whose unit is found in cloud_cover records where unit matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067044
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: value, depth, qc, ts Sensor: rainfall | fields: depth, value, ts, unit Task: Retrieve reading from snow_depth whose type is found in rainfall records where type matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="type", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067045
train
v3
Sensor network script: Node: sunlight | code: thr | fields: depth, unit, lon, type Sensor: soil_moisture | fields: level, ts, lon, qc Task: Fetch reading from sunlight where value is greater than the average of value in soil_moisture for matching depth. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067046
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: reading, qc, level, ts Sensor: evaporation | fields: qc, value, level, unit Task: Fetch value from snow_depth where depth is greater than the maximum of value in evaporation for matching ts. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="ts"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067047
train
v1
Sensor network script: Node: visibility | code: prt | fields: value, qc, lon, lat Sensor: evaporation | fields: lat, depth, qc, reading Task: Fetch value from visibility where type exists in evaporation sensor data for the same qc. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="qc", ), output="value", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067048
train
v1
Sensor network script: Node: uv_index | code: hub | fields: type, depth, reading, lon Sensor: rainfall | fields: unit, reading, value, ts Task: Get depth from uv_index where qc appears in rainfall readings with matching ts. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="ts", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067049
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: unit, ts, reading, type Sensor: pressure | fields: lon, unit, lat, ts Task: Get level from soil_moisture where depth appears in pressure readings with matching type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="type", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "level", "filter_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067050
train
v2
Sensor network script: Node: uv_index | code: mst | fields: unit, lat, ts, depth Sensor: air_quality | fields: depth, type, value, lat Task: Get lon from uv_index where a corresponding entry exists in air_quality with the same type. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lon", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067051
train
v1
Sensor network script: Node: humidity | code: mst | fields: value, depth, unit, ts Sensor: drought_index | fields: type, depth, lon, qc Task: Fetch lat from humidity where depth exists in drought_index sensor data for the same ts. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="ts", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067052
train
v1
Sensor network script: Node: rainfall | code: thr | fields: type, lon, level, depth Sensor: pressure | fields: level, qc, unit, value Task: Get value from rainfall where type appears in pressure readings with matching qc. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="qc", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067053
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: lon, depth, qc, ts Sensor: evaporation | fields: qc, reading, level, lat Task: Get reading from soil_moisture where a corresponding entry exists in evaporation with the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "reading", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067054
train
v3
Sensor network script: Node: uv_index | code: ref | fields: lat, value, ts, qc Sensor: dew_point | fields: value, ts, unit, type Task: Retrieve value from uv_index with depth above the AVG(depth) of dew_point readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("dew_point", code="cnd"), match="unit"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067055
train
v1
Sensor network script: Node: humidity | code: prt | fields: reading, qc, type, lon Sensor: dew_point | fields: reading, lon, ts, qc Task: Fetch value from humidity where ts exists in dew_point sensor data for the same depth. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="depth", ), output="value", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067056
train
v2
Sensor network script: Node: humidity | code: stn | fields: type, depth, lon, value Sensor: rainfall | fields: level, qc, value, reading Task: Fetch lon from humidity that have at least one corresponding rainfall measurement for the same depth. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067057
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: type, depth, value, level Sensor: sunlight | fields: level, lat, unit, qc Task: Fetch level from wind_speed where qc exists in sunlight sensor data for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067058
train
v3
Sensor network script: Node: humidity | code: mst | fields: unit, level, value, reading Sensor: frost | fields: ts, value, type, level Task: Retrieve level from humidity with value above the AVG(reading) of frost readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("frost", code="frs"), match="depth"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067059
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: depth, value, type, lon Sensor: temperature | fields: value, level, lon, type Task: Fetch value from soil_moisture that have at least one corresponding temperature measurement for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067060
train
v1
Sensor network script: Node: drought_index | code: prt | fields: level, lon, unit, type Sensor: humidity | fields: reading, qc, depth, lon Task: Get value from drought_index where unit appears in humidity readings with matching ts. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="ts", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067061
train
v1
Sensor network script: Node: air_quality | code: thr | fields: type, qc, unit, value Sensor: pressure | fields: value, level, ts, qc Task: Get lon from air_quality where unit appears in pressure readings with matching type. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="type", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067062
train
v1
Sensor network script: Node: drought_index | code: hub | fields: ts, qc, lon, type Sensor: lightning | fields: level, qc, unit, depth Task: Get level from drought_index where qc appears in lightning readings with matching qc. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="qc", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067063
train
v3
Sensor network script: Node: frost | code: clr | fields: depth, lon, ts, lat Sensor: wind_speed | fields: reading, lat, type, level Task: Retrieve lon from frost with reading above the COUNT(value) of wind_speed readings sharing the same qc. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("wind_speed", code="gst"), match="qc"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067064
train
v1
Sensor network script: Node: humidity | code: gst | fields: lon, depth, type, unit Sensor: evaporation | fields: qc, reading, ts, depth Task: Fetch lon from humidity where depth exists in evaporation sensor data for the same type. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067065
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: lon, value, unit, reading Sensor: uv_index | fields: ts, unit, qc, value Task: Get depth from cloud_cover where type appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="depth", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067066
train
v1
Sensor network script: Node: air_quality | code: stn | fields: level, type, lon, depth Sensor: wind_speed | fields: level, lon, reading, qc Task: Get depth from air_quality where ts appears in wind_speed readings with matching qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="qc", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067067
train
v2
Sensor network script: Node: visibility | code: gst | fields: lat, depth, value, qc Sensor: temperature | fields: type, reading, lon, unit Task: Get depth from visibility where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067068
train
v1
Sensor network script: Node: lightning | code: mst | fields: type, unit, qc, ts Sensor: drought_index | fields: lat, unit, lon, qc Task: Get reading from lightning where unit appears in drought_index readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="unit", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067069
train
v2
Sensor network script: Node: dew_point | code: prt | fields: unit, lon, depth, type Sensor: evaporation | fields: type, reading, level, lon Task: Get depth from dew_point where a corresponding entry exists in evaporation with the same ts. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067070
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: qc, lat, unit, reading Sensor: air_quality | fields: ts, value, lat, reading Task: Fetch lat from wind_speed where reading is greater than the minimum of value in air_quality for matching ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="ts"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067071
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: lon, depth, reading, lat Sensor: wind_speed | fields: value, qc, lon, lat Task: Retrieve reading from cloud_cover that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "reading", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067072
train
v1
Sensor network script: Node: air_quality | code: hub | fields: level, qc, type, reading Sensor: lightning | fields: depth, lat, lon, qc Task: Get lat from air_quality where ts appears in lightning readings with matching ts. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="ts", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067073
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: reading, lon, depth, ts Sensor: uv_index | fields: qc, value, depth, reading Task: Fetch reading from snow_depth where value is greater than the average of value in uv_index for matching unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("uv_index", code="flx"), match="unit"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067074
train
v2
Sensor network script: Node: lightning | code: gst | fields: type, unit, depth, lon Sensor: soil_moisture | fields: ts, qc, type, depth Task: Get lat from lightning where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067075
train
v3
Sensor network script: Node: uv_index | code: prt | fields: unit, depth, reading, lon Sensor: humidity | fields: qc, reading, lat, value Task: Fetch level from uv_index where value is greater than the average of reading in humidity for matching unit. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("humidity", code="hgr"), match="unit"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067076
train
v1
Sensor network script: Node: frost | code: ref | fields: depth, lat, type, level Sensor: wind_speed | fields: lat, reading, unit, ts Task: Fetch value from frost where unit exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="unit", ), output="value", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067077
train
v2
Sensor network script: Node: drought_index | code: ref | fields: lon, qc, value, ts Sensor: dew_point | fields: qc, lon, type, lat Task: Fetch lon from drought_index that have at least one corresponding dew_point measurement for the same depth. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067078
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: depth, unit, lon, reading Sensor: visibility | fields: lon, reading, ts, depth Task: Retrieve value from snow_depth with reading above the AVG(reading) of visibility readings sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("visibility", code="clr"), match="ts"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067079
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: unit, level, reading, qc Sensor: snow_depth | fields: depth, ts, unit, lon 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="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "level", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067080
train
v2
Sensor network script: Node: evaporation | code: thr | fields: level, type, lat, unit Sensor: soil_moisture | fields: reading, unit, level, lon Task: Fetch lat from evaporation that have at least one corresponding soil_moisture measurement for the same ts. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067081
train
v2
Sensor network script: Node: pressure | code: gst | fields: lon, depth, level, value Sensor: uv_index | fields: qc, value, reading, ts Task: Get reading from pressure where a corresponding entry exists in uv_index with the same type. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "reading", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067082
train
v2
Sensor network script: Node: evaporation | code: mst | fields: type, unit, ts, qc Sensor: cloud_cover | fields: qc, depth, ts, unit Task: Get lon from evaporation where a corresponding entry exists in cloud_cover with the same unit. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067083
train
v2
Sensor network script: Node: dew_point | code: clr | fields: unit, type, lat, reading Sensor: humidity | fields: reading, type, value, unit Task: Retrieve depth from dew_point that have at least one matching reading in humidity sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067084
train
v2
Sensor network script: Node: temperature | code: gst | fields: level, ts, type, lon Sensor: frost | fields: unit, value, reading, lon Task: Retrieve depth from temperature that have at least one matching reading in frost sharing the same type. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067085
train
v1
Sensor network script: Node: visibility | code: ref | fields: lat, reading, ts, type Sensor: temperature | fields: depth, lat, lon, qc Task: Get lon from visibility where type appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="unit", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "filter_col": "type", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067086
train
v2
Sensor network script: Node: lightning | code: hub | fields: level, lon, reading, ts Sensor: pressure | fields: ts, value, lat, depth Task: Get reading from lightning where a corresponding entry exists in pressure with the same unit. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067087
train
v3
Sensor network script: Node: temperature | code: stn | fields: lat, depth, lon, ts Sensor: soil_moisture | fields: reading, ts, level, qc Task: Fetch depth from temperature where value is greater than the total of value in soil_moisture for matching qc. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067088
train
v1
Sensor network script: Node: temperature | code: thr | fields: qc, reading, lon, type Sensor: visibility | fields: level, value, reading, type Task: Retrieve lon from temperature whose type is found in visibility records where qc matches the outer node. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="qc", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067089
train
v1
Sensor network script: Node: visibility | code: thr | fields: unit, lat, type, qc Sensor: wind_speed | fields: value, type, ts, lat Task: Fetch level from visibility where qc exists in wind_speed sensor data for the same qc. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="qc", ), output="level", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067090
train
v1
Sensor network script: Node: air_quality | code: clr | fields: lat, reading, qc, value Sensor: pressure | fields: level, type, unit, value Task: Get level from air_quality where qc appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="ts", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067091
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: type, lon, value, level Sensor: sunlight | fields: depth, ts, reading, value Task: Get lon from cloud_cover where a corresponding entry exists in sunlight with the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lon", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067092
train
v2
Sensor network script: Node: uv_index | code: hub | fields: ts, depth, lon, level Sensor: drought_index | fields: ts, lat, reading, level Task: Fetch level from uv_index that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067093
train
v1
Sensor network script: Node: temperature | code: ref | fields: value, lon, type, qc Sensor: lightning | fields: qc, lon, value, ts Task: Get level from temperature where unit appears in lightning readings with matching ts. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="ts", ), output="level", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067094
train
v3
Sensor network script: Node: evaporation | code: clr | fields: level, reading, lon, depth Sensor: dew_point | fields: level, unit, qc, reading Task: Fetch depth from evaporation where value is greater than the count of of depth in dew_point for matching qc. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("dew_point", code="cnd"), match="qc"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067095
train
v2
Sensor network script: Node: uv_index | code: gst | fields: value, level, type, reading Sensor: snow_depth | fields: type, qc, value, depth Task: Get value from uv_index where a corresponding entry exists in snow_depth with the same type. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "value", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067096
train
v2
Sensor network script: Node: uv_index | code: mst | fields: ts, type, lon, qc Sensor: drought_index | fields: reading, value, qc, depth Task: Get depth from uv_index where a corresponding entry exists in drought_index with the same ts. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067097
train
v1
Sensor network script: Node: uv_index | code: prt | fields: lat, level, value, type Sensor: visibility | fields: reading, ts, value, depth Task: Get reading 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="reading", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067098
train
v1
Sensor network script: Node: evaporation | code: mst | fields: type, ts, qc, lon Sensor: frost | fields: type, depth, reading, lon Task: Get reading from evaporation where depth appears in frost readings with matching qc. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067099
train