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: cloud_cover | code: ref | fields: unit, reading, lat, depth Sensor: visibility | fields: type, reading, lat, value Task: Fetch reading from cloud_cover where ts exists in visibility sensor data for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="type", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077300
train
v2
Sensor network script: Node: frost | code: clr | fields: lon, qc, depth, reading Sensor: uv_index | fields: value, lat, lon, ts Task: Get depth from frost where a corresponding entry exists in uv_index with the same unit. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="depth", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077301
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: level, unit, ts, value Sensor: snow_depth | fields: ts, level, reading, lon Task: Fetch depth from cloud_cover that have at least one corresponding snow_depth measurement for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077302
train
v3
Sensor network script: Node: pressure | code: ref | fields: unit, qc, level, reading Sensor: temperature | fields: value, ts, level, lon Task: Get reading from pressure where reading exceeds the count of value from temperature for the same type. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("temperature", code="thr"), match="type"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077303
train
v3
Sensor network script: Node: evaporation | code: prt | fields: reading, unit, lat, ts Sensor: drought_index | fields: reading, value, lon, level Task: Get lon from evaporation where depth exceeds the minimum value from drought_index for the same ts. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("drought_index", code="drt"), match="ts"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "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_077304
train
v3
Sensor network script: Node: rainfall | code: gst | fields: unit, lat, ts, type Sensor: turbidity | fields: lat, unit, value, ts Task: Retrieve value from rainfall with value above the SUM(reading) of turbidity readings sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("turbidity", code="ftu"), match="depth"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077305
train
v1
Sensor network script: Node: turbidity | code: clr | fields: unit, level, depth, ts Sensor: lightning | fields: lon, level, type, reading Task: Get value from turbidity where depth appears in lightning readings with matching depth. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="depth", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077306
train
v2
Sensor network script: Node: evaporation | code: hub | fields: level, ts, lon, unit Sensor: wind_speed | fields: unit, ts, depth, qc Task: Retrieve lon from evaporation that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077307
train
v3
Sensor network script: Node: drought_index | code: hub | fields: lon, depth, value, qc Sensor: air_quality | fields: ts, lat, reading, type Task: Fetch level from drought_index where depth is greater than the count of of value in air_quality for matching ts. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("air_quality", code="prt"), match="ts"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077308
train
v1
Sensor network script: Node: frost | code: prt | fields: level, type, depth, lat Sensor: wind_speed | fields: reading, unit, ts, depth Task: Get level from frost where depth appears in wind_speed readings with matching depth. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="depth", ), output="level", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077309
train
v3
Sensor network script: Node: drought_index | code: gst | fields: ts, depth, reading, value Sensor: frost | fields: reading, lon, unit, ts Task: Fetch lat from drought_index where value is greater than the maximum of reading in frost for matching qc. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("frost", code="frs"), match="qc"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077310
train
v2
Sensor network script: Node: dew_point | code: ref | fields: ts, lon, qc, type Sensor: cloud_cover | fields: depth, ts, unit, lat Task: Fetch level from dew_point that have at least one corresponding cloud_cover measurement for the same unit. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077311
train
v1
Sensor network script: Node: turbidity | code: ref | fields: qc, type, value, ts Sensor: sunlight | fields: depth, lon, value, level Task: Retrieve lon from turbidity whose qc is found in sunlight records where depth matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="depth", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077312
train
v2
Sensor network script: Node: frost | code: gst | fields: type, qc, ts, unit Sensor: turbidity | fields: qc, reading, unit, ts Task: Fetch lat from frost that have at least one corresponding turbidity measurement for the same type. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="lat", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lat", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077313
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: unit, ts, reading, lat Sensor: humidity | fields: qc, lat, ts, lon Task: Fetch reading from snow_depth where reading is greater than the count of of value in humidity for matching ts. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("humidity", code="hgr"), match="ts"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077314
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: type, value, depth, ts Sensor: turbidity | fields: ts, depth, unit, reading Task: Get depth from snow_depth where a corresponding entry exists in turbidity with the same type. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077315
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: value, reading, qc, depth Sensor: evaporation | fields: ts, reading, type, unit Task: Retrieve lat from soil_moisture whose ts is found in evaporation records where depth matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="depth", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077316
train
v2
Sensor network script: Node: rainfall | code: prt | fields: reading, depth, qc, level Sensor: wind_speed | fields: lat, value, level, ts Task: Fetch depth from rainfall that have at least one corresponding wind_speed measurement for the same depth. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077317
train
v1
Sensor network script: Node: temperature | code: hub | fields: type, lat, depth, unit Sensor: wind_speed | fields: level, unit, depth, type Task: Retrieve level from temperature whose unit is found in wind_speed records where type matches the outer node. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "level", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077318
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: type, lon, level, ts Sensor: rainfall | fields: qc, level, ts, lon Task: Get reading from cloud_cover where a corresponding entry exists in rainfall with the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077319
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: depth, type, reading, lon Sensor: rainfall | fields: lon, qc, lat, unit Task: Fetch depth from wind_speed where depth is greater than the minimum of value in rainfall for matching type. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("rainfall", code="rnfl"), match="type"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077320
train
v3
Sensor network script: Node: air_quality | code: mst | fields: level, qc, lat, unit Sensor: snow_depth | fields: lat, unit, qc, reading Task: Retrieve reading from air_quality with reading above the AVG(depth) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077321
train
v1
Sensor network script: Node: rainfall | code: gst | fields: depth, lon, qc, reading Sensor: snow_depth | fields: unit, value, level, reading Task: Fetch lat from rainfall where type exists in snow_depth sensor data for the same type. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="type", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077322
train
v2
Sensor network script: Node: visibility | code: gst | fields: value, unit, qc, ts Sensor: drought_index | fields: qc, ts, level, lon Task: Retrieve reading from visibility that have at least one matching reading in drought_index sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077323
train
v1
Sensor network script: Node: dew_point | code: mst | fields: unit, level, qc, reading Sensor: visibility | fields: type, reading, value, qc Task: Retrieve reading from dew_point whose ts is found in visibility records where unit matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077324
train
v2
Sensor network script: Node: dew_point | code: thr | fields: ts, qc, lat, depth Sensor: humidity | fields: unit, value, depth, reading Task: Fetch lon from dew_point that have at least one corresponding humidity measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lon", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077325
train
v1
Sensor network script: Node: rainfall | code: stn | fields: reading, level, qc, lon Sensor: turbidity | fields: qc, unit, level, reading Task: Get lon from rainfall where qc appears in turbidity readings with matching qc. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="qc", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077326
train
v3
Sensor network script: Node: dew_point | code: thr | fields: qc, lat, unit, lon Sensor: sunlight | fields: level, qc, type, depth Task: Get lon from dew_point where value exceeds the maximum value from sunlight for the same qc. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("sunlight", code="brt"), match="qc"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077327
train
v3
Sensor network script: Node: rainfall | code: stn | fields: ts, unit, level, value Sensor: humidity | fields: depth, lat, type, level Task: Fetch lon from rainfall where reading is greater than the average of value in humidity for matching type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", 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": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077328
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: lon, reading, qc, level Sensor: snow_depth | fields: qc, ts, unit, level Task: Retrieve lon from soil_moisture whose qc is found in snow_depth records where type matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="type", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077329
train
v1
Sensor network script: Node: sunlight | code: prt | fields: lon, depth, value, reading Sensor: soil_moisture | fields: lat, depth, reading, qc Task: Retrieve lon from sunlight whose unit is found in soil_moisture records where ts matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077330
train
v1
Sensor network script: Node: rainfall | code: mst | fields: qc, depth, ts, level Sensor: uv_index | fields: level, depth, unit, reading Task: Get level from rainfall where unit appears in uv_index readings with matching type. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="type", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "level", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077331
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: reading, ts, depth, level Sensor: lightning | fields: lat, reading, type, depth Task: Fetch lon from cloud_cover where qc exists in lightning sensor data for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077332
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: depth, lat, unit, reading Sensor: evaporation | fields: type, level, qc, lat Task: Retrieve level from snow_depth whose ts is found in evaporation records where depth matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="depth", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077333
train
v3
Sensor network script: Node: frost | code: clr | fields: unit, depth, type, level Sensor: air_quality | fields: qc, depth, reading, lat Task: Get lon from frost where value exceeds the minimum value from air_quality for the same unit. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="unit"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077334
train
v3
Sensor network script: Node: pressure | code: gst | fields: type, unit, depth, value Sensor: uv_index | fields: type, lon, lat, value Task: Get lon from pressure where value exceeds the average value from uv_index for the same qc. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("uv_index", code="flx"), match="qc"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077335
train
v1
Sensor network script: Node: lightning | code: hub | fields: unit, depth, ts, lon Sensor: visibility | fields: lon, reading, unit, type Task: Retrieve reading from lightning whose type is found in visibility records where unit matches the outer node. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077336
train
v2
Sensor network script: Node: temperature | code: hub | fields: qc, unit, ts, reading Sensor: humidity | fields: lon, qc, unit, reading Task: Retrieve reading from temperature that have at least one matching reading in humidity sharing the same type. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077337
train
v2
Sensor network script: Node: evaporation | code: prt | fields: level, lat, type, depth Sensor: soil_moisture | fields: value, unit, qc, level Task: Retrieve lat from evaporation that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077338
train
v2
Sensor network script: Node: sunlight | code: stn | fields: qc, type, reading, value Sensor: lightning | fields: type, ts, level, value Task: Get reading from sunlight where a corresponding entry exists in lightning with the same unit. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077339
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: ts, type, lat, value Sensor: temperature | fields: value, lat, depth, reading Task: Get reading from soil_moisture where type appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="unit", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077340
train
v3
Sensor network script: Node: rainfall | code: hub | fields: lon, ts, qc, reading Sensor: dew_point | fields: unit, lat, depth, value Task: Get lat from rainfall where depth exceeds the minimum value from dew_point for the same ts. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("dew_point", code="cnd"), match="ts"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077341
train
v3
Sensor network script: Node: humidity | code: thr | fields: unit, value, depth, reading Sensor: cloud_cover | fields: type, value, qc, depth Task: Retrieve value from humidity with reading above the MAX(value) of cloud_cover readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077342
train
v2
Sensor network script: Node: visibility | code: ref | fields: value, ts, type, lon Sensor: pressure | fields: reading, qc, value, lon Task: Retrieve level from visibility that have at least one matching reading in pressure sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="level", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "level", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077343
train
v3
Sensor network script: Node: air_quality | code: thr | fields: lat, value, ts, type Sensor: drought_index | fields: level, depth, qc, lat Task: Fetch value from air_quality where value is greater than the maximum of depth in drought_index for matching qc. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077344
train
v1
Sensor network script: Node: drought_index | code: clr | fields: qc, value, lat, level Sensor: uv_index | fields: unit, qc, level, reading Task: Fetch depth from drought_index where ts exists in uv_index sensor data for the same type. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="type", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077345
train
v1
Sensor network script: Node: evaporation | code: mst | fields: level, value, type, ts Sensor: humidity | fields: depth, unit, ts, type Task: Get lon from evaporation where depth appears in humidity readings with matching ts. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="ts", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077346
train
v1
Sensor network script: Node: drought_index | code: stn | fields: lat, ts, unit, value Sensor: wind_speed | fields: lat, qc, unit, reading Task: Fetch reading from drought_index where qc exists in wind_speed sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="depth", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "reading", "filter_col": "qc", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077347
train
v3
Sensor network script: Node: frost | code: clr | fields: qc, level, ts, depth Sensor: rainfall | fields: value, lon, type, reading Task: Fetch lon from frost where depth is greater than the count of of reading in rainfall for matching unit. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077348
train
v3
Sensor network script: Node: air_quality | code: stn | fields: value, lat, qc, ts Sensor: drought_index | fields: qc, depth, ts, level Task: Retrieve lat from air_quality with reading above the MIN(reading) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("drought_index", code="drt"), match="qc"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077349
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: value, level, reading, depth Sensor: dew_point | fields: type, qc, reading, ts Task: Retrieve reading from wind_speed that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077350
train
v2
Sensor network script: Node: uv_index | code: mst | fields: lat, level, type, qc Sensor: frost | fields: depth, lon, level, ts Task: Retrieve value from uv_index that have at least one matching reading in frost sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077351
train
v2
Sensor network script: Node: pressure | code: hub | fields: lon, depth, unit, value Sensor: uv_index | fields: lon, value, level, lat Task: Retrieve lon from pressure that have at least one matching reading in uv_index sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lon", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077352
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: reading, lon, depth, unit Sensor: sunlight | fields: value, qc, ts, unit Task: Get reading from snow_depth where a corresponding entry exists in sunlight with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077353
train
v1
Sensor network script: Node: humidity | code: prt | fields: unit, lat, level, ts Sensor: rainfall | fields: ts, qc, value, level Task: Get lat from humidity where unit appears in rainfall readings with matching ts. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="ts", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077354
train
v3
Sensor network script: Node: air_quality | code: ref | fields: value, reading, ts, depth Sensor: humidity | fields: level, type, ts, lon Task: Fetch depth from air_quality where value is greater than the maximum of depth in humidity for matching unit. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077355
train
v2
Sensor network script: Node: rainfall | code: gst | fields: qc, level, lat, ts Sensor: visibility | fields: type, depth, ts, lon Task: Fetch reading from rainfall that have at least one corresponding visibility measurement for the same ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077356
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: value, unit, type, lon Sensor: snow_depth | fields: depth, unit, qc, lon Task: Fetch lat from wind_speed where type exists in snow_depth sensor data for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077357
train
v2
Sensor network script: Node: visibility | code: clr | fields: depth, level, type, reading Sensor: dew_point | fields: reading, ts, lon, level Task: Get lat from visibility where a corresponding entry exists in dew_point with the same depth. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lat", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077358
train
v3
Sensor network script: Node: turbidity | code: hub | fields: level, reading, depth, ts Sensor: sunlight | fields: qc, value, ts, type Task: Fetch lon from turbidity where depth is greater than the total of value in sunlight for matching type. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("sunlight", code="brt"), match="type"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077359
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: unit, qc, reading, depth Sensor: air_quality | fields: depth, reading, qc, type Task: Get depth from cloud_cover where a corresponding entry exists in air_quality with the same type. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077360
train
v1
Sensor network script: Node: turbidity | code: thr | fields: type, ts, qc, reading Sensor: humidity | fields: unit, type, lon, depth Task: Retrieve reading from turbidity whose depth is found in humidity records where ts matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="ts", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077361
train
v3
Sensor network script: Node: rainfall | code: ref | fields: depth, type, ts, value Sensor: drought_index | fields: qc, lat, depth, value Task: Get value from rainfall where depth exceeds the count of reading from drought_index for the same ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("drought_index", code="drt"), match="ts"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077362
train
v1
Sensor network script: Node: visibility | code: stn | fields: unit, qc, value, level Sensor: temperature | fields: value, type, reading, lat Task: Retrieve lon from visibility whose type is found in temperature records where unit matches the outer node. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="unit", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "filter_col": "type", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077363
train
v1
Sensor network script: Node: frost | code: gst | fields: lat, qc, ts, value Sensor: air_quality | fields: qc, lon, lat, depth Task: Retrieve value from frost whose unit is found in air_quality records where qc matches the outer node. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="qc", ), output="value", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077364
train
v2
Sensor network script: Node: lightning | code: gst | fields: ts, value, reading, depth Sensor: snow_depth | fields: lon, level, reading, depth Task: Fetch reading from lightning that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "reading", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077365
train
v2
Sensor network script: Node: cloud_cover | code: gst | fields: level, depth, type, unit Sensor: temperature | fields: lon, reading, ts, qc Task: Fetch depth from cloud_cover that have at least one corresponding temperature measurement for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077366
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: lat, reading, unit, depth Sensor: rainfall | fields: qc, unit, reading, lon Task: Retrieve depth from wind_speed that have at least one matching reading in rainfall sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077367
train
v2
Sensor network script: Node: humidity | code: thr | fields: lon, value, lat, unit Sensor: evaporation | fields: depth, value, type, level Task: Fetch lon from humidity that have at least one corresponding evaporation measurement for the same qc. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "lon", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077368
train
v3
Sensor network script: Node: rainfall | code: mst | fields: depth, value, qc, unit Sensor: air_quality | fields: ts, value, unit, depth Task: Retrieve depth from rainfall with depth above the COUNT(value) of air_quality readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("air_quality", code="prt"), match="ts"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077369
train
v1
Sensor network script: Node: pressure | code: gst | fields: unit, type, depth, level Sensor: turbidity | fields: level, reading, depth, lon Task: Get lon from pressure where type appears in turbidity readings with matching ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="ts", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077370
train
v1
Sensor network script: Node: sunlight | code: thr | fields: unit, lat, value, reading Sensor: wind_speed | fields: type, qc, depth, lon Task: Fetch level from sunlight where qc exists in wind_speed sensor data for the same depth. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="depth", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077371
train
v1
Sensor network script: Node: uv_index | code: mst | fields: qc, unit, level, type Sensor: drought_index | fields: depth, unit, qc, value Task: Get lat from uv_index where qc appears in drought_index readings with matching type. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="type", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077372
train
v3
Sensor network script: Node: temperature | code: clr | fields: lat, qc, ts, depth Sensor: soil_moisture | fields: type, reading, lon, qc Task: Get lon from temperature where value exceeds the count of value from soil_moisture for the same depth. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077373
train
v1
Sensor network script: Node: temperature | code: prt | fields: lon, type, ts, reading Sensor: frost | fields: ts, lat, value, reading Task: Fetch depth from temperature where unit exists in frost sensor data for the same depth. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="depth", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077374
train
v2
Sensor network script: Node: sunlight | code: mst | fields: lat, reading, unit, qc Sensor: rainfall | fields: qc, lat, type, reading Task: Get level from sunlight where a corresponding entry exists in rainfall with the same depth. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "level", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077375
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: depth, ts, type, reading Sensor: lightning | fields: unit, lon, value, reading Task: Get lat from snow_depth where a corresponding entry exists in lightning with the same ts. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lat", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077376
train
v2
Sensor network script: Node: uv_index | code: prt | fields: reading, level, ts, unit Sensor: evaporation | fields: level, lat, value, lon Task: Get value from uv_index where a corresponding entry exists in evaporation with the same qc. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "value", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077377
train
v3
Sensor network script: Node: turbidity | code: ref | fields: unit, type, lon, lat Sensor: rainfall | fields: type, qc, reading, lat Task: Get lat from turbidity where value exceeds the total value from rainfall for the same depth. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", 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": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077378
train
v2
Sensor network script: Node: pressure | code: mst | fields: qc, type, level, value Sensor: dew_point | fields: reading, qc, value, unit Task: Get reading from pressure where a corresponding entry exists in dew_point with the same qc. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "reading", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077379
train
v3
Sensor network script: Node: uv_index | code: gst | fields: reading, qc, ts, type Sensor: visibility | fields: qc, ts, reading, unit Task: Retrieve reading from uv_index with value above the COUNT(value) of visibility readings sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("visibility", code="clr"), match="type"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077380
train
v3
Sensor network script: Node: humidity | code: prt | fields: reading, lon, ts, depth Sensor: sunlight | fields: reading, ts, type, qc Task: Fetch reading from humidity where reading is greater than the count of of reading in sunlight for matching qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("sunlight", code="brt"), match="qc"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077381
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: type, lon, ts, unit Sensor: turbidity | fields: level, unit, ts, depth Task: Get lat from snow_depth where depth appears in turbidity readings with matching unit. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="unit", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077382
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: unit, lat, qc, reading Sensor: wind_speed | fields: depth, level, reading, lat Task: Retrieve level from soil_moisture with reading above the AVG(depth) of wind_speed readings sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("wind_speed", code="gst"), match="unit"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077383
train
v2
Sensor network script: Node: humidity | code: mst | fields: reading, value, qc, level Sensor: cloud_cover | fields: lon, lat, qc, type Task: Retrieve lon from humidity that have at least one matching reading in cloud_cover sharing the same type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lon", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077384
train
v3
Sensor network script: Node: frost | code: mst | fields: lon, qc, ts, type Sensor: rainfall | fields: type, value, lat, unit Task: Get reading from frost where value exceeds the total reading from rainfall for the same ts. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077385
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: level, type, ts, depth Sensor: wind_speed | fields: value, lat, reading, lon Task: Fetch lat from soil_moisture where depth exists in wind_speed sensor data for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="type", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077386
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: depth, type, qc, reading Sensor: humidity | fields: lon, depth, ts, unit Task: Retrieve level from snow_depth with depth above the MAX(reading) of humidity readings sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("humidity", code="hgr"), match="ts"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077387
train
v1
Sensor network script: Node: evaporation | code: hub | fields: type, level, reading, value Sensor: cloud_cover | fields: reading, unit, qc, level Task: Retrieve lon from evaporation whose unit is found in cloud_cover records where qc matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077388
train
v3
Sensor network script: Node: lightning | code: thr | fields: lat, ts, type, lon Sensor: visibility | fields: reading, value, level, type Task: Retrieve depth from lightning with depth above the MIN(reading) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("visibility", code="clr"), match="qc"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077389
train
v1
Sensor network script: Node: temperature | code: gst | fields: depth, lon, level, value Sensor: lightning | fields: qc, lon, ts, level Task: Get lon from temperature where depth appears in lightning readings with matching unit. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="unit", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077390
train
v1
Sensor network script: Node: visibility | code: gst | fields: level, reading, qc, ts Sensor: drought_index | fields: lat, unit, level, qc Task: Retrieve value from visibility whose unit is found in drought_index records where qc matches the outer node. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="qc", ), output="value", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077391
train
v2
Sensor network script: Node: evaporation | code: thr | fields: lat, level, reading, depth Sensor: visibility | fields: level, ts, value, qc Task: Retrieve lat from evaporation that have at least one matching reading in visibility sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077392
train
v1
Sensor network script: Node: sunlight | code: hub | fields: ts, qc, level, reading Sensor: cloud_cover | fields: qc, level, lon, lat Task: Fetch value from sunlight where ts exists in cloud_cover sensor data for the same type. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="type", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077393
train
v1
Sensor network script: Node: visibility | code: mst | fields: depth, unit, ts, value Sensor: dew_point | fields: reading, ts, value, qc Task: Retrieve lat from visibility whose depth is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="qc", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077394
train
v2
Sensor network script: Node: drought_index | code: thr | fields: depth, lon, unit, qc Sensor: cloud_cover | fields: type, unit, lon, ts Task: Retrieve reading from drought_index that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="reading", )
{ "outer_table": "drought_index", "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_077395
train
v3
Sensor network script: Node: drought_index | code: prt | fields: lon, type, unit, depth Sensor: dew_point | fields: ts, qc, level, type Task: Retrieve value from drought_index with reading above the MAX(depth) of dew_point readings sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("dew_point", code="cnd"), match="unit"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077396
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: lat, depth, level, reading Sensor: humidity | fields: type, value, unit, depth Task: Retrieve lon from cloud_cover with reading above the MAX(depth) of humidity readings sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("humidity", code="hgr"), match="depth"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077397
train
v3
Sensor network script: Node: humidity | code: stn | fields: unit, type, lat, value Sensor: wind_speed | fields: lon, reading, type, ts Task: Get lat from humidity where value exceeds the count of value from wind_speed for the same ts. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("wind_speed", code="gst"), match="ts"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_077398
train
v1
Sensor network script: Node: humidity | code: prt | fields: reading, lon, ts, value Sensor: soil_moisture | fields: unit, lat, value, reading Task: Retrieve depth from humidity whose ts is found in soil_moisture records where depth matches the outer node. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_077399
train