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: temperature | code: thr | fields: depth, lon, unit, type Sensor: air_quality | fields: value, type, reading, lon Task: Retrieve depth from temperature whose depth is found in air_quality records where ts matches the outer node. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="ts", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013200
train
v1
Sensor network script: Node: temperature | code: gst | fields: lon, level, qc, lat Sensor: air_quality | fields: type, qc, level, unit Task: Retrieve lat from temperature whose type is found in air_quality records where qc matches the outer node. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="qc", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013201
train
v3
Sensor network script: Node: frost | code: mst | fields: type, reading, lat, lon Sensor: soil_moisture | fields: type, ts, lon, unit Task: Get depth from frost where depth exceeds the average depth from soil_moisture for the same type. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013202
train
v3
Sensor network script: Node: dew_point | code: gst | fields: level, ts, unit, reading Sensor: rainfall | fields: depth, unit, value, level Task: Get value from dew_point where reading exceeds the average value from rainfall for the same type. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("rainfall", code="rnfl"), match="type"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013203
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: depth, ts, type, reading Sensor: dew_point | fields: type, lat, value, reading Task: Fetch value from snow_depth that have at least one corresponding dew_point measurement for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013204
train
v2
Sensor network script: Node: humidity | code: ref | fields: unit, lat, value, lon Sensor: evaporation | fields: type, ts, unit, depth Task: Retrieve reading from humidity that have at least one matching reading in evaporation sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "reading", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013205
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: depth, unit, qc, lon Sensor: humidity | fields: lat, type, depth, qc Task: Get depth from snow_depth where reading exceeds the total depth from humidity for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("humidity", code="hgr"), match="ts"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013206
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: level, unit, lon, depth Sensor: dew_point | fields: ts, lat, unit, reading Task: Get lat from wind_speed where type appears in dew_point readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="depth", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "type", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013207
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: type, unit, value, qc Sensor: turbidity | fields: ts, qc, depth, type Task: Get value from wind_speed where type appears in turbidity readings with matching ts. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013208
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: reading, qc, ts, depth Sensor: pressure | fields: qc, depth, type, ts Task: Retrieve value from snow_depth that have at least one matching reading in pressure sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "value", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013209
train
v3
Sensor network script: Node: air_quality | code: mst | fields: depth, reading, unit, level Sensor: pressure | fields: ts, lon, depth, unit Task: Fetch depth from air_quality where depth is greater than the maximum of depth in pressure for matching depth. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("pressure", code="mbl"), match="depth"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013210
train
v3
Sensor network script: Node: air_quality | code: mst | fields: depth, lat, ts, lon Sensor: soil_moisture | fields: unit, qc, depth, value Task: Get reading from air_quality where value exceeds the average depth from soil_moisture for the same type. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013211
train
v3
Sensor network script: Node: frost | code: stn | fields: lon, level, type, ts Sensor: sunlight | fields: unit, ts, value, lon Task: Fetch reading from frost where value is greater than the maximum of depth in sunlight for matching ts. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013212
train
v2
Sensor network script: Node: sunlight | code: prt | fields: reading, qc, value, type Sensor: wind_speed | fields: reading, lat, lon, ts Task: Fetch reading from sunlight that have at least one corresponding wind_speed measurement for the same unit. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "reading", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013213
train
v2
Sensor network script: Node: dew_point | code: clr | fields: type, unit, reading, value Sensor: soil_moisture | fields: ts, unit, value, depth Task: Retrieve lon from dew_point that have at least one matching reading in soil_moisture sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013214
train
v2
Sensor network script: Node: turbidity | code: clr | fields: lon, unit, lat, reading Sensor: lightning | fields: level, lat, ts, qc Task: Get lon from turbidity where a corresponding entry exists in lightning with the same qc. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013215
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: depth, lon, unit, ts Sensor: frost | fields: depth, type, value, lat Task: Get lon from soil_moisture where a corresponding entry exists in frost with the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "lon", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013216
train
v2
Sensor network script: Node: air_quality | code: ref | fields: unit, level, reading, lon Sensor: soil_moisture | fields: lat, depth, unit, reading Task: Fetch lat from air_quality that have at least one corresponding soil_moisture measurement for the same unit. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013217
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: type, depth, lon, level Sensor: air_quality | fields: depth, ts, type, unit Task: Retrieve lat from cloud_cover that have at least one matching reading in air_quality sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013218
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: lat, reading, value, unit Sensor: humidity | fields: unit, type, depth, lat Task: Fetch lon from cloud_cover that have at least one corresponding humidity measurement for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013219
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: reading, value, unit, lat Sensor: visibility | fields: qc, unit, value, lon Task: Retrieve level from soil_moisture with value above the SUM(value) of visibility readings sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="depth"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013220
train
v3
Sensor network script: Node: temperature | code: hub | fields: depth, lat, reading, qc Sensor: wind_speed | fields: lat, ts, reading, qc Task: Retrieve lon from temperature with value above the MAX(depth) of wind_speed readings sharing the same type. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("wind_speed", code="gst"), match="type"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013221
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: lon, lat, ts, reading Sensor: pressure | fields: type, depth, qc, lat Task: Fetch lat from snow_depth where reading is greater than the total of depth in pressure for matching type. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("pressure", code="mbl"), match="type"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013222
train
v3
Sensor network script: Node: dew_point | code: prt | fields: value, qc, level, lat Sensor: turbidity | fields: lat, depth, type, unit Task: Retrieve depth from dew_point with reading above the MAX(depth) of turbidity readings sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("turbidity", code="ftu"), match="ts"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "depth", "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_013223
train
v1
Sensor network script: Node: frost | code: thr | fields: qc, unit, ts, lon Sensor: air_quality | fields: lon, reading, lat, qc Task: Get value from frost where type appears in air_quality readings with matching ts. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="ts", ), output="value", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013224
train
v1
Sensor network script: Node: lightning | code: mst | fields: reading, value, lon, lat Sensor: temperature | fields: depth, reading, level, lon Task: Fetch depth from lightning where qc exists in temperature sensor data for the same ts. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013225
train
v2
Sensor network script: Node: air_quality | code: gst | fields: lon, level, qc, value Sensor: dew_point | fields: lon, level, ts, value Task: Get level from air_quality where a corresponding entry exists in dew_point with the same depth. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013226
train
v1
Sensor network script: Node: pressure | code: prt | fields: depth, value, ts, qc Sensor: humidity | fields: depth, lon, lat, reading Task: Retrieve level from pressure whose type is found in humidity records where ts matches the outer node. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="ts", ), output="level", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013227
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: type, lat, value, depth Sensor: air_quality | fields: level, value, lon, depth Task: Fetch lon from wind_speed where qc exists in air_quality sensor data for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="depth", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013228
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: qc, lon, lat, level Sensor: dew_point | fields: lat, lon, level, type Task: Get reading from cloud_cover where unit appears in dew_point readings with matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="ts", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013229
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: lon, qc, unit, reading Sensor: temperature | fields: lat, type, value, lon Task: Retrieve lon from wind_speed with depth above the SUM(value) of temperature readings sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="unit"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013230
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: ts, reading, type, qc Sensor: drought_index | fields: reading, lat, level, lon Task: Fetch value from soil_moisture that have at least one corresponding drought_index measurement for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013231
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: lat, unit, qc, depth Sensor: soil_moisture | fields: value, qc, unit, lat Task: Get value from wind_speed where a corresponding entry exists in soil_moisture with the same depth. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "value", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013232
train
v2
Sensor network script: Node: dew_point | code: mst | fields: qc, ts, depth, reading Sensor: evaporation | fields: ts, value, level, lat Task: Fetch depth from dew_point that have at least one corresponding evaporation measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013233
train
v1
Sensor network script: Node: rainfall | code: thr | fields: depth, unit, value, qc Sensor: evaporation | fields: ts, depth, qc, lon Task: Retrieve value from rainfall whose depth is found in evaporation records where qc matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="qc", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013234
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: type, lon, level, unit Sensor: sunlight | fields: level, qc, lon, value Task: Retrieve depth from cloud_cover with reading above the MAX(depth) of sunlight readings sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "depth", "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_013235
train
v2
Sensor network script: Node: drought_index | code: hub | fields: depth, qc, unit, ts Sensor: cloud_cover | fields: ts, unit, depth, level Task: Get level from drought_index where a corresponding entry exists in cloud_cover with the same unit. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013236
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: type, value, qc, reading Sensor: snow_depth | fields: reading, type, unit, depth Task: Retrieve lon from wind_speed that have at least one matching reading in snow_depth sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lon", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013237
train
v3
Sensor network script: Node: turbidity | code: ref | fields: lat, value, depth, qc Sensor: rainfall | fields: level, value, depth, qc Task: Get lat from turbidity where depth exceeds the average depth from rainfall for the same depth. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013238
train
v3
Sensor network script: Node: drought_index | code: ref | fields: depth, qc, reading, ts Sensor: uv_index | fields: value, reading, ts, depth Task: Fetch depth from drought_index where depth is greater than the count of of reading in uv_index for matching unit. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013239
train
v2
Sensor network script: Node: air_quality | code: stn | fields: level, value, type, unit Sensor: evaporation | fields: qc, lon, depth, ts Task: Retrieve value from air_quality that have at least one matching reading in evaporation sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "value", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013240
train
v3
Sensor network script: Node: rainfall | code: gst | fields: depth, ts, qc, value Sensor: evaporation | fields: reading, unit, value, type Task: Fetch value from rainfall where depth is greater than the count of of value in evaporation for matching depth. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("evaporation", code="evp"), match="depth"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013241
train
v1
Sensor network script: Node: visibility | code: mst | fields: depth, unit, lat, ts Sensor: humidity | fields: reading, lon, type, ts Task: Retrieve lat from visibility whose depth is found in humidity records where ts matches the outer node. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="ts", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013242
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: lon, level, lat, value Sensor: frost | fields: type, qc, reading, lat Task: Retrieve reading from snow_depth that have at least one matching reading in frost sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "reading", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013243
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: type, unit, depth, ts Sensor: pressure | fields: level, lat, ts, lon Task: Get value from snow_depth where a corresponding entry exists in pressure with the same unit. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013244
train
v2
Sensor network script: Node: pressure | code: hub | fields: qc, level, ts, reading Sensor: uv_index | fields: level, value, qc, ts Task: Fetch level from pressure that have at least one corresponding uv_index measurement for the same ts. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="level", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "level", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013245
train
v1
Sensor network script: Node: rainfall | code: hub | fields: ts, depth, unit, level Sensor: humidity | fields: lat, unit, reading, ts Task: Retrieve value from rainfall whose depth is found in humidity records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="ts", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013246
train
v3
Sensor network script: Node: dew_point | code: hub | fields: lat, depth, type, reading Sensor: rainfall | fields: value, lon, qc, level Task: Get reading from dew_point where depth exceeds the count of value from rainfall for the same type. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="type"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013247
train
v3
Sensor network script: Node: rainfall | code: thr | fields: reading, type, unit, lat Sensor: wind_speed | fields: reading, type, unit, qc Task: Fetch reading from rainfall where value is greater than the minimum of depth in wind_speed for matching depth. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("wind_speed", code="gst"), match="depth"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013248
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: reading, depth, value, lon Sensor: rainfall | fields: ts, unit, reading, lon Task: Fetch lat from soil_moisture where reading is greater than the total of depth in rainfall for matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013249
train
v1
Sensor network script: Node: lightning | code: gst | fields: qc, unit, depth, ts Sensor: sunlight | fields: qc, unit, lon, value Task: Retrieve lon from lightning whose depth is found in sunlight records where type matches the outer node. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="type", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013250
train
v1
Sensor network script: Node: pressure | code: hub | fields: ts, unit, qc, lon Sensor: turbidity | fields: reading, qc, level, lon Task: Fetch value from pressure where type exists in turbidity sensor data for the same qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="qc", ), output="value", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013251
train
v2
Sensor network script: Node: humidity | code: thr | fields: reading, qc, lon, depth Sensor: air_quality | fields: reading, qc, depth, ts Task: Get value from humidity where a corresponding entry exists in air_quality with the same depth. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="value", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "value", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013252
train
v3
Sensor network script: Node: evaporation | code: stn | fields: depth, value, level, type Sensor: pressure | fields: lat, unit, qc, value Task: Get level from evaporation where depth exceeds the total depth from pressure for the same type. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("pressure", code="mbl"), match="type"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013253
train
v3
Sensor network script: Node: temperature | code: gst | fields: lon, lat, qc, reading Sensor: evaporation | fields: type, lat, lon, level Task: Get depth from temperature where value exceeds the average depth from evaporation for the same type. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("evaporation", code="evp"), match="type"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013254
train
v1
Sensor network script: Node: uv_index | code: stn | fields: qc, value, lon, unit Sensor: humidity | fields: level, lon, reading, lat Task: Retrieve value from uv_index whose type is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="qc", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013255
train
v3
Sensor network script: Node: rainfall | code: stn | fields: level, ts, qc, depth Sensor: humidity | fields: type, level, lon, reading Task: Retrieve lon from rainfall with value above the COUNT(reading) of humidity readings sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="type"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013256
train
v2
Sensor network script: Node: temperature | code: prt | fields: depth, value, reading, type Sensor: rainfall | fields: type, lat, unit, reading Task: Fetch reading from temperature that have at least one corresponding rainfall measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013257
train
v3
Sensor network script: Node: uv_index | code: ref | fields: qc, lat, lon, value Sensor: air_quality | fields: unit, lat, qc, reading Task: Fetch depth from uv_index where depth is greater than the count of of depth in air_quality for matching qc. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="qc"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013258
train
v2
Sensor network script: Node: air_quality | code: stn | fields: value, level, unit, depth Sensor: temperature | fields: reading, depth, lat, ts Task: Get lat from air_quality where a corresponding entry exists in temperature with the same unit. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lat", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013259
train
v2
Sensor network script: Node: sunlight | code: prt | fields: type, value, lat, ts Sensor: pressure | fields: type, lat, depth, lon Task: Get reading from sunlight where a corresponding entry exists in pressure with the same depth. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013260
train
v1
Sensor network script: Node: drought_index | code: clr | fields: value, level, reading, unit Sensor: turbidity | fields: type, level, unit, reading Task: Retrieve lat from drought_index whose type is found in turbidity records where ts matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="ts", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013261
train
v3
Sensor network script: Node: lightning | code: stn | fields: ts, value, level, reading Sensor: turbidity | fields: ts, level, qc, depth Task: Get lon from lightning where depth exceeds the maximum depth from turbidity for the same depth. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("turbidity", code="ftu"), match="depth"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013262
train
v2
Sensor network script: Node: temperature | code: mst | fields: qc, lat, level, value Sensor: visibility | fields: depth, reading, value, qc Task: Fetch value from temperature that have at least one corresponding visibility measurement for the same qc. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="value", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "value", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013263
train
v1
Sensor network script: Node: rainfall | code: mst | fields: type, lon, level, qc Sensor: evaporation | fields: lon, level, unit, lat Task: Fetch level from rainfall where type exists in evaporation sensor data for the same depth. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013264
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: reading, qc, level, lon Sensor: wind_speed | fields: value, lat, depth, reading Task: Get reading from soil_moisture where a corresponding entry exists in wind_speed with the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013265
train
v3
Sensor network script: Node: humidity | code: hub | fields: lat, depth, ts, value Sensor: lightning | fields: depth, reading, ts, lon Task: Fetch level from humidity where depth is greater than the count of of value in lightning for matching unit. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("lightning", code="tnd"), match="unit"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013266
train
v3
Sensor network script: Node: pressure | code: gst | fields: lon, qc, reading, type Sensor: visibility | fields: unit, level, lat, reading Task: Get lon from pressure where depth exceeds the count of value from visibility for the same depth. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("visibility", code="clr"), match="depth"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013267
train
v2
Sensor network script: Node: temperature | code: gst | fields: lat, depth, lon, reading Sensor: snow_depth | fields: level, value, unit, depth Task: Get value from temperature where a corresponding entry exists in snow_depth with the same depth. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="value", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "value", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013268
train
v2
Sensor network script: Node: humidity | code: gst | fields: reading, level, ts, qc Sensor: turbidity | fields: qc, reading, value, lat Task: Fetch reading from humidity that have at least one corresponding turbidity measurement for the same qc. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "reading", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013269
train
v1
Sensor network script: Node: drought_index | code: ref | fields: lat, reading, qc, value Sensor: pressure | fields: type, qc, depth, unit Task: Retrieve lat from drought_index whose ts is found in pressure records where qc matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="qc", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013270
train
v1
Sensor network script: Node: temperature | code: prt | fields: value, depth, level, qc Sensor: wind_speed | fields: unit, value, depth, lat Task: Fetch lon from temperature where unit exists in wind_speed sensor data for the same ts. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013271
train
v2
Sensor network script: Node: temperature | code: prt | fields: lat, unit, depth, qc Sensor: rainfall | fields: type, lat, ts, value Task: Get value from temperature where a corresponding entry exists in rainfall with the same qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="value", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "value", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013272
train
v2
Sensor network script: Node: uv_index | code: gst | fields: qc, lon, ts, level Sensor: evaporation | fields: level, depth, lat, qc Task: Fetch lon from uv_index that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013273
train
v3
Sensor network script: Node: turbidity | code: mst | fields: type, ts, value, lon Sensor: visibility | fields: reading, depth, ts, level Task: Get level from turbidity where value exceeds the total value from visibility for the same unit. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="unit"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013274
train
v2
Sensor network script: Node: drought_index | code: mst | fields: depth, qc, ts, unit Sensor: visibility | fields: unit, lat, depth, qc Task: Fetch depth from drought_index that have at least one corresponding visibility measurement for the same depth. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013275
train
v2
Sensor network script: Node: pressure | code: hub | fields: reading, unit, level, qc Sensor: uv_index | fields: level, ts, reading, depth Task: Retrieve reading from pressure that have at least one matching reading in uv_index sharing the same type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013276
train
v1
Sensor network script: Node: frost | code: hub | fields: qc, ts, value, unit Sensor: rainfall | fields: ts, type, value, reading Task: Fetch reading from frost where unit exists in rainfall sensor data for the same depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="depth", ), output="reading", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013277
train
v3
Sensor network script: Node: dew_point | code: hub | fields: value, lat, type, ts Sensor: cloud_cover | fields: ts, reading, lat, value Task: Fetch depth from dew_point where reading is greater than the total of depth in cloud_cover for matching type. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013278
train
v1
Sensor network script: Node: humidity | code: stn | fields: depth, qc, level, lat Sensor: wind_speed | fields: lat, type, reading, depth Task: Get lon from humidity where depth appears in wind_speed readings with matching ts. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="ts", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013279
train
v1
Sensor network script: Node: lightning | code: hub | fields: ts, value, depth, lat Sensor: uv_index | fields: lon, unit, value, depth Task: Get level from lightning where depth appears in uv_index readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="unit", ), output="level", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013280
train
v3
Sensor network script: Node: drought_index | code: prt | fields: level, depth, value, type Sensor: temperature | fields: value, lon, lat, ts Task: Get depth from drought_index where value exceeds the count of depth from temperature for the same type. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013281
train
v1
Sensor network script: Node: frost | code: hub | fields: unit, qc, level, lon Sensor: visibility | fields: ts, level, depth, lon Task: Retrieve depth from frost whose qc is found in visibility records where ts matches the outer node. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="ts", ), output="depth", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013282
train
v1
Sensor network script: Node: temperature | code: hub | fields: value, type, lon, lat Sensor: visibility | fields: type, unit, depth, value Task: Get reading from temperature where ts appears in visibility readings with matching unit. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013283
train
v2
Sensor network script: Node: evaporation | code: clr | fields: lon, type, ts, depth Sensor: turbidity | fields: ts, level, value, reading Task: Get lat from evaporation where a corresponding entry exists in turbidity with the same type. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lat", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013284
train
v1
Sensor network script: Node: turbidity | code: thr | fields: ts, value, reading, type Sensor: uv_index | fields: qc, type, lon, level Task: Get value from turbidity where qc appears in uv_index readings with matching ts. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="ts", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013285
train
v2
Sensor network script: Node: sunlight | code: ref | fields: ts, lon, level, qc Sensor: frost | fields: reading, qc, lon, unit Task: Get lon from sunlight where a corresponding entry exists in frost with the same unit. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013286
train
v2
Sensor network script: Node: pressure | code: thr | fields: depth, type, reading, ts Sensor: sunlight | fields: level, qc, depth, value Task: Fetch lon from pressure that have at least one corresponding sunlight measurement for the same ts. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="lon", )
{ "outer_table": "pressure", "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_013287
train
v3
Sensor network script: Node: turbidity | code: clr | fields: depth, lat, ts, level Sensor: frost | fields: level, lat, unit, reading Task: Retrieve lat from turbidity with depth above the SUM(reading) of frost readings sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013288
train
v2
Sensor network script: Node: frost | code: hub | fields: level, depth, reading, ts Sensor: dew_point | fields: level, depth, ts, lat Task: Fetch reading from frost that have at least one corresponding dew_point measurement for the same depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="reading", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "reading", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013289
train
v2
Sensor network script: Node: humidity | code: thr | fields: value, lon, reading, lat Sensor: pressure | fields: depth, type, value, lon Task: Get reading from humidity where a corresponding entry exists in pressure with the same depth. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013290
train
v2
Sensor network script: Node: lightning | code: clr | fields: qc, type, unit, reading Sensor: turbidity | fields: level, type, unit, reading Task: Fetch value from lightning that have at least one corresponding turbidity measurement for the same depth. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013291
train
v3
Sensor network script: Node: evaporation | code: stn | fields: ts, qc, unit, level Sensor: wind_speed | fields: qc, level, lon, ts Task: Retrieve lon from evaporation with depth above the SUM(reading) of wind_speed readings sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("wind_speed", code="gst"), match="depth"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013292
train
v1
Sensor network script: Node: drought_index | code: gst | fields: type, lon, lat, value Sensor: turbidity | fields: ts, reading, unit, depth Task: Retrieve value from drought_index whose type is found in turbidity records where depth matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="depth", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013293
train
v3
Sensor network script: Node: evaporation | code: clr | fields: unit, value, qc, level Sensor: humidity | fields: lon, type, ts, depth Task: Get reading from evaporation where value exceeds the minimum depth from humidity for the same unit. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013294
train
v2
Sensor network script: Node: evaporation | code: thr | fields: level, reading, value, lon Sensor: uv_index | fields: depth, ts, reading, level Task: Fetch reading from evaporation that have at least one corresponding uv_index measurement for the same type. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "reading", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013295
train
v2
Sensor network script: Node: rainfall | code: clr | fields: unit, lat, lon, qc Sensor: snow_depth | fields: qc, type, value, unit Task: Retrieve lat from rainfall that have at least one matching reading in snow_depth sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lat", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013296
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: lat, type, unit, qc Sensor: rainfall | fields: depth, level, unit, reading Task: Retrieve reading from wind_speed that have at least one matching reading in rainfall sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013297
train
v1
Sensor network script: Node: turbidity | code: thr | fields: value, qc, unit, lon Sensor: air_quality | fields: lat, reading, level, lon Task: Fetch level from turbidity where type exists in air_quality sensor data for the same depth. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="depth", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013298
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: value, unit, lon, ts Sensor: frost | fields: unit, level, reading, value Task: Fetch lon from wind_speed where ts exists in frost sensor data for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="ts", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013299
train