variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v1
Sensor network script: Node: wind_speed | code: ref | fields: depth, lat, type, lon Sensor: soil_moisture | fields: lon, type, ts, value Task: Get lat from wind_speed where type appears in soil_moisture readings with matching ts. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063100
train
v1
Sensor network script: Node: drought_index | code: stn | fields: reading, value, qc, lat Sensor: evaporation | fields: qc, reading, value, type Task: Fetch value from drought_index where unit exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="unit", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063101
train
v2
Sensor network script: Node: lightning | code: stn | fields: unit, reading, qc, type Sensor: evaporation | fields: level, lat, value, qc Task: Retrieve lon from lightning that have at least one matching reading in evaporation sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lon", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063102
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: unit, qc, type, value Sensor: visibility | fields: lon, ts, value, depth Task: Get reading from snow_depth where a corresponding entry exists in visibility with the same type. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063103
train
v1
Sensor network script: Node: temperature | code: ref | fields: ts, lon, level, reading Sensor: pressure | fields: value, qc, type, depth Task: Fetch value from temperature where depth exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="qc", ), output="value", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063104
train
v1
Sensor network script: Node: drought_index | code: mst | fields: depth, reading, lon, value Sensor: lightning | fields: type, depth, lon, lat Task: Get lon from drought_index where ts appears in lightning readings with matching type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="type", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063105
train
v1
Sensor network script: Node: pressure | code: hub | fields: lon, depth, lat, qc Sensor: uv_index | fields: lon, type, unit, level Task: Get lat from pressure where type appears in uv_index readings with matching ts. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="ts", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063106
train
v1
Sensor network script: Node: evaporation | code: prt | fields: level, type, qc, lon Sensor: wind_speed | fields: value, lat, unit, reading Task: Retrieve depth from evaporation whose type is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="qc", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063107
train
v1
Sensor network script: Node: drought_index | code: mst | fields: type, level, qc, value Sensor: rainfall | fields: unit, reading, lon, value Task: Fetch reading from drought_index where unit exists in rainfall sensor data for the same type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="type", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063108
train
v1
Sensor network script: Node: cloud_cover | code: prt | fields: ts, value, lon, unit Sensor: turbidity | fields: unit, value, depth, level Task: Fetch reading from cloud_cover where depth exists in turbidity sensor data for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="ts", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063109
train
v1
Sensor network script: Node: temperature | code: thr | fields: qc, lon, ts, depth Sensor: wind_speed | fields: type, ts, value, qc Task: Get reading from temperature where ts appears in wind_speed readings with matching type. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063110
train
v1
Sensor network script: Node: lightning | code: clr | fields: value, unit, ts, type Sensor: cloud_cover | fields: lat, lon, unit, reading Task: Get lon from lightning where unit appears in cloud_cover readings with matching depth. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063111
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: reading, depth, level, ts Sensor: evaporation | fields: value, type, reading, depth Task: Retrieve reading from cloud_cover whose ts is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="unit", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063112
train
v3
Sensor network script: Node: visibility | code: stn | fields: lon, type, unit, level Sensor: wind_speed | fields: ts, depth, reading, lat Task: Get lat from visibility where reading exceeds the maximum value from wind_speed for the same ts. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("wind_speed", code="gst"), match="ts"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063113
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: type, ts, depth, unit Sensor: lightning | fields: lat, unit, level, ts Task: Retrieve lon from cloud_cover with depth above the MIN(depth) of lightning readings sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("lightning", code="tnd"), match="unit"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063114
train
v3
Sensor network script: Node: temperature | code: stn | fields: value, ts, reading, qc Sensor: soil_moisture | fields: lon, type, value, lat Task: Fetch depth from temperature where reading is greater than the average of value in soil_moisture for matching depth. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063115
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: unit, reading, level, qc Sensor: drought_index | fields: depth, type, lon, reading Task: Fetch depth from snow_depth where qc exists in drought_index sensor data for the same type. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="type", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063116
train
v1
Sensor network script: Node: evaporation | code: prt | fields: unit, ts, lon, level Sensor: lightning | fields: lat, reading, level, depth Task: Fetch level from evaporation where type exists in lightning sensor data for the same ts. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="ts", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063117
train
v2
Sensor network script: Node: humidity | code: prt | fields: qc, reading, lat, depth Sensor: drought_index | fields: type, value, ts, reading Task: Fetch value from humidity that have at least one corresponding drought_index measurement for the same ts. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="value", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "value", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063118
train
v3
Sensor network script: Node: rainfall | code: mst | fields: type, value, level, lat Sensor: drought_index | fields: depth, value, level, ts Task: Fetch depth from rainfall where depth is greater than the maximum of value in drought_index for matching unit. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063119
train
v1
Sensor network script: Node: visibility | code: mst | fields: depth, ts, type, qc Sensor: temperature | fields: level, lon, type, unit Task: Retrieve lon from visibility whose qc is found in temperature records where unit matches the outer node. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="unit", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063120
train
v2
Sensor network script: Node: lightning | code: ref | fields: ts, unit, depth, lat Sensor: cloud_cover | fields: depth, level, unit, ts Task: Retrieve lon from lightning that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063121
train
v1
Sensor network script: Node: frost | code: clr | fields: lon, depth, level, unit Sensor: uv_index | fields: level, lat, qc, reading Task: Get level from frost where depth appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="depth", ), output="level", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063122
train
v1
Sensor network script: Node: visibility | code: mst | fields: value, lon, unit, lat Sensor: soil_moisture | fields: lon, level, unit, type Task: Get reading from visibility where depth appears in soil_moisture readings with matching depth. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063123
train
v2
Sensor network script: Node: rainfall | code: ref | fields: value, level, ts, reading Sensor: air_quality | fields: level, lat, type, value Task: Retrieve lon from rainfall that have at least one matching reading in air_quality sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lon", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063124
train
v2
Sensor network script: Node: temperature | code: prt | fields: depth, lon, ts, qc Sensor: visibility | fields: lon, depth, level, reading Task: Fetch lat from temperature that have at least one corresponding visibility measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063125
train
v1
Sensor network script: Node: lightning | code: stn | fields: ts, lat, type, reading Sensor: temperature | fields: ts, level, type, unit Task: Get level from lightning where unit appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="unit", ), output="level", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063126
train
v3
Sensor network script: Node: humidity | code: clr | fields: ts, lat, value, unit Sensor: wind_speed | fields: unit, lat, reading, value Task: Fetch depth from humidity where value is greater than the minimum of depth in wind_speed for matching depth. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("wind_speed", code="gst"), match="depth"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063127
train
v2
Sensor network script: Node: visibility | code: clr | fields: unit, level, lat, lon Sensor: dew_point | fields: qc, lat, reading, type Task: Retrieve depth from visibility that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063128
train
v1
Sensor network script: Node: rainfall | code: stn | fields: value, ts, reading, qc Sensor: temperature | fields: level, lon, depth, type Task: Get lat from rainfall where type appears in temperature readings with matching type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="type", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063129
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: ts, type, value, unit Sensor: dew_point | fields: reading, qc, level, type Task: Get lon from cloud_cover where qc appears in dew_point readings with matching type. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="type", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063130
train
v3
Sensor network script: Node: rainfall | code: stn | fields: unit, qc, reading, level Sensor: soil_moisture | fields: lon, level, qc, lat Task: Get lat from rainfall where value exceeds the average value from soil_moisture for the same depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063131
train
v1
Sensor network script: Node: rainfall | code: stn | fields: value, level, qc, lat Sensor: drought_index | fields: lat, lon, qc, level Task: Retrieve reading from rainfall whose qc is found in drought_index records where unit matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063132
train
v2
Sensor network script: Node: sunlight | code: clr | fields: depth, lat, ts, type Sensor: air_quality | fields: depth, lon, value, ts Task: Retrieve reading from sunlight that have at least one matching reading in air_quality sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063133
train
v1
Sensor network script: Node: air_quality | code: thr | fields: type, unit, ts, qc Sensor: dew_point | fields: reading, lon, lat, depth Task: Retrieve lon from air_quality whose qc is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="qc", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063134
train
v3
Sensor network script: Node: drought_index | code: stn | fields: type, lat, ts, depth Sensor: turbidity | fields: level, value, type, unit Task: Get lon from drought_index where reading exceeds the maximum value from turbidity for the same ts. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("turbidity", code="ftu"), match="ts"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063135
train
v3
Sensor network script: Node: sunlight | code: mst | fields: lon, lat, qc, unit Sensor: soil_moisture | fields: ts, reading, lon, lat Task: Fetch depth from sunlight where value is greater than the count of of depth in soil_moisture for matching ts. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063136
train
v2
Sensor network script: Node: visibility | code: stn | fields: type, qc, level, lat Sensor: sunlight | fields: reading, depth, ts, lon Task: Get depth from visibility where a corresponding entry exists in sunlight with the same depth. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063137
train
v1
Sensor network script: Node: drought_index | code: stn | fields: depth, qc, unit, value Sensor: soil_moisture | fields: lat, ts, value, level Task: Retrieve depth from drought_index whose type is found in soil_moisture records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063138
train
v2
Sensor network script: Node: air_quality | code: thr | fields: value, level, depth, lat Sensor: rainfall | fields: unit, lat, reading, lon Task: Retrieve lat from air_quality that have at least one matching reading in rainfall sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063139
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: unit, type, level, value Sensor: pressure | fields: qc, reading, level, lon Task: Fetch lon from cloud_cover where qc exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063140
train
v3
Sensor network script: Node: uv_index | code: hub | fields: depth, reading, ts, qc Sensor: air_quality | fields: type, reading, depth, qc Task: Retrieve lon from uv_index with depth above the AVG(value) of air_quality readings sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063141
train
v1
Sensor network script: Node: lightning | code: mst | fields: lat, unit, reading, type Sensor: pressure | fields: lat, unit, lon, type Task: Retrieve level from lightning whose type is found in pressure records where qc matches the outer node. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="qc", ), output="level", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063142
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: level, ts, value, lat Sensor: humidity | fields: reading, type, qc, lon Task: Fetch reading from wind_speed where qc exists in humidity sensor data for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="ts", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063143
train
v1
Sensor network script: Node: air_quality | code: ref | fields: ts, value, reading, lat Sensor: evaporation | fields: reading, unit, depth, value Task: Fetch value from air_quality where unit exists in evaporation sensor data for the same qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="qc", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063144
train
v1
Sensor network script: Node: lightning | code: stn | fields: lon, type, lat, value Sensor: pressure | fields: type, value, level, qc Task: Fetch depth from lightning where depth exists in pressure sensor data for the same type. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="type", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063145
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: qc, level, lon, reading Sensor: wind_speed | fields: unit, lon, reading, lat Task: Fetch lon from snow_depth where depth exists in wind_speed sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="ts", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063146
train
v2
Sensor network script: Node: humidity | code: thr | fields: level, depth, unit, value Sensor: cloud_cover | fields: type, lat, ts, reading Task: Get reading from humidity where a corresponding entry exists in cloud_cover with the same unit. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063147
train
v1
Sensor network script: Node: temperature | code: stn | fields: value, ts, qc, level Sensor: snow_depth | fields: qc, reading, value, lon Task: Fetch depth from temperature where ts exists in snow_depth sensor data for the same unit. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="unit", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063148
train
v3
Sensor network script: Node: humidity | code: thr | fields: qc, type, level, depth Sensor: sunlight | fields: qc, unit, lat, ts Task: Retrieve reading from humidity with value above the MAX(reading) of sunlight readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("sunlight", code="brt"), match="qc"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063149
train
v1
Sensor network script: Node: turbidity | code: gst | fields: lon, reading, ts, unit Sensor: temperature | fields: qc, reading, depth, lon Task: Fetch reading from turbidity where type exists in temperature sensor data for the same type. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="type", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063150
train
v3
Sensor network script: Node: pressure | code: gst | fields: depth, lat, qc, value Sensor: visibility | fields: type, qc, unit, value Task: Fetch level from pressure where depth is greater than the total of depth in visibility for matching ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="ts"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063151
train
v3
Sensor network script: Node: visibility | code: thr | fields: ts, type, lon, reading Sensor: humidity | fields: lat, depth, unit, reading Task: Retrieve lat from visibility with depth above the MAX(reading) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063152
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: lon, unit, level, reading Sensor: rainfall | fields: type, ts, lon, depth Task: Retrieve lat from wind_speed that have at least one matching reading in rainfall sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063153
train
v3
Sensor network script: Node: dew_point | code: clr | fields: ts, lat, reading, qc Sensor: lightning | fields: lat, reading, level, type Task: Fetch reading from dew_point where depth is greater than the average of reading in lightning for matching type. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("lightning", code="tnd"), match="type"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063154
train
v2
Sensor network script: Node: uv_index | code: clr | fields: reading, unit, depth, value Sensor: cloud_cover | fields: depth, value, ts, unit Task: Retrieve lat from uv_index that have at least one matching reading in cloud_cover sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063155
train
v3
Sensor network script: Node: rainfall | code: ref | fields: level, qc, ts, unit Sensor: frost | fields: depth, ts, reading, unit Task: Retrieve depth from rainfall with depth above the MAX(reading) of frost readings sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("frost", code="frs"), match="depth"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063156
train
v3
Sensor network script: Node: air_quality | code: ref | fields: ts, depth, lat, reading Sensor: evaporation | fields: lon, ts, value, level Task: Get lat from air_quality where value exceeds the average depth from evaporation for the same unit. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("evaporation", code="evp"), match="unit"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063157
train
v3
Sensor network script: Node: evaporation | code: thr | fields: ts, depth, level, type Sensor: sunlight | fields: type, qc, ts, depth Task: Retrieve level from evaporation with value above the COUNT(reading) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("sunlight", code="brt"), match="type"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063158
train
v1
Sensor network script: Node: evaporation | code: ref | fields: reading, qc, type, lat Sensor: wind_speed | fields: value, ts, reading, unit Task: Get lat from evaporation where qc appears in wind_speed readings with matching qc. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="qc", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063159
train
v3
Sensor network script: Node: dew_point | code: thr | fields: unit, reading, value, lon Sensor: snow_depth | fields: ts, qc, type, depth Task: Fetch level from dew_point where value is greater than the maximum of reading in snow_depth for matching depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("snow_depth", code="snw"), match="depth"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063160
train
v3
Sensor network script: Node: drought_index | code: mst | fields: qc, lon, depth, lat Sensor: visibility | fields: value, lon, depth, unit Task: Retrieve lon from drought_index with reading above the COUNT(value) of visibility readings sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063161
train
v3
Sensor network script: Node: lightning | code: hub | fields: value, ts, depth, level Sensor: drought_index | fields: lon, unit, lat, level Task: Fetch value from lightning where value is greater than the minimum of value in drought_index for matching unit. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063162
train
v3
Sensor network script: Node: sunlight | code: ref | fields: level, lat, unit, type Sensor: humidity | fields: level, reading, qc, unit Task: Get lon from sunlight where value exceeds the total depth from humidity for the same type. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("humidity", code="hgr"), match="type"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063163
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: lat, qc, level, reading Sensor: wind_speed | fields: reading, value, ts, unit Task: Fetch value from snow_depth where ts exists in wind_speed sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063164
train
v1
Sensor network script: Node: lightning | code: mst | fields: lat, depth, level, ts Sensor: humidity | fields: unit, reading, type, lat Task: Get level from lightning where qc appears in humidity readings with matching type. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="type", ), output="level", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063165
train
v3
Sensor network script: Node: lightning | code: clr | fields: level, unit, qc, lat Sensor: temperature | fields: ts, type, depth, reading Task: Get depth from lightning where reading exceeds the maximum reading from temperature for the same ts. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("temperature", code="thr"), match="ts"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063166
train
v1
Sensor network script: Node: visibility | code: hub | fields: reading, lon, value, lat Sensor: cloud_cover | fields: value, type, lon, depth Task: Get reading from visibility where ts appears in cloud_cover readings with matching qc. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063167
train
v2
Sensor network script: Node: frost | code: gst | fields: level, depth, qc, lon Sensor: lightning | fields: unit, type, ts, lat Task: Get lon from frost where a corresponding entry exists in lightning with the same type. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="lon", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lon", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063168
train
v3
Sensor network script: Node: evaporation | code: thr | fields: type, ts, unit, lat Sensor: drought_index | fields: reading, value, lon, type Task: Fetch value from evaporation where depth is greater than the count of of reading in drought_index for matching type. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("drought_index", code="drt"), match="type"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063169
train
v3
Sensor network script: Node: evaporation | code: ref | fields: reading, ts, depth, lon Sensor: uv_index | fields: ts, qc, value, type Task: Retrieve lat from evaporation with depth above the MAX(value) of uv_index readings sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="qc"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063170
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: unit, value, reading, level Sensor: dew_point | fields: ts, lat, qc, type Task: Get depth from cloud_cover where unit appears in dew_point readings with matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="ts", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063171
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: value, level, lat, reading Sensor: wind_speed | fields: value, type, lat, qc Task: Retrieve depth from snow_depth whose qc is found in wind_speed records where ts matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="ts", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063172
train
v3
Sensor network script: Node: wind_speed | code: thr | fields: reading, unit, level, depth Sensor: turbidity | fields: level, value, reading, ts Task: Retrieve lat from wind_speed with depth above the COUNT(reading) of turbidity readings sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("turbidity", code="ftu"), match="depth"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063173
train
v2
Sensor network script: Node: rainfall | code: hub | fields: type, ts, lon, reading Sensor: visibility | fields: lat, value, level, depth Task: Fetch lon from rainfall that have at least one corresponding visibility measurement for the same ts. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063174
train
v1
Sensor network script: Node: pressure | code: gst | fields: level, depth, type, qc Sensor: uv_index | fields: unit, reading, lon, value Task: Fetch level from pressure where depth exists in uv_index sensor data for the same type. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="type", ), output="level", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "level", "filter_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063175
train
v1
Sensor network script: Node: sunlight | code: hub | fields: value, reading, qc, unit Sensor: humidity | fields: depth, value, qc, unit Task: Retrieve reading from sunlight whose qc is found in humidity records where ts matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="ts", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063176
train
v2
Sensor network script: Node: turbidity | code: ref | fields: type, lon, reading, depth Sensor: temperature | fields: lon, depth, unit, level Task: Get lat from turbidity where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lat", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063177
train
v3
Sensor network script: Node: frost | code: clr | fields: reading, type, level, depth Sensor: soil_moisture | fields: type, ts, lat, unit Task: Fetch value from frost where reading is greater than the minimum of value in soil_moisture for matching unit. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="value", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063178
train
v1
Sensor network script: Node: rainfall | code: clr | fields: lon, level, value, depth Sensor: dew_point | fields: qc, depth, ts, value Task: Get depth from rainfall where ts appears in dew_point readings with matching unit. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063179
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: ts, type, level, depth Sensor: visibility | fields: ts, depth, value, reading Task: Fetch depth from snow_depth where reading is greater than the average of depth in visibility for matching unit. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("visibility", code="clr"), match="unit"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063180
train
v3
Sensor network script: Node: rainfall | code: mst | fields: unit, lon, level, qc Sensor: lightning | fields: value, qc, lat, level Task: Get lat from rainfall where reading exceeds the minimum depth from lightning for the same unit. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("lightning", code="tnd"), match="unit"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063181
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: type, value, unit, depth Sensor: rainfall | fields: qc, value, reading, lat Task: Retrieve value from snow_depth that have at least one matching reading in rainfall sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "value", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063182
train
v2
Sensor network script: Node: visibility | code: hub | fields: lat, type, ts, qc Sensor: drought_index | fields: value, lat, unit, depth Task: Retrieve value from visibility that have at least one matching reading in drought_index sharing the same type. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063183
train
v3
Sensor network script: Node: drought_index | code: clr | fields: lat, type, value, level Sensor: turbidity | fields: qc, ts, unit, depth Task: Get value from drought_index where depth exceeds the average depth from turbidity for the same type. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("turbidity", code="ftu"), match="type"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063184
train
v1
Sensor network script: Node: rainfall | code: mst | fields: value, unit, lon, level Sensor: humidity | fields: lat, ts, level, qc Task: Retrieve lat from rainfall whose depth is found in humidity records where depth matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="depth", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063185
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: unit, lat, type, reading Sensor: cloud_cover | fields: reading, qc, value, lat Task: Fetch reading from soil_moisture where ts exists in cloud_cover sensor data for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063186
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: lat, ts, qc, type Sensor: soil_moisture | fields: ts, reading, lon, lat Task: Retrieve lat from cloud_cover that have at least one matching reading in soil_moisture sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063187
train
v1
Sensor network script: Node: lightning | code: stn | fields: level, qc, reading, value Sensor: evaporation | fields: value, level, depth, type Task: Retrieve level from lightning whose qc is found in evaporation records where qc matches the outer node. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="qc", ), output="level", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063188
train
v3
Sensor network script: Node: frost | code: stn | fields: ts, unit, type, qc Sensor: snow_depth | fields: unit, type, value, qc Task: Fetch lat from frost where depth is greater than the maximum of value in snow_depth for matching qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("snow_depth", code="snw"), match="qc"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063189
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: qc, level, type, value Sensor: uv_index | fields: lat, qc, unit, value Task: Get level from wind_speed where ts appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063190
train
v3
Sensor network script: Node: uv_index | code: thr | fields: depth, qc, value, lon Sensor: drought_index | fields: lon, reading, ts, depth Task: Fetch level from uv_index where depth is greater than the count of of reading in drought_index for matching ts. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("drought_index", code="drt"), match="ts"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063191
train
v3
Sensor network script: Node: air_quality | code: prt | fields: level, value, lon, lat Sensor: snow_depth | fields: value, unit, reading, lon Task: Retrieve lon from air_quality with depth above the MIN(value) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063192
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: depth, lon, qc, type Sensor: cloud_cover | fields: unit, lat, qc, type Task: Fetch lat from soil_moisture where ts exists in cloud_cover sensor data for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063193
train
v1
Sensor network script: Node: dew_point | code: hub | fields: value, lat, type, ts Sensor: rainfall | fields: type, lat, qc, depth Task: Get level from dew_point where qc appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="unit", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "qc", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063194
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: reading, type, qc, ts Sensor: evaporation | fields: type, qc, level, reading Task: Get reading from cloud_cover where value exceeds the maximum reading from evaporation for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("evaporation", code="evp"), match="type"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063195
train
v1
Sensor network script: Node: dew_point | code: clr | fields: lat, value, lon, unit Sensor: sunlight | fields: depth, reading, qc, level Task: Fetch reading from dew_point where type exists in sunlight sensor data for the same qc. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="qc", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "type", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063196
train
v3
Sensor network script: Node: dew_point | code: mst | fields: lat, reading, depth, value Sensor: temperature | fields: ts, qc, reading, unit Task: Retrieve lon from dew_point with value above the SUM(value) of temperature readings sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="ts"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_063197
train
v1
Sensor network script: Node: lightning | code: stn | fields: reading, qc, level, type Sensor: cloud_cover | fields: ts, qc, value, reading Task: Get lat from lightning where qc appears in cloud_cover readings with matching depth. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063198
train
v3
Sensor network script: Node: turbidity | code: ref | fields: qc, type, unit, depth Sensor: uv_index | fields: ts, level, lon, unit Task: Retrieve depth from turbidity with value above the SUM(reading) of uv_index readings sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("uv_index", code="flx"), match="qc"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_063199
train