variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v3
Sensor network script: Node: humidity | code: mst | fields: level, unit, reading, qc Sensor: snow_depth | fields: ts, unit, type, qc Task: Retrieve depth from humidity with depth above the MAX(value) of snow_depth readings sharing the same type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("snow_depth", code="snw"), match="type"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069500
train
v3
Sensor network script: Node: humidity | code: ref | fields: type, unit, lon, reading Sensor: cloud_cover | fields: type, lat, depth, qc Task: Retrieve reading from humidity with value above the MAX(depth) of cloud_cover readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "reading", "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_069501
train
v1
Sensor network script: Node: uv_index | code: ref | fields: lon, qc, reading, lat Sensor: air_quality | fields: depth, ts, qc, lon Task: Get level from uv_index where qc appears in air_quality readings with matching qc. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069502
train
v1
Sensor network script: Node: humidity | code: stn | fields: qc, ts, reading, value Sensor: pressure | fields: lon, reading, lat, type Task: Fetch level from humidity where ts exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="qc", ), output="level", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069503
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: value, ts, lat, level Sensor: drought_index | fields: depth, ts, type, unit Task: Retrieve value from snow_depth with reading above the SUM(reading) of drought_index readings sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("drought_index", code="drt"), match="ts"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069504
train
v2
Sensor network script: Node: air_quality | code: clr | fields: ts, unit, reading, lat Sensor: humidity | fields: depth, reading, type, qc Task: Fetch lat from air_quality that have at least one corresponding humidity measurement for the same qc. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lat", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069505
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: lon, type, reading, lat Sensor: visibility | fields: value, qc, level, reading Task: Get lon from soil_moisture where depth appears in visibility readings with matching type. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="type", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069506
train
v1
Sensor network script: Node: humidity | code: ref | fields: depth, level, qc, type Sensor: rainfall | fields: ts, value, lat, unit Task: Fetch reading from humidity where type exists in rainfall sensor data for the same ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="ts", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069507
train
v3
Sensor network script: Node: pressure | code: ref | fields: ts, depth, lon, unit Sensor: lightning | fields: ts, reading, level, depth Task: Fetch reading from pressure where reading is greater than the maximum of value in lightning for matching ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("lightning", code="tnd"), match="ts"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069508
train
v2
Sensor network script: Node: turbidity | code: prt | fields: value, reading, type, lon Sensor: pressure | fields: lat, ts, depth, unit Task: Retrieve reading from turbidity that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="reading", )
{ "outer_table": "turbidity", "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_069509
train
v3
Sensor network script: Node: evaporation | code: ref | fields: level, lon, qc, ts Sensor: visibility | fields: value, ts, unit, reading Task: Fetch value from evaporation where reading is greater than the average of reading in visibility for matching ts. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("visibility", code="clr"), match="ts"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069510
train
v1
Sensor network script: Node: evaporation | code: ref | fields: unit, reading, level, type Sensor: drought_index | fields: qc, value, lat, ts Task: Retrieve depth from evaporation whose qc is found in drought_index records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069511
train
v3
Sensor network script: Node: pressure | code: prt | fields: lon, qc, depth, lat Sensor: wind_speed | fields: level, lat, qc, reading Task: Fetch depth from pressure where depth is greater than the total of depth in wind_speed for matching qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("wind_speed", code="gst"), match="qc"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069512
train
v2
Sensor network script: Node: turbidity | code: prt | fields: lat, ts, reading, value Sensor: evaporation | fields: depth, lon, type, ts Task: Retrieve depth from turbidity that have at least one matching reading in evaporation sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069513
train
v2
Sensor network script: Node: evaporation | code: ref | fields: level, reading, ts, value Sensor: air_quality | fields: value, unit, lat, level Task: Get lon from evaporation where a corresponding entry exists in air_quality with the same unit. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069514
train
v2
Sensor network script: Node: lightning | code: thr | fields: value, reading, lon, qc Sensor: cloud_cover | fields: unit, lat, reading, lon Task: Fetch lat from lightning that have at least one corresponding cloud_cover measurement for the same qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069515
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: depth, reading, lat, ts Sensor: cloud_cover | fields: lon, ts, depth, type Task: Fetch lon from wind_speed that have at least one corresponding cloud_cover measurement for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069516
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: lat, depth, level, unit Sensor: snow_depth | fields: reading, lon, lat, type Task: Get depth from wind_speed where reading exceeds the count of value from snow_depth for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("snow_depth", code="snw"), match="qc"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069517
train
v2
Sensor network script: Node: dew_point | code: stn | fields: level, qc, lon, depth Sensor: temperature | fields: qc, unit, type, depth Task: Retrieve value from dew_point that have at least one matching reading in temperature sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "value", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069518
train
v2
Sensor network script: Node: sunlight | code: stn | fields: reading, depth, ts, value Sensor: frost | fields: lon, qc, lat, reading Task: Fetch lat from sunlight that have at least one corresponding frost measurement for the same qc. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069519
train
v1
Sensor network script: Node: visibility | code: prt | fields: reading, type, depth, lon Sensor: humidity | fields: lon, value, type, unit Task: Get lat from visibility where qc appears in humidity readings with matching ts. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="ts", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069520
train
v2
Sensor network script: Node: sunlight | code: thr | fields: reading, depth, lon, lat Sensor: frost | fields: value, lon, level, reading Task: Fetch depth from sunlight that have at least one corresponding frost measurement for the same qc. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069521
train
v1
Sensor network script: Node: frost | code: clr | fields: reading, value, depth, lon Sensor: evaporation | fields: type, qc, lat, reading Task: Retrieve value from frost whose type is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="unit", ), output="value", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "value", "filter_col": "type", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069522
train
v2
Sensor network script: Node: pressure | code: mst | fields: depth, qc, level, reading Sensor: temperature | fields: reading, value, level, type Task: Fetch depth from pressure that have at least one corresponding temperature measurement for the same unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069523
train
v3
Sensor network script: Node: visibility | code: hub | fields: lat, depth, value, qc Sensor: rainfall | fields: reading, lat, type, depth Task: Retrieve depth from visibility with depth above the MAX(reading) of rainfall readings sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069524
train
v2
Sensor network script: Node: air_quality | code: clr | fields: depth, level, type, unit Sensor: snow_depth | fields: value, lat, type, qc Task: Retrieve lon from air_quality that have at least one matching reading in snow_depth sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lon", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069525
train
v2
Sensor network script: Node: pressure | code: gst | fields: value, depth, level, type Sensor: evaporation | fields: reading, unit, ts, qc Task: Get level from pressure where a corresponding entry exists in evaporation with the same unit. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="level", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "level", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069526
train
v1
Sensor network script: Node: air_quality | code: hub | fields: lat, ts, level, lon Sensor: snow_depth | fields: lat, reading, type, ts Task: Fetch level from air_quality where ts exists in snow_depth sensor data for the same ts. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="ts", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069527
train
v3
Sensor network script: Node: visibility | code: hub | fields: value, level, reading, type Sensor: evaporation | fields: type, level, reading, depth Task: Get lat from visibility where depth exceeds the total reading from evaporation for the same qc. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("evaporation", code="evp"), match="qc"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069528
train
v3
Sensor network script: Node: turbidity | code: prt | fields: lat, ts, lon, qc Sensor: visibility | fields: reading, ts, type, unit Task: Retrieve level from turbidity with reading above the COUNT(value) of visibility readings sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069529
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: qc, type, level, lat Sensor: wind_speed | fields: depth, type, unit, qc Task: Fetch lon from snow_depth where unit exists in wind_speed sensor data for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="qc", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069530
train
v3
Sensor network script: Node: pressure | code: clr | fields: depth, lat, qc, type Sensor: air_quality | fields: value, type, qc, depth Task: Retrieve reading from pressure with depth above the SUM(value) of air_quality readings sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("air_quality", code="prt"), match="unit"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "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_069531
train
v2
Sensor network script: Node: temperature | code: thr | fields: ts, qc, lat, unit Sensor: frost | fields: lat, type, lon, level Task: Fetch lon from temperature that have at least one corresponding frost measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069532
train
v1
Sensor network script: Node: uv_index | code: clr | fields: depth, lat, qc, value Sensor: rainfall | fields: depth, qc, reading, unit Task: Fetch depth from uv_index where depth exists in rainfall sensor data for the same type. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="type", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069533
train
v1
Sensor network script: Node: lightning | code: ref | fields: type, lat, value, lon Sensor: visibility | fields: ts, lon, value, reading Task: Retrieve depth from lightning whose depth is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069534
train
v3
Sensor network script: Node: air_quality | code: ref | fields: value, unit, lon, level Sensor: soil_moisture | fields: qc, level, lat, unit Task: Retrieve depth from air_quality with value above the AVG(reading) of soil_moisture readings sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069535
train
v3
Sensor network script: Node: uv_index | code: ref | fields: level, reading, type, qc Sensor: sunlight | fields: depth, ts, qc, level Task: Get level from uv_index where reading exceeds the total value from sunlight for the same unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("sunlight", code="brt"), match="unit"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069536
train
v1
Sensor network script: Node: dew_point | code: mst | fields: qc, level, ts, type Sensor: snow_depth | fields: lat, reading, ts, level Task: Retrieve reading from dew_point whose type is found in snow_depth records where ts matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="ts", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069537
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: depth, type, lon, reading Sensor: rainfall | fields: reading, unit, level, lat Task: Fetch lat from snow_depth that have at least one corresponding rainfall measurement for the same type. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069538
train
v2
Sensor network script: Node: air_quality | code: ref | fields: type, reading, level, lat Sensor: dew_point | fields: unit, type, reading, level Task: Get depth from air_quality where a corresponding entry exists in dew_point with the same unit. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069539
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: value, depth, lon, type Sensor: visibility | fields: lon, lat, level, ts Task: Fetch value from soil_moisture where ts exists in visibility sensor data for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="unit", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069540
train
v3
Sensor network script: Node: lightning | code: mst | fields: ts, type, value, qc Sensor: drought_index | fields: lat, level, depth, ts Task: Fetch level from lightning where depth is greater than the maximum of reading in drought_index for matching qc. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("drought_index", code="drt"), match="qc"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069541
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: level, value, reading, lat Sensor: rainfall | fields: qc, ts, value, unit Task: Fetch lon from cloud_cover that have at least one corresponding rainfall measurement for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069542
train
v1
Sensor network script: Node: visibility | code: thr | fields: depth, unit, ts, lon Sensor: rainfall | fields: ts, level, type, unit Task: Fetch reading from visibility where ts exists in rainfall sensor data for the same unit. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069543
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: depth, value, reading, lon Sensor: rainfall | fields: value, lon, level, depth Task: Get lon from snow_depth where a corresponding entry exists in rainfall with the same unit. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069544
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: reading, lon, qc, type Sensor: air_quality | fields: type, reading, lat, value Task: Get lon from wind_speed where reading exceeds the maximum depth from air_quality for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="depth"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069545
train
v2
Sensor network script: Node: drought_index | code: clr | fields: lon, unit, value, type Sensor: pressure | fields: value, unit, lon, depth Task: Retrieve lat from drought_index that have at least one matching reading in pressure sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069546
train
v1
Sensor network script: Node: sunlight | code: ref | fields: lon, level, unit, depth Sensor: pressure | fields: depth, lon, reading, type Task: Retrieve reading from sunlight whose unit is found in pressure records where qc matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="qc", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069547
train
v3
Sensor network script: Node: evaporation | code: gst | fields: ts, level, lat, value Sensor: rainfall | fields: unit, qc, depth, reading Task: Fetch level from evaporation where value is greater than the count of of depth in rainfall for matching qc. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069548
train
v2
Sensor network script: Node: rainfall | code: hub | fields: ts, qc, lon, lat Sensor: cloud_cover | fields: type, reading, lon, unit Task: Retrieve reading from rainfall that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069549
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: type, reading, lat, qc Sensor: snow_depth | fields: type, level, lat, reading Task: Retrieve lon from soil_moisture whose ts is found in snow_depth records where unit matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069550
train
v2
Sensor network script: Node: drought_index | code: hub | fields: level, lat, lon, qc Sensor: frost | fields: ts, lat, unit, type Task: Retrieve level from drought_index that have at least one matching reading in frost sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069551
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: reading, ts, lat, value Sensor: drought_index | fields: value, qc, depth, level Task: Retrieve level from snow_depth with reading above the MIN(reading) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("drought_index", code="drt"), match="qc"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069552
train
v3
Sensor network script: Node: visibility | code: mst | fields: depth, value, level, ts Sensor: drought_index | fields: reading, lat, depth, type Task: Retrieve lat from visibility with reading above the MAX(depth) of drought_index readings sharing the same type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("drought_index", code="drt"), match="type"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069553
train
v3
Sensor network script: Node: humidity | code: prt | fields: type, ts, lat, reading Sensor: wind_speed | fields: depth, unit, reading, level Task: Retrieve depth from humidity with depth above the MIN(reading) of wind_speed readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("wind_speed", code="gst"), match="qc"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069554
train
v2
Sensor network script: Node: uv_index | code: stn | fields: unit, qc, ts, reading Sensor: pressure | fields: lat, level, lon, value Task: Fetch level from uv_index that have at least one corresponding pressure measurement for the same depth. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "level", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069555
train
v3
Sensor network script: Node: evaporation | code: mst | fields: ts, lat, depth, value Sensor: humidity | fields: ts, type, lat, lon Task: Fetch lat from evaporation where value is greater than the minimum of depth in humidity for matching depth. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("humidity", code="hgr"), match="depth"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069556
train
v1
Sensor network script: Node: turbidity | code: thr | fields: ts, depth, lon, value Sensor: rainfall | fields: type, value, lon, unit Task: Retrieve depth from turbidity whose depth is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069557
train
v3
Sensor network script: Node: drought_index | code: mst | fields: qc, depth, value, ts Sensor: humidity | fields: value, ts, level, unit Task: Fetch depth from drought_index where value is greater than the minimum of depth in humidity for matching qc. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("humidity", code="hgr"), match="qc"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069558
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: level, depth, lon, lat Sensor: cloud_cover | fields: ts, type, level, value Task: Retrieve depth from snow_depth with reading above the COUNT(depth) of cloud_cover readings sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069559
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: depth, ts, qc, reading Sensor: pressure | fields: depth, lat, lon, reading Task: Retrieve reading from wind_speed with depth above the MAX(depth) of pressure readings sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("pressure", code="mbl"), match="type"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069560
train
v2
Sensor network script: Node: evaporation | code: mst | fields: lat, depth, type, lon Sensor: air_quality | fields: type, qc, lon, value Task: Fetch lat from evaporation that have at least one corresponding air_quality measurement for the same unit. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069561
train
v1
Sensor network script: Node: turbidity | code: clr | fields: unit, level, value, qc Sensor: cloud_cover | fields: depth, qc, unit, lat Task: Fetch level from turbidity where depth exists in cloud_cover sensor data for the same qc. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069562
train
v2
Sensor network script: Node: frost | code: clr | fields: reading, lat, unit, value Sensor: wind_speed | fields: qc, depth, reading, type Task: Retrieve lat from frost that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="lat", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069563
train
v1
Sensor network script: Node: humidity | code: clr | fields: lat, unit, lon, type Sensor: temperature | fields: lat, qc, depth, ts Task: Get lon from humidity where type appears in temperature readings with matching qc. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="qc", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069564
train
v2
Sensor network script: Node: lightning | code: mst | fields: unit, ts, lon, reading Sensor: temperature | fields: level, lat, depth, unit Task: Retrieve lat from lightning that have at least one matching reading in temperature sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lat", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069565
train
v3
Sensor network script: Node: rainfall | code: prt | fields: lat, unit, qc, lon Sensor: drought_index | fields: level, lat, type, ts Task: Get value from rainfall where reading exceeds the count of reading from drought_index for the same qc. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("drought_index", code="drt"), match="qc"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "value", "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_069566
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: type, unit, lon, lat Sensor: drought_index | fields: qc, reading, lon, type Task: Retrieve lat from snow_depth whose unit is found in drought_index records where type matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="type", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069567
train
v3
Sensor network script: Node: uv_index | code: hub | fields: depth, value, lat, qc Sensor: air_quality | fields: level, type, qc, unit Task: Get reading from uv_index where depth exceeds the minimum reading from air_quality for the same depth. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("air_quality", code="prt"), match="depth"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069568
train
v3
Sensor network script: Node: lightning | code: ref | fields: lon, value, qc, unit Sensor: temperature | fields: qc, reading, level, lat Task: Retrieve lon from lightning with value above the MAX(depth) of temperature readings sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("temperature", code="thr"), match="qc"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069569
train
v3
Sensor network script: Node: rainfall | code: ref | fields: unit, level, qc, lat Sensor: uv_index | fields: lat, qc, lon, type Task: Retrieve depth from rainfall with value above the MAX(depth) of uv_index readings sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("uv_index", code="flx"), match="unit"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "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_069570
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: lon, ts, reading, depth Sensor: drought_index | fields: type, lon, ts, reading Task: Fetch lat from wind_speed that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069571
train
v2
Sensor network script: Node: rainfall | code: prt | fields: level, value, lat, lon Sensor: snow_depth | fields: lat, reading, unit, value Task: Fetch value from rainfall that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "value", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069572
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: level, lon, depth, lat Sensor: visibility | fields: type, lat, level, unit Task: Fetch lat from soil_moisture that have at least one corresponding visibility measurement for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069573
train
v3
Sensor network script: Node: air_quality | code: stn | fields: depth, ts, lon, type Sensor: soil_moisture | fields: value, lat, qc, type Task: Fetch lat from air_quality where reading is greater than the count of of depth in soil_moisture for matching unit. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069574
train
v1
Sensor network script: Node: dew_point | code: prt | fields: type, lat, reading, qc Sensor: snow_depth | fields: depth, unit, lon, type Task: Get value from dew_point where type appears in snow_depth readings with matching type. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="type", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069575
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: unit, value, ts, reading Sensor: pressure | fields: depth, value, reading, qc Task: Retrieve lon from cloud_cover with depth above the MIN(reading) of pressure readings sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="depth"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069576
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: reading, qc, lat, level Sensor: dew_point | fields: lon, depth, value, type Task: Retrieve lon from snow_depth that have at least one matching reading in dew_point sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069577
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: level, lat, depth, reading Sensor: drought_index | fields: depth, level, qc, unit Task: Get reading from wind_speed where depth exceeds the count of value from drought_index for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069578
train
v2
Sensor network script: Node: dew_point | code: ref | fields: reading, unit, value, qc Sensor: humidity | fields: lat, reading, depth, value Task: Retrieve value from dew_point that have at least one matching reading in humidity sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "value", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069579
train
v1
Sensor network script: Node: humidity | code: gst | fields: level, qc, ts, reading Sensor: dew_point | fields: qc, lat, depth, reading Task: Fetch lat from humidity where ts exists in dew_point sensor data for the same depth. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="depth", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069580
train
v2
Sensor network script: Node: frost | code: mst | fields: type, depth, level, unit Sensor: rainfall | fields: ts, unit, type, lon Task: Get value from frost where a corresponding entry exists in rainfall with the same ts. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="value", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069581
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: lon, unit, lat, type Sensor: sunlight | fields: unit, ts, reading, value Task: Retrieve reading from wind_speed that have at least one matching reading in sunlight sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069582
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: depth, value, qc, level Sensor: rainfall | fields: value, lon, unit, lat Task: Get level from soil_moisture where depth exceeds the maximum reading from rainfall for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069583
train
v3
Sensor network script: Node: air_quality | code: prt | fields: lat, level, reading, qc Sensor: evaporation | fields: qc, reading, depth, level Task: Get lon from air_quality where value exceeds the maximum depth from evaporation for the same ts. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("evaporation", code="evp"), match="ts"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069584
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: qc, type, lon, lat Sensor: humidity | fields: value, lon, level, type Task: Fetch depth from snow_depth where depth is greater than the minimum of reading in humidity for matching depth. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("humidity", code="hgr"), match="depth"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069585
train
v3
Sensor network script: Node: lightning | code: clr | fields: type, lon, value, reading Sensor: temperature | fields: level, type, reading, ts Task: Get value from lightning where depth exceeds the total value from temperature for the same ts. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="ts"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069586
train
v2
Sensor network script: Node: air_quality | code: clr | fields: unit, ts, lat, reading Sensor: frost | fields: qc, value, level, lon Task: Get lon from air_quality where a corresponding entry exists in frost with the same depth. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069587
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: lat, lon, ts, unit Sensor: humidity | fields: depth, reading, lon, ts Task: Retrieve value from cloud_cover whose type is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="qc", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069588
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: value, lon, depth, level Sensor: frost | fields: ts, qc, lon, lat Task: Fetch level from soil_moisture where qc exists in frost sensor data for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="ts", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069589
train
v2
Sensor network script: Node: pressure | code: gst | fields: lat, ts, lon, value Sensor: uv_index | fields: level, qc, lon, unit Task: Get lat from pressure where a corresponding entry exists in uv_index with the same ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069590
train
v3
Sensor network script: Node: temperature | code: mst | fields: type, reading, depth, qc Sensor: evaporation | fields: value, qc, lon, unit Task: Get lon from temperature where reading exceeds the maximum value from evaporation for the same depth. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="depth"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069591
train
v2
Sensor network script: Node: visibility | code: thr | fields: value, lon, qc, type Sensor: rainfall | fields: lat, type, depth, qc Task: Fetch lon from visibility that have at least one corresponding rainfall measurement for the same ts. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069592
train
v2
Sensor network script: Node: temperature | code: hub | fields: ts, lon, depth, lat Sensor: cloud_cover | fields: value, level, lat, qc Task: Get lon from temperature where a corresponding entry exists in cloud_cover with the same ts. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069593
train
v1
Sensor network script: Node: temperature | code: clr | fields: ts, level, depth, lon Sensor: soil_moisture | fields: depth, value, level, lon Task: Fetch lat from temperature where qc exists in soil_moisture sensor data for the same ts. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069594
train
v1
Sensor network script: Node: air_quality | code: hub | fields: level, reading, lat, ts Sensor: turbidity | fields: value, lat, reading, unit Task: Fetch depth from air_quality where ts exists in turbidity sensor data for the same unit. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069595
train
v2
Sensor network script: Node: uv_index | code: stn | fields: lat, qc, level, depth Sensor: wind_speed | fields: value, type, unit, depth Task: Retrieve level from uv_index that have at least one matching reading in wind_speed sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "level", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_069596
train
v2
Sensor network script: Node: visibility | code: stn | fields: unit, reading, qc, type Sensor: dew_point | fields: reading, qc, ts, lon Task: Get depth from visibility where a corresponding entry exists in dew_point with the same ts. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069597
train
v3
Sensor network script: Node: lightning | code: prt | fields: unit, ts, reading, type Sensor: turbidity | fields: lon, type, value, reading Task: Retrieve reading from lightning with depth above the MIN(depth) of turbidity readings sharing the same type. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("turbidity", code="ftu"), match="type"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069598
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: unit, type, ts, lat Sensor: frost | fields: level, value, ts, lon Task: Get value from snow_depth where value exceeds the maximum value from frost for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("frost", code="frs"), match="unit"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_069599
train