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: humidity | code: ref | fields: lat, reading, level, depth Sensor: frost | fields: depth, unit, ts, qc Task: Retrieve lon from humidity whose depth is found in frost records where type matches the outer node. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025400
train
v3
Sensor network script: Node: humidity | code: clr | fields: reading, lat, value, qc Sensor: temperature | fields: lon, value, qc, lat Task: Retrieve level from humidity with reading above the AVG(reading) of temperature readings sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("temperature", code="thr"), match="ts"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025401
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: depth, unit, qc, lat Sensor: dew_point | fields: level, type, lat, unit Task: Get level from soil_moisture where depth exceeds the maximum depth from dew_point for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("dew_point", code="cnd"), match="ts"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025402
train
v2
Sensor network script: Node: humidity | code: mst | fields: depth, unit, lat, type Sensor: frost | fields: reading, value, level, lon Task: Get reading from humidity where a corresponding entry exists in frost with the same type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "reading", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025403
train
v2
Sensor network script: Node: sunlight | code: prt | fields: unit, lon, ts, value Sensor: rainfall | fields: depth, ts, lon, type Task: Retrieve lon from sunlight that have at least one matching reading in rainfall sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025404
train
v2
Sensor network script: Node: visibility | code: thr | fields: value, lat, ts, lon Sensor: frost | fields: depth, qc, lat, ts Task: Get lat from visibility where a corresponding entry exists in frost with the same unit. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lat", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025405
train
v3
Sensor network script: Node: uv_index | code: stn | fields: value, unit, qc, ts Sensor: snow_depth | fields: lat, ts, reading, depth Task: Retrieve value from uv_index with depth above the COUNT(value) of snow_depth readings sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("snow_depth", code="snw"), match="unit"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025406
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: type, reading, ts, qc Sensor: lightning | fields: depth, type, value, lon Task: Fetch level from cloud_cover that have at least one corresponding lightning measurement for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025407
train
v2
Sensor network script: Node: humidity | code: mst | fields: ts, lon, qc, value Sensor: sunlight | fields: qc, value, lat, ts Task: Get value from humidity where a corresponding entry exists in sunlight with the same ts. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="value", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025408
train
v3
Sensor network script: Node: frost | code: prt | fields: ts, lon, qc, level Sensor: pressure | fields: value, lon, type, level Task: Get value from frost where depth exceeds the minimum depth from pressure for the same depth. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("pressure", code="mbl"), match="depth"), ), output="value", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025409
train
v2
Sensor network script: Node: humidity | code: hub | fields: ts, value, unit, reading Sensor: drought_index | fields: lat, ts, lon, value Task: Retrieve level from humidity that have at least one matching reading in drought_index sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="level", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025410
train
v3
Sensor network script: Node: lightning | code: clr | fields: lon, qc, type, ts Sensor: dew_point | fields: unit, type, reading, ts Task: Get lat from lightning where depth exceeds the maximum reading from dew_point for the same ts. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025411
train
v3
Sensor network script: Node: dew_point | code: clr | fields: reading, lat, type, level Sensor: cloud_cover | fields: lat, depth, reading, qc Task: Retrieve level from dew_point with depth above the SUM(value) of cloud_cover readings sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025412
train
v1
Sensor network script: Node: evaporation | code: clr | fields: reading, unit, depth, value Sensor: air_quality | fields: reading, value, type, unit Task: Fetch value from evaporation where unit exists in air_quality sensor data for the same ts. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="ts", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025413
train
v3
Sensor network script: Node: uv_index | code: mst | fields: unit, reading, qc, depth Sensor: snow_depth | fields: depth, unit, lat, value Task: Fetch level from uv_index where depth is greater than the total of value in snow_depth for matching qc. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("snow_depth", code="snw"), match="qc"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025414
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: lat, qc, lon, value Sensor: frost | fields: level, qc, unit, depth Task: Fetch reading from soil_moisture where type exists in frost sensor data for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "reading", "filter_col": "type", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025415
train
v3
Sensor network script: Node: drought_index | code: stn | fields: value, lon, reading, ts Sensor: frost | fields: level, ts, qc, value Task: Retrieve level from drought_index with value above the SUM(reading) of frost readings sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("frost", code="frs"), match="type"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025416
train
v2
Sensor network script: Node: drought_index | code: hub | fields: qc, lat, type, value Sensor: lightning | fields: type, level, value, lon Task: Get value from drought_index where a corresponding entry exists in lightning with the same type. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025417
train
v2
Sensor network script: Node: drought_index | code: mst | fields: lat, unit, value, depth Sensor: frost | fields: ts, reading, type, depth Task: Get lon from drought_index where a corresponding entry exists in frost with the same type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lon", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025418
train
v1
Sensor network script: Node: humidity | code: hub | fields: value, depth, unit, level Sensor: snow_depth | fields: unit, type, lon, value Task: Get level from humidity where ts appears in snow_depth readings with matching unit. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="unit", ), output="level", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025419
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: lat, depth, type, qc Sensor: humidity | fields: ts, type, value, unit Task: Fetch reading from cloud_cover that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025420
train
v2
Sensor network script: Node: dew_point | code: clr | fields: value, lat, lon, level Sensor: wind_speed | fields: lat, level, lon, ts Task: Fetch depth from dew_point that have at least one corresponding wind_speed measurement for the same qc. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025421
train
v1
Sensor network script: Node: pressure | code: ref | fields: unit, reading, type, value Sensor: temperature | fields: unit, reading, lat, depth Task: Retrieve depth from pressure whose unit is found in temperature records where type matches the outer node. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="type", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025422
train
v2
Sensor network script: Node: evaporation | code: mst | fields: qc, ts, depth, unit Sensor: air_quality | fields: type, lat, qc, lon Task: Fetch reading from evaporation that have at least one corresponding air_quality measurement for the same qc. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025423
train
v2
Sensor network script: Node: turbidity | code: hub | fields: qc, depth, level, ts Sensor: air_quality | fields: depth, lon, unit, level Task: Get lat from turbidity where a corresponding entry exists in air_quality with the same ts. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025424
train
v1
Sensor network script: Node: rainfall | code: clr | fields: unit, level, reading, depth Sensor: temperature | fields: qc, level, value, unit Task: Get depth from rainfall where ts appears in temperature readings with matching ts. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025425
train
v2
Sensor network script: Node: lightning | code: prt | fields: value, qc, lat, lon Sensor: cloud_cover | fields: depth, lat, level, reading Task: Fetch lon from lightning that have at least one corresponding cloud_cover measurement for the same unit. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025426
train
v2
Sensor network script: Node: uv_index | code: thr | fields: level, ts, value, lon Sensor: soil_moisture | fields: lat, type, value, level Task: Fetch lon from uv_index that have at least one corresponding soil_moisture measurement for the same type. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lon", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025427
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: value, level, depth, unit Sensor: drought_index | fields: ts, level, qc, depth Task: Get reading from soil_moisture where unit appears in drought_index readings with matching type. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025428
train
v3
Sensor network script: Node: evaporation | code: mst | fields: depth, type, reading, qc Sensor: wind_speed | fields: ts, reading, level, qc Task: Get lon from evaporation where value exceeds the total reading from wind_speed for the same unit. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("wind_speed", code="gst"), match="unit"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025429
train
v3
Sensor network script: Node: humidity | code: hub | fields: qc, unit, level, value Sensor: rainfall | fields: depth, ts, unit, value Task: Get level from humidity where depth exceeds the total depth from rainfall for the same depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025430
train
v2
Sensor network script: Node: lightning | code: ref | fields: unit, type, depth, ts Sensor: cloud_cover | fields: type, unit, ts, lat Task: Fetch value from lightning that have at least one corresponding cloud_cover measurement for the same unit. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="value", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "value", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025431
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: depth, reading, lat, lon Sensor: visibility | fields: unit, lon, type, ts Task: Retrieve reading from soil_moisture whose depth is found in visibility records where qc matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="qc", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025432
train
v2
Sensor network script: Node: sunlight | code: ref | fields: lat, reading, ts, type Sensor: temperature | fields: depth, type, reading, level Task: Fetch value from sunlight that have at least one corresponding temperature measurement for the same unit. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025433
train
v2
Sensor network script: Node: temperature | code: stn | fields: reading, type, unit, lon Sensor: snow_depth | fields: level, type, ts, lon Task: Get value from temperature where a corresponding entry exists in snow_depth with the same type. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "value", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025434
train
v3
Sensor network script: Node: pressure | code: clr | fields: lon, qc, ts, type Sensor: temperature | fields: lat, unit, lon, value Task: Retrieve lat from pressure with value above the SUM(depth) of temperature readings sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("temperature", code="thr"), match="unit"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025435
train
v2
Sensor network script: Node: frost | code: prt | fields: qc, unit, level, value Sensor: temperature | fields: unit, qc, value, ts Task: Fetch value from frost that have at least one corresponding temperature measurement for the same depth. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="value", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "value", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025436
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: level, reading, lat, ts Sensor: uv_index | fields: lon, depth, unit, reading Task: Get value from soil_moisture where a corresponding entry exists in uv_index with the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "value", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025437
train
v3
Sensor network script: Node: air_quality | code: clr | fields: lat, unit, qc, ts Sensor: turbidity | fields: reading, lat, depth, lon Task: Retrieve value from air_quality with value above the MIN(value) of turbidity readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("turbidity", code="ftu"), match="qc"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025438
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: type, lat, qc, lon Sensor: turbidity | fields: lon, reading, lat, depth Task: Retrieve lon from cloud_cover whose qc is found in turbidity records where depth matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="depth", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025439
train
v2
Sensor network script: Node: dew_point | code: thr | fields: unit, ts, qc, lon Sensor: humidity | fields: reading, depth, type, lat Task: Retrieve lon from dew_point that have at least one matching reading in humidity sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025440
train
v2
Sensor network script: Node: humidity | code: ref | fields: unit, level, type, reading Sensor: snow_depth | fields: level, unit, qc, lon Task: Get lat from humidity where a corresponding entry exists in snow_depth with the same qc. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lat", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025441
train
v1
Sensor network script: Node: frost | code: clr | fields: level, unit, qc, type Sensor: temperature | fields: level, reading, value, lat Task: Get value from frost where qc appears in temperature readings with matching type. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="type", ), output="value", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025442
train
v2
Sensor network script: Node: humidity | code: mst | fields: unit, type, depth, ts Sensor: cloud_cover | fields: level, depth, lat, type Task: Retrieve value from humidity that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="value", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025443
train
v1
Sensor network script: Node: humidity | code: stn | fields: value, lat, ts, qc Sensor: rainfall | fields: unit, reading, depth, type Task: Retrieve lat from humidity whose qc is found in rainfall records where depth matches the outer node. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="depth", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025444
train
v1
Sensor network script: Node: uv_index | code: prt | fields: lon, lat, ts, reading Sensor: evaporation | fields: unit, ts, depth, value Task: Fetch lon from uv_index where qc exists in evaporation sensor data for the same ts. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025445
train
v2
Sensor network script: Node: cloud_cover | code: gst | fields: value, lat, depth, qc Sensor: sunlight | fields: unit, value, qc, ts Task: Retrieve reading from cloud_cover that have at least one matching reading in sunlight sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025446
train
v1
Sensor network script: Node: air_quality | code: mst | fields: depth, lat, lon, qc Sensor: temperature | fields: level, lat, value, ts Task: Retrieve level from air_quality whose depth is found in temperature records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="ts", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025447
train
v3
Sensor network script: Node: air_quality | code: hub | fields: ts, reading, depth, lat Sensor: pressure | fields: ts, unit, depth, type Task: Retrieve value from air_quality with depth above the MIN(value) of pressure readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025448
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: depth, ts, value, qc Sensor: evaporation | fields: qc, lat, value, lon Task: Fetch level from wind_speed where value is greater than the maximum of reading in evaporation for matching unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("evaporation", code="evp"), match="unit"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025449
train
v3
Sensor network script: Node: lightning | code: ref | fields: reading, level, unit, lon Sensor: frost | fields: type, value, ts, qc Task: Get lat from lightning where depth exceeds the minimum reading from frost for the same ts. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("frost", code="frs"), match="ts"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025450
train
v1
Sensor network script: Node: turbidity | code: prt | fields: lon, value, ts, type Sensor: humidity | fields: qc, level, ts, reading Task: Retrieve value from turbidity whose depth is found in humidity records where unit matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025451
train
v2
Sensor network script: Node: sunlight | code: gst | fields: qc, lat, value, level Sensor: temperature | fields: unit, depth, value, reading Task: Retrieve lon from sunlight that have at least one matching reading in temperature sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025452
train
v3
Sensor network script: Node: dew_point | code: clr | fields: reading, lat, level, ts Sensor: rainfall | fields: ts, qc, lon, reading Task: Fetch lon from dew_point where depth is greater than the count of of reading in rainfall for matching type. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025453
train
v2
Sensor network script: Node: turbidity | code: hub | fields: lon, level, type, ts Sensor: dew_point | fields: value, ts, level, reading Task: Fetch lon from turbidity that have at least one corresponding dew_point measurement for the same depth. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025454
train
v3
Sensor network script: Node: dew_point | code: thr | fields: value, reading, unit, type Sensor: rainfall | fields: depth, lat, value, lon Task: Get value from dew_point where depth exceeds the minimum depth from rainfall for the same depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025455
train
v3
Sensor network script: Node: turbidity | code: thr | fields: depth, level, qc, lon Sensor: cloud_cover | fields: reading, qc, lon, ts Task: Get depth from turbidity where reading exceeds the maximum value from cloud_cover for the same type. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025456
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: level, qc, value, reading Sensor: visibility | fields: lon, depth, unit, value Task: Retrieve lon from snow_depth whose ts is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="type", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025457
train
v1
Sensor network script: Node: turbidity | code: mst | fields: reading, type, qc, ts Sensor: pressure | fields: unit, ts, lat, type Task: Get level from turbidity where ts appears in pressure readings with matching unit. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="unit", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025458
train
v3
Sensor network script: Node: frost | code: ref | fields: ts, lat, value, depth Sensor: drought_index | fields: ts, reading, value, lat Task: Get lat from frost where depth exceeds the total reading from drought_index for the same type. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("drought_index", code="drt"), match="type"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025459
train
v2
Sensor network script: Node: frost | code: thr | fields: unit, depth, qc, lon Sensor: soil_moisture | fields: unit, lon, depth, reading Task: Fetch level from frost that have at least one corresponding soil_moisture measurement for the same ts. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "level", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025460
train
v1
Sensor network script: Node: evaporation | code: clr | fields: ts, unit, level, depth Sensor: sunlight | fields: lon, lat, type, level Task: Get reading from evaporation where qc appears in sunlight readings with matching unit. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="unit", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025461
train
v2
Sensor network script: Node: turbidity | code: thr | fields: value, level, lon, reading Sensor: lightning | fields: level, lon, unit, qc Task: Get value from turbidity where a corresponding entry exists in lightning with the same qc. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025462
train
v2
Sensor network script: Node: uv_index | code: prt | fields: lat, reading, depth, qc Sensor: turbidity | fields: lon, type, level, unit Task: Fetch lon from uv_index that have at least one corresponding turbidity measurement for the same depth. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025463
train
v2
Sensor network script: Node: lightning | code: prt | fields: type, level, unit, qc Sensor: evaporation | fields: level, qc, unit, type Task: Fetch reading from lightning that have at least one corresponding evaporation measurement for the same type. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025464
train
v3
Sensor network script: Node: rainfall | code: thr | fields: level, value, depth, type Sensor: wind_speed | fields: ts, lon, type, depth Task: Fetch value from rainfall where reading is greater than the total of value in wind_speed for matching unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("wind_speed", code="gst"), match="unit"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025465
train
v1
Sensor network script: Node: temperature | code: gst | fields: lon, lat, type, qc Sensor: cloud_cover | fields: unit, level, type, lon Task: Retrieve value from temperature whose unit is found in cloud_cover records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="value", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025466
train
v2
Sensor network script: Node: lightning | code: hub | fields: level, qc, lon, unit Sensor: frost | fields: lon, ts, value, lat Task: Get lat from lightning where a corresponding entry exists in frost with the same depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lat", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025467
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: ts, type, value, lat Sensor: rainfall | fields: ts, level, lon, reading Task: Get depth from wind_speed where a corresponding entry exists in rainfall with the same unit. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025468
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: lat, depth, unit, qc Sensor: cloud_cover | fields: level, reading, qc, lon Task: Fetch level from soil_moisture that have at least one corresponding cloud_cover measurement for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025469
train
v1
Sensor network script: Node: frost | code: stn | fields: qc, unit, level, lon Sensor: pressure | fields: lat, reading, unit, depth Task: Get value from frost where ts appears in pressure readings with matching type. Script:
readings = fetch( node=Node("frost", code="stn"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="type", ), output="value", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025470
train
v3
Sensor network script: Node: visibility | code: ref | fields: level, lat, value, lon Sensor: humidity | fields: type, lat, reading, ts Task: Fetch lat from visibility where reading is greater than the minimum of depth in humidity for matching ts. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("humidity", code="hgr"), match="ts"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025471
train
v1
Sensor network script: Node: visibility | code: stn | fields: depth, type, unit, qc Sensor: sunlight | fields: type, reading, lon, level Task: Fetch level from visibility where qc exists in sunlight sensor data for the same ts. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025472
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: unit, reading, qc, depth Sensor: visibility | fields: unit, ts, lat, reading Task: Retrieve reading from soil_moisture that have at least one matching reading in visibility sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025473
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: unit, ts, type, lon Sensor: pressure | fields: reading, depth, value, ts Task: Fetch depth from wind_speed that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025474
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: type, depth, value, lat Sensor: sunlight | fields: lat, reading, qc, ts Task: Fetch lon from cloud_cover where depth exists in sunlight sensor data for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="type", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025475
train
v2
Sensor network script: Node: drought_index | code: clr | fields: unit, lon, level, type Sensor: soil_moisture | fields: lat, qc, depth, value Task: Fetch level from drought_index that have at least one corresponding soil_moisture measurement for the same depth. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "level", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025476
train
v2
Sensor network script: Node: air_quality | code: mst | fields: qc, reading, unit, value Sensor: snow_depth | fields: unit, ts, lon, qc Task: Fetch lat from air_quality that have at least one corresponding snow_depth measurement for the same ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lat", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025477
train
v2
Sensor network script: Node: pressure | code: clr | fields: lon, qc, depth, type Sensor: turbidity | fields: type, reading, level, value Task: Retrieve lon from pressure that have at least one matching reading in turbidity sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lon", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025478
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: value, lon, reading, type Sensor: cloud_cover | fields: value, level, qc, reading Task: Retrieve lat from snow_depth with reading above the MIN(reading) of cloud_cover readings sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025479
train
v1
Sensor network script: Node: dew_point | code: mst | fields: lat, level, reading, unit Sensor: rainfall | fields: value, lat, depth, level Task: Retrieve depth from dew_point whose ts is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025480
train
v2
Sensor network script: Node: rainfall | code: hub | fields: ts, depth, level, qc Sensor: dew_point | fields: reading, value, unit, lat Task: Fetch depth from rainfall that have at least one corresponding dew_point measurement for the same unit. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025481
train
v2
Sensor network script: Node: uv_index | code: thr | fields: qc, lon, depth, ts Sensor: air_quality | fields: unit, ts, qc, lat Task: Get depth from uv_index where a corresponding entry exists in air_quality with the same type. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025482
train
v1
Sensor network script: Node: drought_index | code: gst | fields: unit, type, lat, value Sensor: temperature | fields: ts, level, reading, value Task: Retrieve level from drought_index whose qc is found in temperature records where ts matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="ts", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025483
train
v2
Sensor network script: Node: cloud_cover | code: stn | fields: lon, ts, lat, qc Sensor: evaporation | fields: qc, value, lat, lon Task: Get depth from cloud_cover where a corresponding entry exists in evaporation with the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025484
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: depth, ts, lon, lat Sensor: frost | fields: value, ts, unit, depth Task: Fetch lon from snow_depth where unit exists in frost sensor data for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025485
train
v1
Sensor network script: Node: dew_point | code: clr | fields: value, depth, lon, qc Sensor: air_quality | fields: reading, type, value, level Task: Retrieve lon from dew_point whose ts is found in air_quality records where qc matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="qc", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025486
train
v2
Sensor network script: Node: rainfall | code: hub | fields: reading, unit, lon, lat Sensor: frost | fields: ts, lat, value, level Task: Get reading from rainfall where a corresponding entry exists in frost with the same type. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025487
train
v1
Sensor network script: Node: humidity | code: hub | fields: qc, lon, lat, unit Sensor: sunlight | fields: lon, type, depth, value Task: Get lat from humidity where ts appears in sunlight readings with matching unit. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="unit", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025488
train
v3
Sensor network script: Node: pressure | code: stn | fields: lon, unit, lat, ts Sensor: turbidity | fields: lon, lat, ts, reading Task: Get value from pressure where depth exceeds the count of reading from turbidity for the same ts. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("turbidity", code="ftu"), match="ts"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025489
train
v1
Sensor network script: Node: visibility | code: gst | fields: type, level, lon, reading Sensor: temperature | fields: type, reading, lat, depth Task: Fetch depth from visibility where unit exists in temperature sensor data for the same type. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="type", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025490
train
v1
Sensor network script: Node: visibility | code: clr | fields: level, type, unit, reading Sensor: frost | fields: reading, unit, lat, level Task: Fetch reading from visibility where depth exists in frost sensor data for the same qc. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025491
train
v2
Sensor network script: Node: turbidity | code: prt | fields: type, depth, level, value Sensor: snow_depth | fields: unit, type, value, reading Task: Fetch value from turbidity that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "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_025492
train
v1
Sensor network script: Node: visibility | code: gst | fields: lat, depth, type, value Sensor: humidity | fields: reading, type, lon, level Task: Fetch depth from visibility where unit exists in humidity sensor data for the same unit. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="unit", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025493
train
v3
Sensor network script: Node: drought_index | code: prt | fields: value, level, lon, type Sensor: humidity | fields: depth, value, reading, qc Task: Fetch lon from drought_index where depth is greater than the count of of reading in humidity for matching qc. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="qc"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025494
train
v1
Sensor network script: Node: pressure | code: prt | fields: lat, value, lon, qc Sensor: humidity | fields: level, value, reading, lat Task: Retrieve level from pressure whose unit is found in humidity records where depth matches the outer node. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="depth", ), output="level", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025495
train
v2
Sensor network script: Node: pressure | code: clr | fields: reading, ts, lat, value Sensor: turbidity | fields: lat, value, depth, type Task: Get reading from pressure where a corresponding entry exists in turbidity with the same type. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025496
train
v3
Sensor network script: Node: frost | code: hub | fields: depth, lat, qc, reading Sensor: visibility | fields: reading, level, unit, depth Task: Get value from frost where value exceeds the minimum reading from visibility for the same depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("visibility", code="clr"), match="depth"), ), output="value", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025497
train
v2
Sensor network script: Node: humidity | code: prt | fields: value, unit, ts, lon Sensor: dew_point | fields: qc, value, lon, ts Task: Get level from humidity where a corresponding entry exists in dew_point with the same depth. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="level", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_025498
train
v1
Sensor network script: Node: humidity | code: mst | fields: value, unit, qc, depth Sensor: temperature | fields: value, depth, qc, type Task: Fetch value from humidity where ts exists in temperature sensor data for the same unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="unit", ), output="value", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_025499
train