From f1ce74bafb5a26e218f081c557075d39865c7621 Mon Sep 17 00:00:00 2001 From: rod-glover Date: Tue, 14 Jan 2025 16:58:27 -0800 Subject: [PATCH 01/21] Add first draft of migration --- ...support_multiple_climatological_normals.py | 139 ++++++++++++++++++ 1 file changed, 139 insertions(+) create mode 100644 pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py diff --git a/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py b/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py new file mode 100644 index 00000000..9d9fed8d --- /dev/null +++ b/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py @@ -0,0 +1,139 @@ +"""Support multiple climatological normals + +Revision ID: 758be4f4ce0f +Revises: 7ab87f8fbcf4 +Create Date: 2025-01-13 17:19:03.192403 + +""" +from citext import CIText +from alembic import op + +# import sqlalchemy as sa +from geoalchemy2 import Geometry +from sqlalchemy import ( + Column, + Integer, + String, + Interval, + ForeignKey, + DateTime, + Float, +) +from sqlalchemy.dialects.postgresql import ARRAY + +from pycds import get_schema_name + +# revision identifiers, used by Alembic. +# TODO: When version control PRs are merged, "rebase" this onto the head revision. +revision = "758be4f4ce0f" +down_revision = "7ab87f8fbcf4" +branch_labels = None +depends_on = None + + +schema_name = get_schema_name() + + +# Note: These tables are likely to be under version control. Currently they are defined +# as not so. The idea is that they will have the conversion to VC applied after they are +# added to the database. That could be done in this migration or in a separate subsequent +# migration. + + +def upgrade(): + op.create_table( + # TODO: Columns in this table parallel those in meta_station and meta_history. + # They differ in the following ways, which may be questioned: + # + # - String types do not provide lengths. All strings are ultimately variable + # length in PG and there seems no reason to limit them. (Except perhaps to + # prevent entry of erroneous values that just happen to be very long?) + # + # - None are nullable. In contrast, most in the model tables are. + "meta_climatological_station", # TODO: Revise name? + Column("climatological_station_id", Integer, primary_key=True), + Column("station_type", What, nullable=False), # TODO: Enumeration? + Column("basin_id", Integer, nullable=False), # TODO: Same as basin id in SCIP? + Column("station_name", String, nullable=False), + Column("province", String, nullable=False), + Column("country", String, nullable=False), + Column("tz_offset", Interval, nullable=False), + Column("comments", String, nullable=False), + Column("location", Geometry("GEOMETRY", 4326), nullable=False), + schema=schema_name, + ) + + op.create_table( + # TODO: Name? This is a recommended pattern but not the only such. + "meta_climatological_station_x_meta_history", + Column( + "climatological_station_id", + ForeignKey( + f"{schema_name}.meta_climatological_station.climatological_station_id" + ), + primary_key=True, + ), + Column( + "history_id", + ForeignKey(f"{schema_name}.meta_history.history_id"), + primary_key=True, + ), + schema=schema_name, + ) + + op.create_table( + # TODO: Columns in this table parallel those in meta_vars. + # They differ in the following ways, which may be questioned: + # + # - String types do not provide lengths. All strings are ultimately variable + # length in PG and there seems no reason to limit them. (Except perhaps to + # prevent entry of erroneous values that just happen to be very long?) + # + # - None are nullable. In contrast, most in the model tables are. + "meta_climatological_variable", + Column("climatological_variable_id", Integer, primary_key=True), + # TODO: Duration can be computed from climatology_bounds. Do this with a provided + # function or store in separate column (this one)? + # In either case, represent value as an enumeration type? + Column("duration", What, nullable=False), + # climatology_bounds corresponds to the attribute of the same name defined in + # CF Metadata Standards, 7.4 Climatological Statistics + Column("climatology_bounds", ARRAY(ARRAY(String)), nullable=False), + Column("num_years", Integer, nullable=False), + Column("unit", String, nullable=False), + Column("precision", String, nullable=False), # Type? Utility??? + Column("standard_name", String, nullable=False), + Column("display_name", String, nullable=False), + Column("short_name", String, nullable=False), + Column("cell_methods", String, nullable=False), + Column("net_var_name", CIText(), nullable=False), + schema=schema_name, + ) + + op.create_table( + # TODO: Columns in this table parallel those in obs_raw. + # They differ in the following ways, which may be questioned: + # + # - None are nullable. In contrast, most in the model tables are. + "climatological_value", + Column("climatological_value_id", Integer, primary_key=True), + Column("mod_time", DateTime, nullable=False), + Column("datum_time", DateTime, nullable=False), + Column("datum", Float, nullable=False), + Column("num_contributing_years", Integer, nullable=False), + Column( + "climatological_variable_id", + Integer, + ForeignKey( + f"{schema_name}.meta_climatological_value.climatological_value_id" + ), + ), + schema=schema_name, + ) + + +def downgrade(): + op.drop_table("climatological_value", schema=schema_name) + op.drop_table("meta_climatological_variable", schema=schema_name) + op.drop_table("meta_climatological_station_x_meta_history", schema=schema_name) + op.drop_table("meta_climatological_station", schema=schema_name) From 60b79f60576cf71a822d9608f03505ee01d3582f Mon Sep 17 00:00:00 2001 From: rod-glover Date: Wed, 15 Jan 2025 10:41:19 -0800 Subject: [PATCH 02/21] Add first draft of ORM updates --- pycds/__init__.py | 8 +++++ pycds/orm/tables.py | 82 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 90 insertions(+) diff --git a/pycds/__init__.py b/pycds/__init__.py index 69d27671..072ef960 100644 --- a/pycds/__init__.py +++ b/pycds/__init__.py @@ -69,6 +69,10 @@ "HistoryStationNetwork", "ObsCountPerDayHistory", "ObsWithFlags", + "ClimatologicalStation", + "ClimatologicalStationXHistory", + "ClimatologicalVariable", + "ClimatologicalValue", ] from pycds.context import get_schema_name, get_su_role_name @@ -94,6 +98,10 @@ NativeFlag, PCICFlag, DerivedValue, + ClimatologicalStation, + ClimatologicalStationXHistory, + ClimatologicalVariable, + ClimatologicalValue, ) from .orm.views import ( diff --git a/pycds/orm/tables.py b/pycds/orm/tables.py index 531fc939..cd747fcf 100644 --- a/pycds/orm/tables.py +++ b/pycds/orm/tables.py @@ -31,6 +31,7 @@ Index, ) from sqlalchemy import DateTime, Boolean, ForeignKey, Numeric, Interval +from sqlalchemy.dialects.postgresql import ARRAY from sqlalchemy.orm import relationship, synonym, declarative_base from sqlalchemy.schema import UniqueConstraint from sqlalchemy.schema import CheckConstraint @@ -607,3 +608,84 @@ class DerivedValue(Base): name="obs_derived_value_time_place_variable_unique", ), ) + + +class ClimatologicalStation(Base): + # TODO: Columns in this table parallel those in meta_station and meta_history. + # They differ in the following ways, which may be questioned: + # + # - String types do not provide lengths. All strings are ultimately variable + # length in PG and there seems no reason to limit them. (Except perhaps to + # prevent entry of erroneous values that just happen to be very long?) + # + # - None are nullable. In contrast, most in the model tables are. + __tablename__ = "climatological_station" + + climatological_station_id = Column(Integer, primary_key=True) + station_type = Column(What, nullable=False) # TODO: Enumeration? + basin_id = Column(Integer, nullable=False) # TODO: Same as basin id in SCIP? + station_name = Column(String, nullable=False) + province = Column(String, nullable=False) + country = Column(String, nullable=False) + tz_offset = Column(Interval, nullable=False) + comments = Column(String, nullable=False) + location = Column(Geometry("GEOMETRY", 4326)) + pass + + +class ClimatologicalStationXHistory(Base): + __tablename__ = "meta_climatological_station_x_meta_history" + climatological_station_id = Column( + Integer, + ForeignKey("meta_climatological_station.climatological_station_id"), + primary_key=True, + ) + history_id = Column( + Integer, + ForeignKey("meta_history.history_id"), + primary_key=True, + ) + + +class ClimatologicalVariable(Base): + # TODO: Columns in this table parallel those in meta_station and meta_history. + # They differ in the following ways, which may be questioned: + # + # - String types do not provide lengths. All strings are ultimately variable + # length in PG and there seems no reason to limit them. (Except perhaps to + # prevent entry of erroneous values that just happen to be very long?) + # + # - None are nullable. In contrast, most in the model tables are. + __tablename__ = "meta_climatological_variable" + + climatological_variable_id = Column(Integer, primary_key=True) + # TODO: Duration can be computed from climatology_bounds. Do this with a provided + # function or store in separate column (this one)? + # In either case, represent value as an enumeration type? + duration = Column(String, nullable=False) # changed 'What' to 'String' + # climatology_bounds corresponds to the attribute of the same name defined in + # CF Metadata Standards, 7.4 Climatological Statistics + climatology_bounds = Column(ARRAY(ARRAY(String)), nullable=False) + num_years = Column(Integer, nullable=False) + unit = Column(String, nullable=False) + precision = Column(String, nullable=False) # Type? Utility??? + standard_name = Column(String, nullable=False) + display_name = Column(String, nullable=False) + short_name = Column(String, nullable=False) + cell_methods = Column(String, nullable=False) + net_var_name = Column(CIText(), nullable=False) + + +class ClimatologicalValue(Base): + # TODO: Columns in this table parallel those in obs_raw. + # They differ in the following ways, which may be questioned: + # + # - None are nullable. In contrast, most in the model tables are. + __tablename__ = "climatological_value" + + climatological_value_id = Column(Integer, primary_key=True) + mod_time = Column(DateTime, nullable=False) + datum_time = Column(DateTime, nullable=False) + datum = Column(Float, nullable=False) + num_contributing_years = Column(Integer, nullable=False) + climatological_variable_id = Column(Integer, ForeignKey("meta_climatological_value.climatological_value_id")) From 575212dfc3c85197b91606b57d6dc9c386be0f56 Mon Sep 17 00:00:00 2001 From: rod-glover Date: Wed, 15 Jan 2025 11:35:24 -0800 Subject: [PATCH 03/21] Add smoke test and fixes WIP --- ...support_multiple_climatological_normals.py | 10 ++-- pycds/orm/tables.py | 8 +-- tests/alembic_migrations/helpers.py | 35 ++++++++++++ .../__init__.py | 0 .../conftest.py | 6 +++ .../test_smoke.py | 54 +++++++++++++++++++ 6 files changed, 105 insertions(+), 8 deletions(-) create mode 100644 tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/__init__.py create mode 100644 tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/conftest.py create mode 100644 tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py diff --git a/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py b/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py index 9d9fed8d..14437aa4 100644 --- a/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py +++ b/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py @@ -52,7 +52,7 @@ def upgrade(): # - None are nullable. In contrast, most in the model tables are. "meta_climatological_station", # TODO: Revise name? Column("climatological_station_id", Integer, primary_key=True), - Column("station_type", What, nullable=False), # TODO: Enumeration? + Column("station_type", String, nullable=False), # TODO: Enumeration? Column("basin_id", Integer, nullable=False), # TODO: Same as basin id in SCIP? Column("station_name", String, nullable=False), Column("province", String, nullable=False), @@ -68,6 +68,7 @@ def upgrade(): "meta_climatological_station_x_meta_history", Column( "climatological_station_id", + Integer, ForeignKey( f"{schema_name}.meta_climatological_station.climatological_station_id" ), @@ -75,6 +76,7 @@ def upgrade(): ), Column( "history_id", + Integer, ForeignKey(f"{schema_name}.meta_history.history_id"), primary_key=True, ), @@ -95,10 +97,10 @@ def upgrade(): # TODO: Duration can be computed from climatology_bounds. Do this with a provided # function or store in separate column (this one)? # In either case, represent value as an enumeration type? - Column("duration", What, nullable=False), + Column("duration", String, nullable=False), # climatology_bounds corresponds to the attribute of the same name defined in # CF Metadata Standards, 7.4 Climatological Statistics - Column("climatology_bounds", ARRAY(ARRAY(String)), nullable=False), + Column("climatology_bounds", ARRAY(String, dimensions=2), nullable=False), Column("num_years", Integer, nullable=False), Column("unit", String, nullable=False), Column("precision", String, nullable=False), # Type? Utility??? @@ -125,7 +127,7 @@ def upgrade(): "climatological_variable_id", Integer, ForeignKey( - f"{schema_name}.meta_climatological_value.climatological_value_id" + f"{schema_name}.meta_climatological_variable.climatological_variable_id" ), ), schema=schema_name, diff --git a/pycds/orm/tables.py b/pycds/orm/tables.py index cd747fcf..cb8c2280 100644 --- a/pycds/orm/tables.py +++ b/pycds/orm/tables.py @@ -619,10 +619,10 @@ class ClimatologicalStation(Base): # prevent entry of erroneous values that just happen to be very long?) # # - None are nullable. In contrast, most in the model tables are. - __tablename__ = "climatological_station" + __tablename__ = "meta_climatological_station" climatological_station_id = Column(Integer, primary_key=True) - station_type = Column(What, nullable=False) # TODO: Enumeration? + station_type = Column(String, nullable=False) # TODO: Use Enumeration type? basin_id = Column(Integer, nullable=False) # TODO: Same as basin id in SCIP? station_name = Column(String, nullable=False) province = Column(String, nullable=False) @@ -662,10 +662,10 @@ class ClimatologicalVariable(Base): # TODO: Duration can be computed from climatology_bounds. Do this with a provided # function or store in separate column (this one)? # In either case, represent value as an enumeration type? - duration = Column(String, nullable=False) # changed 'What' to 'String' + duration = Column(String, nullable=False) # Use enumeration type? # climatology_bounds corresponds to the attribute of the same name defined in # CF Metadata Standards, 7.4 Climatological Statistics - climatology_bounds = Column(ARRAY(ARRAY(String)), nullable=False) + climatology_bounds = Column(ARRAY(String, dimensions=2), nullable=False) num_years = Column(Integer, nullable=False) unit = Column(String, nullable=False) precision = Column(String, nullable=False) # Type? Utility??? diff --git a/tests/alembic_migrations/helpers.py b/tests/alembic_migrations/helpers.py index 5dceeab3..b1bec107 100644 --- a/tests/alembic_migrations/helpers.py +++ b/tests/alembic_migrations/helpers.py @@ -18,6 +18,7 @@ from sqlalchemy.sql.operators import isnot_distinct_from from sqlalchemy.types import TIMESTAMP, VARCHAR, BOOLEAN, INTEGER +from pycds import get_schema_name from pycds.alembic.change_history_utils import hx_id_name from pycds.alembic.change_history_utils import main_table_name, hx_table_name from pycds.database import get_schema_item_names @@ -54,6 +55,40 @@ def check_triggers(connection, table, expected, present=True): assert item not in triggers +def check_table_orm_actual_match(engine, orm_table, schema_name=get_schema_name()): + """Check that table defined in ORM matches the actual table in the database. + This method is useful in smoke tests.""" + + # Check table existence + names = set(get_schema_item_names(engine, "tables", schema_name=schema_name)) + assert orm_table.__tablename__ in names + + # Reflect table + metadata = MetaData(schema=schema_name, bind=engine) + actual_table = Table(orm_table.__tablename__, metadata, autoload_with=engine) + + # Check that table columns match + actual_cols = tuple((col.name, col.type.__class__) for col in actual_table.columns) + print("actual_cols", actual_cols) + orm_cols = tuple( + (col.name, col.type.__class__) for col in orm_table.__table__.columns + ) + print("orm_cols", orm_cols) + + def class_match(class1, class2): + if issubclass(class1, class2) or issubclass(class2, class1): + return True + # TODO: Some ad-hocery (or maybe better than that) around dialect vs non-dialect + # types + return False + + # assert actual_cols == orm_cols + for actual_col, orm_col in zip(actual_table.columns, orm_table.__table__.columns): + assert actual_col.name == orm_col.name + print(f"{actual_col.name}:", actual_col.type.__class__, orm_col.type.__class__) + assert class_match(actual_col.type.__class__, orm_col.type.__class__) + + def check_history_tracking_upgrade( connection: Connection, table_name: str, diff --git a/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/__init__.py b/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/conftest.py b/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/conftest.py new file mode 100644 index 00000000..80b25d34 --- /dev/null +++ b/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/conftest.py @@ -0,0 +1,6 @@ +import pytest + + +@pytest.fixture(scope="module") +def target_revision(): + return "758be4f4ce0f" diff --git a/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py b/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py new file mode 100644 index 00000000..839e1474 --- /dev/null +++ b/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py @@ -0,0 +1,54 @@ +"""Smoke tests""" + +# -*- coding: utf-8 -*- +import logging +import pytest +from alembic import command +from sqlalchemy import Table, MetaData, text +from sqlalchemy.types import TIMESTAMP, VARCHAR, BOOLEAN, INTEGER + +from pycds import ClimatologicalStation, ClimatologicalStationXHistory, ClimatologicalVariable, ClimatologicalValue +from pycds.alembic.change_history_utils import pri_table_name, hx_table_name, hx_id_name +from pycds.database import get_schema_item_names +from tests.alembic_migrations.helpers import check_table_orm_actual_match + +logger = logging.getLogger("tests") + +orm_tables = ( + ClimatologicalStation, + ClimatologicalStationXHistory, + ClimatologicalVariable, + ClimatologicalValue, +) + + +@pytest.mark.usefixtures("new_db_left") +@pytest.mark.parametrize("orm_table", orm_tables) +def test_upgrade( + orm_table, prepared_schema_from_migrations_left, alembic_config_left, schema_name +): + """Test the schema migration to 758be4f4ce0f.""" + + # Set up database to target version (758be4f4ce0f) + engine, script = prepared_schema_from_migrations_left + + # Check that table has been created as expected. + check_table_orm_actual_match(engine, orm_table, schema_name=schema_name) + + +@pytest.mark.usefixtures("new_db_left") +@pytest.mark.parametrize("table", orm_tables) +def test_downgrade( + table, prepared_schema_from_migrations_left, alembic_config_left, schema_name +): + """Test the schema migration from a59d64cf16ca to previous rev.""" + + # Set up database to current version + engine, script = prepared_schema_from_migrations_left + + # Run downgrade migration + command.downgrade(alembic_config_left, "-1") + + # Check that tables have been altered or dropped as expected. + names = set(get_schema_item_names(engine, "tables", schema_name=schema_name)) + assert table.__tablename__ not in names From 76ced836eb679fb19774336caa1f4be8adf3b6cc Mon Sep 17 00:00:00 2001 From: rod-glover Date: Thu, 16 Jan 2025 09:44:41 -0800 Subject: [PATCH 04/21] Finish smoke test --- tests/alembic_migrations/helpers.py | 36 +++++++++---------- .../test_smoke.py | 6 ++-- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/tests/alembic_migrations/helpers.py b/tests/alembic_migrations/helpers.py index b1bec107..4fdf9014 100644 --- a/tests/alembic_migrations/helpers.py +++ b/tests/alembic_migrations/helpers.py @@ -15,6 +15,7 @@ from sqlalchemy.engine import Connection from sqlalchemy.dialects import postgresql from sqlalchemy.dialects.postgresql import aggregate_order_by +from sqlalchemy.sql import sqltypes from sqlalchemy.sql.operators import isnot_distinct_from from sqlalchemy.types import TIMESTAMP, VARCHAR, BOOLEAN, INTEGER @@ -55,11 +56,11 @@ def check_triggers(connection, table, expected, present=True): assert item not in triggers -def check_table_orm_actual_match(engine, orm_table, schema_name=get_schema_name()): +def check_orm_actual_tables_match(engine, orm_table, schema_name=get_schema_name()): """Check that table defined in ORM matches the actual table in the database. This method is useful in smoke tests.""" - # Check table existence + # Check actual table existence names = set(get_schema_item_names(engine, "tables", schema_name=schema_name)) assert orm_table.__tablename__ in names @@ -68,25 +69,24 @@ def check_table_orm_actual_match(engine, orm_table, schema_name=get_schema_name( actual_table = Table(orm_table.__tablename__, metadata, autoload_with=engine) # Check that table columns match - actual_cols = tuple((col.name, col.type.__class__) for col in actual_table.columns) - print("actual_cols", actual_cols) - orm_cols = tuple( - (col.name, col.type.__class__) for col in orm_table.__table__.columns - ) - print("orm_cols", orm_cols) - - def class_match(class1, class2): - if issubclass(class1, class2) or issubclass(class2, class1): - return True - # TODO: Some ad-hocery (or maybe better than that) around dialect vs non-dialect - # types - return False + def type_match(class1, class2): + return ( + # This is usually the case if they match + issubclass(class1, class2) + or issubclass(class2, class1) + # Ad-hocery around dialect vs non-dialect types + or all(issubclass(c, sqltypes._AbstractInterval) for c in (class1, class2)) + ) - # assert actual_cols == orm_cols + # This checks column order as well as type. for actual_col, orm_col in zip(actual_table.columns, orm_table.__table__.columns): assert actual_col.name == orm_col.name - print(f"{actual_col.name}:", actual_col.type.__class__, orm_col.type.__class__) - assert class_match(actual_col.type.__class__, orm_col.type.__class__) + # print( + # f"{actual_col.name}: actual {actual_col.type.__class__} orm: {orm_col.type.__class__}" + # ) + assert type_match( + actual_col.type.__class__, orm_col.type.__class__ + ), f"{actual_col.name}: actual {actual_col.type.__class__} orm: {orm_col.type.__class__}" def check_history_tracking_upgrade( diff --git a/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py b/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py index 839e1474..3e114809 100644 --- a/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py +++ b/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py @@ -10,7 +10,7 @@ from pycds import ClimatologicalStation, ClimatologicalStationXHistory, ClimatologicalVariable, ClimatologicalValue from pycds.alembic.change_history_utils import pri_table_name, hx_table_name, hx_id_name from pycds.database import get_schema_item_names -from tests.alembic_migrations.helpers import check_table_orm_actual_match +from tests.alembic_migrations.helpers import check_orm_actual_tables_match logger = logging.getLogger("tests") @@ -33,7 +33,7 @@ def test_upgrade( engine, script = prepared_schema_from_migrations_left # Check that table has been created as expected. - check_table_orm_actual_match(engine, orm_table, schema_name=schema_name) + check_orm_actual_tables_match(engine, orm_table, schema_name=schema_name) @pytest.mark.usefixtures("new_db_left") @@ -49,6 +49,6 @@ def test_downgrade( # Run downgrade migration command.downgrade(alembic_config_left, "-1") - # Check that tables have been altered or dropped as expected. + # Check that tables have been dropped as expected. names = set(get_schema_item_names(engine, "tables", schema_name=schema_name)) assert table.__tablename__ not in names From 85aaad0b27489f55383c5d83dbd522b66efdded0 Mon Sep 17 00:00:00 2001 From: rod-glover Date: Thu, 16 Jan 2025 12:21:52 -0800 Subject: [PATCH 05/21] Black --- pycds/orm/tables.py | 6 ++++-- .../test_smoke.py | 9 +++++++-- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/pycds/orm/tables.py b/pycds/orm/tables.py index cb8c2280..8b883390 100644 --- a/pycds/orm/tables.py +++ b/pycds/orm/tables.py @@ -657,7 +657,7 @@ class ClimatologicalVariable(Base): # # - None are nullable. In contrast, most in the model tables are. __tablename__ = "meta_climatological_variable" - + climatological_variable_id = Column(Integer, primary_key=True) # TODO: Duration can be computed from climatology_bounds. Do this with a provided # function or store in separate column (this one)? @@ -688,4 +688,6 @@ class ClimatologicalValue(Base): datum_time = Column(DateTime, nullable=False) datum = Column(Float, nullable=False) num_contributing_years = Column(Integer, nullable=False) - climatological_variable_id = Column(Integer, ForeignKey("meta_climatological_value.climatological_value_id")) + climatological_variable_id = Column( + Integer, ForeignKey("meta_climatological_value.climatological_value_id") + ) diff --git a/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py b/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py index 3e114809..59d4effb 100644 --- a/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py +++ b/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py @@ -7,7 +7,12 @@ from sqlalchemy import Table, MetaData, text from sqlalchemy.types import TIMESTAMP, VARCHAR, BOOLEAN, INTEGER -from pycds import ClimatologicalStation, ClimatologicalStationXHistory, ClimatologicalVariable, ClimatologicalValue +from pycds import ( + ClimatologicalStation, + ClimatologicalStationXHistory, + ClimatologicalVariable, + ClimatologicalValue, +) from pycds.alembic.change_history_utils import pri_table_name, hx_table_name, hx_id_name from pycds.database import get_schema_item_names from tests.alembic_migrations.helpers import check_orm_actual_tables_match @@ -25,7 +30,7 @@ @pytest.mark.usefixtures("new_db_left") @pytest.mark.parametrize("orm_table", orm_tables) def test_upgrade( - orm_table, prepared_schema_from_migrations_left, alembic_config_left, schema_name + orm_table, prepared_schema_from_migrations_left, alembic_config_left, schema_name ): """Test the schema migration to 758be4f4ce0f.""" From 43018ab6017a9b1d97e98ea7b435b64f5c414968 Mon Sep 17 00:00:00 2001 From: rod-glover Date: Thu, 16 Jan 2025 13:21:44 -0800 Subject: [PATCH 06/21] Fix more model errors --- .../758be4f4ce0f_support_multiple_climatological_normals.py | 2 +- pycds/orm/tables.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py b/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py index 14437aa4..784e488c 100644 --- a/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py +++ b/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py @@ -26,7 +26,7 @@ # revision identifiers, used by Alembic. # TODO: When version control PRs are merged, "rebase" this onto the head revision. revision = "758be4f4ce0f" -down_revision = "7ab87f8fbcf4" +down_revision = "8c05da87cb79" branch_labels = None depends_on = None diff --git a/pycds/orm/tables.py b/pycds/orm/tables.py index 8b883390..c17dc81e 100644 --- a/pycds/orm/tables.py +++ b/pycds/orm/tables.py @@ -689,5 +689,5 @@ class ClimatologicalValue(Base): datum = Column(Float, nullable=False) num_contributing_years = Column(Integer, nullable=False) climatological_variable_id = Column( - Integer, ForeignKey("meta_climatological_value.climatological_value_id") + Integer, ForeignKey("meta_climatological_variable.climatological_variable_id") ) From fe8f34858cf16df561136a290bbd7a5a946a8bbb Mon Sep 17 00:00:00 2001 From: rod-glover Date: Thu, 16 Jan 2025 13:21:55 -0800 Subject: [PATCH 07/21] Fix revision checking --- pycds/database.py | 2 +- tests/alembic_migrations/test_check_migration_version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pycds/database.py b/pycds/database.py index dd6ba733..4d8a3296 100644 --- a/pycds/database.py +++ b/pycds/database.py @@ -10,7 +10,7 @@ def check_migration_version( - executor, schema_name=get_schema_name(), version="8c05da87cb79" + executor, schema_name=get_schema_name(), version="758be4f4ce0f" ): """Check that the migration version of the database schema is compatible with the current version of this package. diff --git a/tests/alembic_migrations/test_check_migration_version.py b/tests/alembic_migrations/test_check_migration_version.py index 6c5237fa..eece2086 100644 --- a/tests/alembic_migrations/test_check_migration_version.py +++ b/tests/alembic_migrations/test_check_migration_version.py @@ -8,7 +8,7 @@ @pytest.mark.update20 def test_get_current_head(): - assert get_current_head() == "8c05da87cb79" + assert get_current_head() == "758be4f4ce0f" @pytest.mark.update20 From 03383f1a212efb3b2fdd3c9674295ebbd1364ef0 Mon Sep 17 00:00:00 2001 From: James Hiebert Date: Wed, 30 Apr 2025 14:43:27 -0700 Subject: [PATCH 08/21] Address several SQLAlchemy deprecations + cascade_backrefs https://docs.sqlalchemy.org/en/14/errors.html#error-s9r1 + use of raw SQL deprecations + ignore warnings from SQLAlchemy about datetime.datetime.utcnow() deprecations --- pytest.ini | 3 +++ tests/basics/test_db_fixture.py | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 pytest.ini diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 00000000..f265fa62 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,3 @@ +[pytest] +filterwarnings = + ignore:datetime.datetime diff --git a/tests/basics/test_db_fixture.py b/tests/basics/test_db_fixture.py index 33b62eab..ee662025 100644 --- a/tests/basics/test_db_fixture.py +++ b/tests/basics/test_db_fixture.py @@ -1,6 +1,5 @@ from sqlalchemy import text - def test_can_create_postgis_db(empty_sesh): res = empty_sesh.execute(text("SELECT PostGIS_full_version()")) version = res.fetchall()[0][0] From 8b5569a6680d32ce1cd90640fe7d525fabe9efd7 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 9 Jun 2025 16:51:31 +0000 Subject: [PATCH 09/21] Checkpoint commit, fixed most migration tests, working through behaviour --- .../0d99ba90c229_create_missing_indexes.py | 1 - ...3b247c577b_add_varsperhistory_native_matview.py | 14 ++++++++++++++ ...ecff1a73d7e_update_matview_collapsed_vars_mv.py | 1 - pycds/orm/views/version_22819129a609.py | 2 +- tests/alembic/replaceable_objects/conftest.py | 1 - .../test_on_real_tables/test_on_real_tables.py | 1 - 6 files changed, 15 insertions(+), 5 deletions(-) diff --git a/pycds/alembic/versions/0d99ba90c229_create_missing_indexes.py b/pycds/alembic/versions/0d99ba90c229_create_missing_indexes.py index 6f328259..f284e7d5 100644 --- a/pycds/alembic/versions/0d99ba90c229_create_missing_indexes.py +++ b/pycds/alembic/versions/0d99ba90c229_create_missing_indexes.py @@ -56,7 +56,6 @@ StationObservationStats, ) - def upgrade(): for ORMClass in classes: logger.debug( diff --git a/pycds/alembic/versions/7a3b247c577b_add_varsperhistory_native_matview.py b/pycds/alembic/versions/7a3b247c577b_add_varsperhistory_native_matview.py index 181c4c5a..1f31f40c 100644 --- a/pycds/alembic/versions/7a3b247c577b_add_varsperhistory_native_matview.py +++ b/pycds/alembic/versions/7a3b247c577b_add_varsperhistory_native_matview.py @@ -35,6 +35,20 @@ schema_name = get_schema_name() +def drop_dependent_objects(): + """ + Drop dependent objects that may exist in the database. + This is necessary to ensure that the upgrade can proceed without conflicts. + """ + op.drop_table_if_exists("collapsed_vars_mv", schema=schema_name) + +def create_dependent_objects(): + """ + Create dependent objects that are required for the upgrade. + This is necessary to ensure that the upgrade can proceed without conflicts. + """ + create_matview(CollapsedVariables, schema=schema_name) + def drop_dependent_objects(): """ diff --git a/pycds/alembic/versions/fecff1a73d7e_update_matview_collapsed_vars_mv.py b/pycds/alembic/versions/fecff1a73d7e_update_matview_collapsed_vars_mv.py index 5863c56b..ff543613 100644 --- a/pycds/alembic/versions/fecff1a73d7e_update_matview_collapsed_vars_mv.py +++ b/pycds/alembic/versions/fecff1a73d7e_update_matview_collapsed_vars_mv.py @@ -34,7 +34,6 @@ def drop_dependent_objects(): drop_view(CrmpNetworkGeoserver, schema=schema_name) - def create_dependent_objects(): create_view(CrmpNetworkGeoserver, schema=schema_name) diff --git a/pycds/orm/views/version_22819129a609.py b/pycds/orm/views/version_22819129a609.py index 177224ae..31ce9c76 100644 --- a/pycds/orm/views/version_22819129a609.py +++ b/pycds/orm/views/version_22819129a609.py @@ -36,4 +36,4 @@ class CollapsedVariables(Base, ReplaceableView): __selectable__ = CollapsedVariablesMatview.__selectable__ -Index("collapsed_vars_idx", CollapsedVariables.history_id) +Index("collapsed_vars_idx", CollapsedVariables.history_id) \ No newline at end of file diff --git a/tests/alembic/replaceable_objects/conftest.py b/tests/alembic/replaceable_objects/conftest.py index d9c56e48..e3b5b79a 100644 --- a/tests/alembic/replaceable_objects/conftest.py +++ b/tests/alembic/replaceable_objects/conftest.py @@ -17,7 +17,6 @@ ThingCountManualMatview, ) - @fixture def tst_orm_engine(base_engine): """Database engine with test content created in it.""" diff --git a/tests/alembic_migrations/versions/v_a59d64cf16ca_add_hx_tkg_to_main_metadata_tables/test_on_real_tables/test_on_real_tables.py b/tests/alembic_migrations/versions/v_a59d64cf16ca_add_hx_tkg_to_main_metadata_tables/test_on_real_tables/test_on_real_tables.py index 2120fe3d..6b4a7822 100644 --- a/tests/alembic_migrations/versions/v_a59d64cf16ca_add_hx_tkg_to_main_metadata_tables/test_on_real_tables/test_on_real_tables.py +++ b/tests/alembic_migrations/versions/v_a59d64cf16ca_add_hx_tkg_to_main_metadata_tables/test_on_real_tables/test_on_real_tables.py @@ -40,7 +40,6 @@ schema_name = get_schema_name() - @pytest.mark.parametrize( "primary, history, primary_id, columns, foreign_tables, insert_info, update_info, delete_info", [ From fa88da45686e58a5d3bf3b91e751f3a43d740df0 Mon Sep 17 00:00:00 2001 From: rod-glover Date: Wed, 15 Jan 2025 10:41:19 -0800 Subject: [PATCH 10/21] Add first draft of ORM updates --- pycds/orm/tables.py | 85 +-------------------------------------------- 1 file changed, 1 insertion(+), 84 deletions(-) diff --git a/pycds/orm/tables.py b/pycds/orm/tables.py index c17dc81e..de6cc1ca 100644 --- a/pycds/orm/tables.py +++ b/pycds/orm/tables.py @@ -607,87 +607,4 @@ class DerivedValue(Base): "vars_id", name="obs_derived_value_time_place_variable_unique", ), - ) - - -class ClimatologicalStation(Base): - # TODO: Columns in this table parallel those in meta_station and meta_history. - # They differ in the following ways, which may be questioned: - # - # - String types do not provide lengths. All strings are ultimately variable - # length in PG and there seems no reason to limit them. (Except perhaps to - # prevent entry of erroneous values that just happen to be very long?) - # - # - None are nullable. In contrast, most in the model tables are. - __tablename__ = "meta_climatological_station" - - climatological_station_id = Column(Integer, primary_key=True) - station_type = Column(String, nullable=False) # TODO: Use Enumeration type? - basin_id = Column(Integer, nullable=False) # TODO: Same as basin id in SCIP? - station_name = Column(String, nullable=False) - province = Column(String, nullable=False) - country = Column(String, nullable=False) - tz_offset = Column(Interval, nullable=False) - comments = Column(String, nullable=False) - location = Column(Geometry("GEOMETRY", 4326)) - pass - - -class ClimatologicalStationXHistory(Base): - __tablename__ = "meta_climatological_station_x_meta_history" - climatological_station_id = Column( - Integer, - ForeignKey("meta_climatological_station.climatological_station_id"), - primary_key=True, - ) - history_id = Column( - Integer, - ForeignKey("meta_history.history_id"), - primary_key=True, - ) - - -class ClimatologicalVariable(Base): - # TODO: Columns in this table parallel those in meta_station and meta_history. - # They differ in the following ways, which may be questioned: - # - # - String types do not provide lengths. All strings are ultimately variable - # length in PG and there seems no reason to limit them. (Except perhaps to - # prevent entry of erroneous values that just happen to be very long?) - # - # - None are nullable. In contrast, most in the model tables are. - __tablename__ = "meta_climatological_variable" - - climatological_variable_id = Column(Integer, primary_key=True) - # TODO: Duration can be computed from climatology_bounds. Do this with a provided - # function or store in separate column (this one)? - # In either case, represent value as an enumeration type? - duration = Column(String, nullable=False) # Use enumeration type? - # climatology_bounds corresponds to the attribute of the same name defined in - # CF Metadata Standards, 7.4 Climatological Statistics - climatology_bounds = Column(ARRAY(String, dimensions=2), nullable=False) - num_years = Column(Integer, nullable=False) - unit = Column(String, nullable=False) - precision = Column(String, nullable=False) # Type? Utility??? - standard_name = Column(String, nullable=False) - display_name = Column(String, nullable=False) - short_name = Column(String, nullable=False) - cell_methods = Column(String, nullable=False) - net_var_name = Column(CIText(), nullable=False) - - -class ClimatologicalValue(Base): - # TODO: Columns in this table parallel those in obs_raw. - # They differ in the following ways, which may be questioned: - # - # - None are nullable. In contrast, most in the model tables are. - __tablename__ = "climatological_value" - - climatological_value_id = Column(Integer, primary_key=True) - mod_time = Column(DateTime, nullable=False) - datum_time = Column(DateTime, nullable=False) - datum = Column(Float, nullable=False) - num_contributing_years = Column(Integer, nullable=False) - climatological_variable_id = Column( - Integer, ForeignKey("meta_climatological_variable.climatological_variable_id") - ) + ) \ No newline at end of file From a96411d654311a8838c87bb490e2e484395271ce Mon Sep 17 00:00:00 2001 From: rod-glover Date: Wed, 15 Jan 2025 11:35:24 -0800 Subject: [PATCH 11/21] Add smoke test and fixes WIP --- pycds/orm/tables.py | 83 ++++++++++++++++++- tests/alembic_migrations/helpers.py | 34 -------- .../test_smoke.py | 54 ++++++++++++ 3 files changed, 136 insertions(+), 35 deletions(-) diff --git a/pycds/orm/tables.py b/pycds/orm/tables.py index de6cc1ca..cb8c2280 100644 --- a/pycds/orm/tables.py +++ b/pycds/orm/tables.py @@ -607,4 +607,85 @@ class DerivedValue(Base): "vars_id", name="obs_derived_value_time_place_variable_unique", ), - ) \ No newline at end of file + ) + + +class ClimatologicalStation(Base): + # TODO: Columns in this table parallel those in meta_station and meta_history. + # They differ in the following ways, which may be questioned: + # + # - String types do not provide lengths. All strings are ultimately variable + # length in PG and there seems no reason to limit them. (Except perhaps to + # prevent entry of erroneous values that just happen to be very long?) + # + # - None are nullable. In contrast, most in the model tables are. + __tablename__ = "meta_climatological_station" + + climatological_station_id = Column(Integer, primary_key=True) + station_type = Column(String, nullable=False) # TODO: Use Enumeration type? + basin_id = Column(Integer, nullable=False) # TODO: Same as basin id in SCIP? + station_name = Column(String, nullable=False) + province = Column(String, nullable=False) + country = Column(String, nullable=False) + tz_offset = Column(Interval, nullable=False) + comments = Column(String, nullable=False) + location = Column(Geometry("GEOMETRY", 4326)) + pass + + +class ClimatologicalStationXHistory(Base): + __tablename__ = "meta_climatological_station_x_meta_history" + climatological_station_id = Column( + Integer, + ForeignKey("meta_climatological_station.climatological_station_id"), + primary_key=True, + ) + history_id = Column( + Integer, + ForeignKey("meta_history.history_id"), + primary_key=True, + ) + + +class ClimatologicalVariable(Base): + # TODO: Columns in this table parallel those in meta_station and meta_history. + # They differ in the following ways, which may be questioned: + # + # - String types do not provide lengths. All strings are ultimately variable + # length in PG and there seems no reason to limit them. (Except perhaps to + # prevent entry of erroneous values that just happen to be very long?) + # + # - None are nullable. In contrast, most in the model tables are. + __tablename__ = "meta_climatological_variable" + + climatological_variable_id = Column(Integer, primary_key=True) + # TODO: Duration can be computed from climatology_bounds. Do this with a provided + # function or store in separate column (this one)? + # In either case, represent value as an enumeration type? + duration = Column(String, nullable=False) # Use enumeration type? + # climatology_bounds corresponds to the attribute of the same name defined in + # CF Metadata Standards, 7.4 Climatological Statistics + climatology_bounds = Column(ARRAY(String, dimensions=2), nullable=False) + num_years = Column(Integer, nullable=False) + unit = Column(String, nullable=False) + precision = Column(String, nullable=False) # Type? Utility??? + standard_name = Column(String, nullable=False) + display_name = Column(String, nullable=False) + short_name = Column(String, nullable=False) + cell_methods = Column(String, nullable=False) + net_var_name = Column(CIText(), nullable=False) + + +class ClimatologicalValue(Base): + # TODO: Columns in this table parallel those in obs_raw. + # They differ in the following ways, which may be questioned: + # + # - None are nullable. In contrast, most in the model tables are. + __tablename__ = "climatological_value" + + climatological_value_id = Column(Integer, primary_key=True) + mod_time = Column(DateTime, nullable=False) + datum_time = Column(DateTime, nullable=False) + datum = Column(Float, nullable=False) + num_contributing_years = Column(Integer, nullable=False) + climatological_variable_id = Column(Integer, ForeignKey("meta_climatological_value.climatological_value_id")) diff --git a/tests/alembic_migrations/helpers.py b/tests/alembic_migrations/helpers.py index 4fdf9014..e4a8913a 100644 --- a/tests/alembic_migrations/helpers.py +++ b/tests/alembic_migrations/helpers.py @@ -55,40 +55,6 @@ def check_triggers(connection, table, expected, present=True): else: assert item not in triggers - -def check_orm_actual_tables_match(engine, orm_table, schema_name=get_schema_name()): - """Check that table defined in ORM matches the actual table in the database. - This method is useful in smoke tests.""" - - # Check actual table existence - names = set(get_schema_item_names(engine, "tables", schema_name=schema_name)) - assert orm_table.__tablename__ in names - - # Reflect table - metadata = MetaData(schema=schema_name, bind=engine) - actual_table = Table(orm_table.__tablename__, metadata, autoload_with=engine) - - # Check that table columns match - def type_match(class1, class2): - return ( - # This is usually the case if they match - issubclass(class1, class2) - or issubclass(class2, class1) - # Ad-hocery around dialect vs non-dialect types - or all(issubclass(c, sqltypes._AbstractInterval) for c in (class1, class2)) - ) - - # This checks column order as well as type. - for actual_col, orm_col in zip(actual_table.columns, orm_table.__table__.columns): - assert actual_col.name == orm_col.name - # print( - # f"{actual_col.name}: actual {actual_col.type.__class__} orm: {orm_col.type.__class__}" - # ) - assert type_match( - actual_col.type.__class__, orm_col.type.__class__ - ), f"{actual_col.name}: actual {actual_col.type.__class__} orm: {orm_col.type.__class__}" - - def check_history_tracking_upgrade( connection: Connection, table_name: str, diff --git a/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py b/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py index 59d4effb..e53b0f5a 100644 --- a/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py +++ b/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py @@ -57,3 +57,57 @@ def test_downgrade( # Check that tables have been dropped as expected. names = set(get_schema_item_names(engine, "tables", schema_name=schema_name)) assert table.__tablename__ not in names +"""Smoke tests""" + +# -*- coding: utf-8 -*- +import logging +import pytest +from alembic import command +from sqlalchemy import Table, MetaData, text +from sqlalchemy.types import TIMESTAMP, VARCHAR, BOOLEAN, INTEGER + +from pycds import ClimatologicalStation, ClimatologicalStationXHistory, ClimatologicalVariable, ClimatologicalValue +from pycds.alembic.change_history_utils import pri_table_name, hx_table_name, hx_id_name +from pycds.database import get_schema_item_names +from tests.alembic_migrations.helpers import check_table_orm_actual_match + +logger = logging.getLogger("tests") + +orm_tables = ( + ClimatologicalStation, + ClimatologicalStationXHistory, + ClimatologicalVariable, + ClimatologicalValue, +) + + +@pytest.mark.usefixtures("new_db_left") +@pytest.mark.parametrize("orm_table", orm_tables) +def test_upgrade( + orm_table, prepared_schema_from_migrations_left, alembic_config_left, schema_name +): + """Test the schema migration to 758be4f4ce0f.""" + + # Set up database to target version (758be4f4ce0f) + engine, script = prepared_schema_from_migrations_left + + # Check that table has been created as expected. + check_table_orm_actual_match(engine, orm_table, schema_name=schema_name) + + +@pytest.mark.usefixtures("new_db_left") +@pytest.mark.parametrize("table", orm_tables) +def test_downgrade( + table, prepared_schema_from_migrations_left, alembic_config_left, schema_name +): + """Test the schema migration from a59d64cf16ca to previous rev.""" + + # Set up database to current version + engine, script = prepared_schema_from_migrations_left + + # Run downgrade migration + command.downgrade(alembic_config_left, "-1") + + # Check that tables have been altered or dropped as expected. + names = set(get_schema_item_names(engine, "tables", schema_name=schema_name)) + assert table.__tablename__ not in names From 02635c0209efb4005e6137d61a2b854ed1c45d8d Mon Sep 17 00:00:00 2001 From: rod-glover Date: Thu, 16 Jan 2025 09:44:41 -0800 Subject: [PATCH 12/21] Finish smoke test --- tests/alembic_migrations/helpers.py | 34 +++++++++++++++++++ .../test_smoke.py | 6 ++-- 2 files changed, 37 insertions(+), 3 deletions(-) diff --git a/tests/alembic_migrations/helpers.py b/tests/alembic_migrations/helpers.py index e4a8913a..4fdf9014 100644 --- a/tests/alembic_migrations/helpers.py +++ b/tests/alembic_migrations/helpers.py @@ -55,6 +55,40 @@ def check_triggers(connection, table, expected, present=True): else: assert item not in triggers + +def check_orm_actual_tables_match(engine, orm_table, schema_name=get_schema_name()): + """Check that table defined in ORM matches the actual table in the database. + This method is useful in smoke tests.""" + + # Check actual table existence + names = set(get_schema_item_names(engine, "tables", schema_name=schema_name)) + assert orm_table.__tablename__ in names + + # Reflect table + metadata = MetaData(schema=schema_name, bind=engine) + actual_table = Table(orm_table.__tablename__, metadata, autoload_with=engine) + + # Check that table columns match + def type_match(class1, class2): + return ( + # This is usually the case if they match + issubclass(class1, class2) + or issubclass(class2, class1) + # Ad-hocery around dialect vs non-dialect types + or all(issubclass(c, sqltypes._AbstractInterval) for c in (class1, class2)) + ) + + # This checks column order as well as type. + for actual_col, orm_col in zip(actual_table.columns, orm_table.__table__.columns): + assert actual_col.name == orm_col.name + # print( + # f"{actual_col.name}: actual {actual_col.type.__class__} orm: {orm_col.type.__class__}" + # ) + assert type_match( + actual_col.type.__class__, orm_col.type.__class__ + ), f"{actual_col.name}: actual {actual_col.type.__class__} orm: {orm_col.type.__class__}" + + def check_history_tracking_upgrade( connection: Connection, table_name: str, diff --git a/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py b/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py index e53b0f5a..07144e48 100644 --- a/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py +++ b/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py @@ -69,7 +69,7 @@ def test_downgrade( from pycds import ClimatologicalStation, ClimatologicalStationXHistory, ClimatologicalVariable, ClimatologicalValue from pycds.alembic.change_history_utils import pri_table_name, hx_table_name, hx_id_name from pycds.database import get_schema_item_names -from tests.alembic_migrations.helpers import check_table_orm_actual_match +from tests.alembic_migrations.helpers import check_orm_actual_tables_match logger = logging.getLogger("tests") @@ -92,7 +92,7 @@ def test_upgrade( engine, script = prepared_schema_from_migrations_left # Check that table has been created as expected. - check_table_orm_actual_match(engine, orm_table, schema_name=schema_name) + check_orm_actual_tables_match(engine, orm_table, schema_name=schema_name) @pytest.mark.usefixtures("new_db_left") @@ -108,6 +108,6 @@ def test_downgrade( # Run downgrade migration command.downgrade(alembic_config_left, "-1") - # Check that tables have been altered or dropped as expected. + # Check that tables have been dropped as expected. names = set(get_schema_item_names(engine, "tables", schema_name=schema_name)) assert table.__tablename__ not in names From 4d676160578fc1fbc168a9458a967ced1e433ffa Mon Sep 17 00:00:00 2001 From: John Date: Wed, 3 Sep 2025 14:23:00 -0700 Subject: [PATCH 13/21] be specific about python versions --- .github/workflows/python-ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index 8f118ac6..f5c9de6d 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -8,10 +8,8 @@ jobs: strategy: matrix: python-version: - - "3.10" - - "3.11" - - "3.12" - - "3.13" + - "3.6" + - "3.7" steps: - uses: actions/checkout@v2 From 0a6a11b0378176a67862708f806db4ff8c9b792f Mon Sep 17 00:00:00 2001 From: John Date: Mon, 15 Sep 2025 23:59:24 +0000 Subject: [PATCH 14/21] update with new expected schema, update tests with sql alchemy 2.0 compatability --- pycds/__init__.py | 2 + pycds/alembic/change_history_utils.py | 4 +- .../0d99ba90c229_create_missing_indexes.py | 1 + ...support_multiple_climatological_normals.py | 99 ++++++++++++------- ...c577b_add_varsperhistory_native_matview.py | 17 +--- ...a73d7e_update_matview_collapsed_vars_mv.py | 1 + pycds/orm/tables.py | 60 ++++++----- pycds/orm/views/version_22819129a609.py | 2 +- tests/alembic/replaceable_objects/conftest.py | 1 + tests/alembic_migrations/helpers.py | 10 +- tests/alembic_migrations/test_migrations.py | 5 +- .../test_smoke.py | 85 +++------------- .../test_on_real_tables.py | 1 + tests/basics/test_db_fixture.py | 1 + 14 files changed, 129 insertions(+), 160 deletions(-) diff --git a/pycds/__init__.py b/pycds/__init__.py index 072ef960..b36a421f 100644 --- a/pycds/__init__.py +++ b/pycds/__init__.py @@ -69,6 +69,7 @@ "HistoryStationNetwork", "ObsCountPerDayHistory", "ObsWithFlags", + "ClimatologicalPeriod", "ClimatologicalStation", "ClimatologicalStationXHistory", "ClimatologicalVariable", @@ -98,6 +99,7 @@ NativeFlag, PCICFlag, DerivedValue, + ClimatologicalPeriod, ClimatologicalStation, ClimatologicalStationXHistory, ClimatologicalVariable, diff --git a/pycds/alembic/change_history_utils.py b/pycds/alembic/change_history_utils.py index a9cc2571..334c5437 100644 --- a/pycds/alembic/change_history_utils.py +++ b/pycds/alembic/change_history_utils.py @@ -57,7 +57,7 @@ def add_history_cols_to_primary( def drop_history_cols_from_primary( - collection_name: str, columns: tuple[str] = ("mod_time", "mod_user") + collection_name: str, columns: tuple[str, str] = ("mod_time", "mod_user") ): drop_columns = ", ".join(f"DROP COLUMN {c}" for c in columns) op.execute(f"ALTER TABLE {main_table_name(collection_name)} {drop_columns}") @@ -124,7 +124,7 @@ def populate_history_table( collection_name: str, pri_id_name: str, foreign_tables: list[tuple[str, str]], - limit: int = None, + limit: int | None = None, ): """ Populate the history table with data from the main table, in order of item id (main diff --git a/pycds/alembic/versions/0d99ba90c229_create_missing_indexes.py b/pycds/alembic/versions/0d99ba90c229_create_missing_indexes.py index f284e7d5..6f328259 100644 --- a/pycds/alembic/versions/0d99ba90c229_create_missing_indexes.py +++ b/pycds/alembic/versions/0d99ba90c229_create_missing_indexes.py @@ -56,6 +56,7 @@ StationObservationStats, ) + def upgrade(): for ORMClass in classes: logger.debug( diff --git a/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py b/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py index 784e488c..dc1e0026 100644 --- a/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py +++ b/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py @@ -5,21 +5,21 @@ Create Date: 2025-01-13 17:19:03.192403 """ -from citext import CIText + from alembic import op # import sqlalchemy as sa from geoalchemy2 import Geometry from sqlalchemy import ( Column, + Enum, Integer, String, - Interval, ForeignKey, DateTime, Float, ) -from sqlalchemy.dialects.postgresql import ARRAY +from sqlalchemy.dialects.postgresql import CITEXT from pycds import get_schema_name @@ -39,8 +39,25 @@ # added to the database. That could be done in this migration or in a separate subsequent # migration. +def climatological_station_type(): + return Enum( + "long-record", "composite", "prism", + name="climatological_station_type_enum", + schema=schema_name, + ) def upgrade(): + + op.create_table( + "climatological_period", + Column("climatological_period_id", Integer, primary_key=True), + Column("start_date", DateTime, nullable=False), + Column("end_date", DateTime, nullable=False), + Column("mod_time", DateTime, nullable=False), + Column("mod_user", String, nullable=False), + schema=schema_name, + ) + op.create_table( # TODO: Columns in this table parallel those in meta_station and meta_history. # They differ in the following ways, which may be questioned: @@ -50,27 +67,33 @@ def upgrade(): # prevent entry of erroneous values that just happen to be very long?) # # - None are nullable. In contrast, most in the model tables are. - "meta_climatological_station", # TODO: Revise name? + "climatological_station", # TODO: Revise name? Column("climatological_station_id", Integer, primary_key=True), - Column("station_type", String, nullable=False), # TODO: Enumeration? - Column("basin_id", Integer, nullable=False), # TODO: Same as basin id in SCIP? - Column("station_name", String, nullable=False), - Column("province", String, nullable=False), - Column("country", String, nullable=False), - Column("tz_offset", Interval, nullable=False), + Column( + "type", Enum("long-record", "composite", "prism", name="climatological_station_type_enum"), nullable=False + ), + Column("basin_id", Integer, nullable=True), Column("comments", String, nullable=False), - Column("location", Geometry("GEOMETRY", 4326), nullable=False), + Column( + "climatological_period_id", + Integer, + ForeignKey( + f"{schema_name}.climatological_period.climatological_period_id" + ), + nullable=False, + ), + Column("mod_time", DateTime, nullable=False), + Column("mod_user", String, nullable=False), schema=schema_name, ) op.create_table( - # TODO: Name? This is a recommended pattern but not the only such. - "meta_climatological_station_x_meta_history", + "climatological_station_x_meta_history", Column( "climatological_station_id", Integer, ForeignKey( - f"{schema_name}.meta_climatological_station.climatological_station_id" + f"{schema_name}.climatological_station.climatological_station_id" ), primary_key=True, ), @@ -80,6 +103,9 @@ def upgrade(): ForeignKey(f"{schema_name}.meta_history.history_id"), primary_key=True, ), + Column("role", Enum("base", "joint", name="climatological_station_role_enum"), nullable=False), + Column("mod_time", DateTime, nullable=False), + Column("mod_user", String, nullable=False), schema=schema_name, ) @@ -92,50 +118,51 @@ def upgrade(): # prevent entry of erroneous values that just happen to be very long?) # # - None are nullable. In contrast, most in the model tables are. - "meta_climatological_variable", + "climatological_variable", Column("climatological_variable_id", Integer, primary_key=True), - # TODO: Duration can be computed from climatology_bounds. Do this with a provided - # function or store in separate column (this one)? - # In either case, represent value as an enumeration type? - Column("duration", String, nullable=False), - # climatology_bounds corresponds to the attribute of the same name defined in - # CF Metadata Standards, 7.4 Climatological Statistics - Column("climatology_bounds", ARRAY(String, dimensions=2), nullable=False), - Column("num_years", Integer, nullable=False), + Column( + "duration", Enum("annual", "seasonal", "monthly", name="climatology_duration_enum"), nullable=False + ), Column("unit", String, nullable=False), - Column("precision", String, nullable=False), # Type? Utility??? Column("standard_name", String, nullable=False), Column("display_name", String, nullable=False), Column("short_name", String, nullable=False), Column("cell_methods", String, nullable=False), - Column("net_var_name", CIText(), nullable=False), + Column("net_var_name", CITEXT(), nullable=False), + Column("mod_time", DateTime, nullable=False), + Column("mod_user", String, nullable=False), schema=schema_name, ) op.create_table( - # TODO: Columns in this table parallel those in obs_raw. - # They differ in the following ways, which may be questioned: - # - # - None are nullable. In contrast, most in the model tables are. "climatological_value", Column("climatological_value_id", Integer, primary_key=True), - Column("mod_time", DateTime, nullable=False), - Column("datum_time", DateTime, nullable=False), - Column("datum", Float, nullable=False), + Column("value_time", DateTime, nullable=False), + Column("value", Float, nullable=False), Column("num_contributing_years", Integer, nullable=False), Column( "climatological_variable_id", Integer, ForeignKey( - f"{schema_name}.meta_climatological_variable.climatological_variable_id" + f"{schema_name}.climatological_variable.climatological_variable_id" + ), + ), + Column( + "climatological_station_id", + Integer, + ForeignKey( + f"{schema_name}.climatological_station.climatological_station_id" ), ), + Column("mod_time", DateTime, nullable=False), + Column("mod_user", String, nullable=False), schema=schema_name, ) def downgrade(): op.drop_table("climatological_value", schema=schema_name) - op.drop_table("meta_climatological_variable", schema=schema_name) - op.drop_table("meta_climatological_station_x_meta_history", schema=schema_name) - op.drop_table("meta_climatological_station", schema=schema_name) + op.drop_table("climatological_variable", schema=schema_name) + op.drop_table("climatological_station_x_meta_history", schema=schema_name) + op.drop_table("climatological_station", schema=schema_name) + op.drop_table("climatological_period", schema=schema_name) diff --git a/pycds/alembic/versions/7a3b247c577b_add_varsperhistory_native_matview.py b/pycds/alembic/versions/7a3b247c577b_add_varsperhistory_native_matview.py index 1f31f40c..972838f1 100644 --- a/pycds/alembic/versions/7a3b247c577b_add_varsperhistory_native_matview.py +++ b/pycds/alembic/versions/7a3b247c577b_add_varsperhistory_native_matview.py @@ -35,19 +35,6 @@ schema_name = get_schema_name() -def drop_dependent_objects(): - """ - Drop dependent objects that may exist in the database. - This is necessary to ensure that the upgrade can proceed without conflicts. - """ - op.drop_table_if_exists("collapsed_vars_mv", schema=schema_name) - -def create_dependent_objects(): - """ - Create dependent objects that are required for the upgrade. - This is necessary to ensure that the upgrade can proceed without conflicts. - """ - create_matview(CollapsedVariables, schema=schema_name) def drop_dependent_objects(): @@ -57,7 +44,7 @@ def drop_dependent_objects(): """ drop_view(CrmpNetworkGeoserver, schema=schema_name) drop_view(CollapsedVariablesView, schema=schema_name) - op.drop_table_if_exists(CollapsedVariables.__tablename__, schema=schema_name) + op.drop_table(CollapsedVariables.__tablename__, schema=schema_name, if_exists=True) def create_dependent_objects(): @@ -89,7 +76,7 @@ def upgrade(): if db_supports_matviews(conn): logger.debug("This database supports native materialized views") drop_dependent_objects() - op.drop_table_if_exists("vars_per_history_mv", schema=schema_name) + op.drop_table("vars_per_history_mv", schema=schema_name, if_exists=True) logger.debug(f"tables: {inspector.get_table_names(schema=schema_name)}") create_matview(VarsPerHistory, schema=schema_name) create_dependent_objects() diff --git a/pycds/alembic/versions/fecff1a73d7e_update_matview_collapsed_vars_mv.py b/pycds/alembic/versions/fecff1a73d7e_update_matview_collapsed_vars_mv.py index ff543613..5863c56b 100644 --- a/pycds/alembic/versions/fecff1a73d7e_update_matview_collapsed_vars_mv.py +++ b/pycds/alembic/versions/fecff1a73d7e_update_matview_collapsed_vars_mv.py @@ -34,6 +34,7 @@ def drop_dependent_objects(): drop_view(CrmpNetworkGeoserver, schema=schema_name) + def create_dependent_objects(): create_view(CrmpNetworkGeoserver, schema=schema_name) diff --git a/pycds/orm/tables.py b/pycds/orm/tables.py index cb8c2280..b070c8db 100644 --- a/pycds/orm/tables.py +++ b/pycds/orm/tables.py @@ -29,10 +29,11 @@ String, Date, Index, + Enum ) from sqlalchemy import DateTime, Boolean, ForeignKey, Numeric, Interval from sqlalchemy.dialects.postgresql import ARRAY -from sqlalchemy.orm import relationship, synonym, declarative_base +from sqlalchemy.orm import relationship, synonym, declarative_base, mapped_column from sqlalchemy.schema import UniqueConstraint from sqlalchemy.schema import CheckConstraint from geoalchemy2 import Geometry @@ -610,6 +611,13 @@ class DerivedValue(Base): ) +class ClimatologicalPeriod(Base): + __tablename__ = "climatological_period" + climatological_period_id = Column(Integer, primary_key=True) + start_date = Column(DateTime, nullable=False) + end_date = Column(DateTime, nullable=False) + + class ClimatologicalStation(Base): # TODO: Columns in this table parallel those in meta_station and meta_history. # They differ in the following ways, which may be questioned: @@ -619,25 +627,19 @@ class ClimatologicalStation(Base): # prevent entry of erroneous values that just happen to be very long?) # # - None are nullable. In contrast, most in the model tables are. - __tablename__ = "meta_climatological_station" - + __tablename__ = "climatological_station" climatological_station_id = Column(Integer, primary_key=True) - station_type = Column(String, nullable=False) # TODO: Use Enumeration type? - basin_id = Column(Integer, nullable=False) # TODO: Same as basin id in SCIP? - station_name = Column(String, nullable=False) - province = Column(String, nullable=False) - country = Column(String, nullable=False) - tz_offset = Column(Interval, nullable=False) + type = Column(Enum("long-record", "composite", "prism", name="climatological_station_type_enum"), nullable=False) + basin_id = Column(Integer, nullable=True) comments = Column(String, nullable=False) - location = Column(Geometry("GEOMETRY", 4326)) pass class ClimatologicalStationXHistory(Base): - __tablename__ = "meta_climatological_station_x_meta_history" + __tablename__ = "climatological_station_x_meta_history" climatological_station_id = Column( Integer, - ForeignKey("meta_climatological_station.climatological_station_id"), + ForeignKey("climatological_station.climatological_station_id"), primary_key=True, ) history_id = Column( @@ -645,6 +647,7 @@ class ClimatologicalStationXHistory(Base): ForeignKey("meta_history.history_id"), primary_key=True, ) + role = Column(Enum("base", "joint", name="climatological_station_role_enum"), nullable=False) class ClimatologicalVariable(Base): @@ -656,36 +659,29 @@ class ClimatologicalVariable(Base): # prevent entry of erroneous values that just happen to be very long?) # # - None are nullable. In contrast, most in the model tables are. - __tablename__ = "meta_climatological_variable" - + __tablename__ = "climatological_variable" + climatological_variable_id = Column(Integer, primary_key=True) - # TODO: Duration can be computed from climatology_bounds. Do this with a provided - # function or store in separate column (this one)? - # In either case, represent value as an enumeration type? - duration = Column(String, nullable=False) # Use enumeration type? - # climatology_bounds corresponds to the attribute of the same name defined in - # CF Metadata Standards, 7.4 Climatological Statistics - climatology_bounds = Column(ARRAY(String, dimensions=2), nullable=False) - num_years = Column(Integer, nullable=False) + duration = mapped_column(Enum("annual", "seasonal", "monthly", name="climatology_duration_enum"), nullable=False) unit = Column(String, nullable=False) - precision = Column(String, nullable=False) # Type? Utility??? standard_name = Column(String, nullable=False) display_name = Column(String, nullable=False) short_name = Column(String, nullable=False) cell_methods = Column(String, nullable=False) - net_var_name = Column(CIText(), nullable=False) + net_var_name = Column(CIText(), nullable=True) class ClimatologicalValue(Base): - # TODO: Columns in this table parallel those in obs_raw. - # They differ in the following ways, which may be questioned: - # - # - None are nullable. In contrast, most in the model tables are. __tablename__ = "climatological_value" climatological_value_id = Column(Integer, primary_key=True) - mod_time = Column(DateTime, nullable=False) - datum_time = Column(DateTime, nullable=False) - datum = Column(Float, nullable=False) + value_time = Column(DateTime, nullable=False) + value = Column(Float, nullable=False) num_contributing_years = Column(Integer, nullable=False) - climatological_variable_id = Column(Integer, ForeignKey("meta_climatological_value.climatological_value_id")) + climatological_variable_id = Column( + Integer, ForeignKey("climatological_variable.climatological_variable_id") + ) + climatological_station_id = Column( + Integer, ForeignKey("climatological_station.climatological_station_id") + ) + mod_time = Column(DateTime, nullable=False) diff --git a/pycds/orm/views/version_22819129a609.py b/pycds/orm/views/version_22819129a609.py index 31ce9c76..177224ae 100644 --- a/pycds/orm/views/version_22819129a609.py +++ b/pycds/orm/views/version_22819129a609.py @@ -36,4 +36,4 @@ class CollapsedVariables(Base, ReplaceableView): __selectable__ = CollapsedVariablesMatview.__selectable__ -Index("collapsed_vars_idx", CollapsedVariables.history_id) \ No newline at end of file +Index("collapsed_vars_idx", CollapsedVariables.history_id) diff --git a/tests/alembic/replaceable_objects/conftest.py b/tests/alembic/replaceable_objects/conftest.py index e3b5b79a..d9c56e48 100644 --- a/tests/alembic/replaceable_objects/conftest.py +++ b/tests/alembic/replaceable_objects/conftest.py @@ -17,6 +17,7 @@ ThingCountManualMatview, ) + @fixture def tst_orm_engine(base_engine): """Database engine with test content created in it.""" diff --git a/tests/alembic_migrations/helpers.py b/tests/alembic_migrations/helpers.py index 4fdf9014..8b689e0d 100644 --- a/tests/alembic_migrations/helpers.py +++ b/tests/alembic_migrations/helpers.py @@ -56,17 +56,18 @@ def check_triggers(connection, table, expected, present=True): assert item not in triggers -def check_orm_actual_tables_match(engine, orm_table, schema_name=get_schema_name()): +def check_orm_actual_tables_match(conn, orm_table, schema_name=get_schema_name()): """Check that table defined in ORM matches the actual table in the database. This method is useful in smoke tests.""" # Check actual table existence - names = set(get_schema_item_names(engine, "tables", schema_name=schema_name)) + names = set(get_schema_item_names(conn, "tables", schema_name=schema_name)) assert orm_table.__tablename__ in names # Reflect table - metadata = MetaData(schema=schema_name, bind=engine) - actual_table = Table(orm_table.__tablename__, metadata, autoload_with=engine) + metadata = MetaData(schema=schema_name) + metadata.reflect(bind=conn) + actual_table = Table(orm_table.__tablename__, metadata, autoload_with=conn) # Check that table columns match def type_match(class1, class2): @@ -79,6 +80,7 @@ def type_match(class1, class2): ) # This checks column order as well as type. + # It is sensitive to order as we're zipping the two lists together. for actual_col, orm_col in zip(actual_table.columns, orm_table.__table__.columns): assert actual_col.name == orm_col.name # print( diff --git a/tests/alembic_migrations/test_migrations.py b/tests/alembic_migrations/test_migrations.py index 5aa4a0d1..54c39a11 100644 --- a/tests/alembic_migrations/test_migrations.py +++ b/tests/alembic_migrations/test_migrations.py @@ -70,6 +70,9 @@ def test_model_and_migration_schemas_are_the_same( alembic_runner.migrate_up_to("head") prepare_schema_from_models(uri_right, Base, db_setup=db_setup) - result = compare(alembic_engine.url, uri_right) + result = compare(alembic_engine.url, uri_right, ignores=[ + '*.enum.climatological_station_type_enum', + '*.enum.climatology_duration_enum', + '*.enum.climatological_station_role_enum']) assert result.is_match diff --git a/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py b/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py index 07144e48..2ec0197c 100644 --- a/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py +++ b/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py @@ -8,18 +8,20 @@ from sqlalchemy.types import TIMESTAMP, VARCHAR, BOOLEAN, INTEGER from pycds import ( + ClimatologicalPeriod, ClimatologicalStation, ClimatologicalStationXHistory, ClimatologicalVariable, ClimatologicalValue, ) -from pycds.alembic.change_history_utils import pri_table_name, hx_table_name, hx_id_name +from pycds.alembic.change_history_utils import hx_table_name, hx_id_name from pycds.database import get_schema_item_names from tests.alembic_migrations.helpers import check_orm_actual_tables_match logger = logging.getLogger("tests") orm_tables = ( + ClimatologicalPeriod, ClimatologicalStation, ClimatologicalStationXHistory, ClimatologicalVariable, @@ -30,84 +32,29 @@ @pytest.mark.usefixtures("new_db_left") @pytest.mark.parametrize("orm_table", orm_tables) def test_upgrade( - orm_table, prepared_schema_from_migrations_left, alembic_config_left, schema_name + orm_table, alembic_engine, alembic_runner, schema_name ): """Test the schema migration to 758be4f4ce0f.""" - # Set up database to target version (758be4f4ce0f) - engine, script = prepared_schema_from_migrations_left + alembic_runner.migrate_up_to("758be4f4ce0f") - # Check that table has been created as expected. - check_orm_actual_tables_match(engine, orm_table, schema_name=schema_name) + with alembic_engine.connect() as conn: + # Check that table has been created as expected. + check_orm_actual_tables_match(conn, orm_table, schema_name=schema_name) @pytest.mark.usefixtures("new_db_left") @pytest.mark.parametrize("table", orm_tables) def test_downgrade( - table, prepared_schema_from_migrations_left, alembic_config_left, schema_name + table, alembic_engine, alembic_runner, schema_name ): """Test the schema migration from a59d64cf16ca to previous rev.""" - # Set up database to current version - engine, script = prepared_schema_from_migrations_left + # Set up database to current version, then back off one + alembic_runner.migrate_up_to("758be4f4ce0f") + alembic_runner.migrate_down_one() - # Run downgrade migration - command.downgrade(alembic_config_left, "-1") - - # Check that tables have been dropped as expected. - names = set(get_schema_item_names(engine, "tables", schema_name=schema_name)) - assert table.__tablename__ not in names -"""Smoke tests""" - -# -*- coding: utf-8 -*- -import logging -import pytest -from alembic import command -from sqlalchemy import Table, MetaData, text -from sqlalchemy.types import TIMESTAMP, VARCHAR, BOOLEAN, INTEGER - -from pycds import ClimatologicalStation, ClimatologicalStationXHistory, ClimatologicalVariable, ClimatologicalValue -from pycds.alembic.change_history_utils import pri_table_name, hx_table_name, hx_id_name -from pycds.database import get_schema_item_names -from tests.alembic_migrations.helpers import check_orm_actual_tables_match - -logger = logging.getLogger("tests") - -orm_tables = ( - ClimatologicalStation, - ClimatologicalStationXHistory, - ClimatologicalVariable, - ClimatologicalValue, -) - - -@pytest.mark.usefixtures("new_db_left") -@pytest.mark.parametrize("orm_table", orm_tables) -def test_upgrade( - orm_table, prepared_schema_from_migrations_left, alembic_config_left, schema_name -): - """Test the schema migration to 758be4f4ce0f.""" - - # Set up database to target version (758be4f4ce0f) - engine, script = prepared_schema_from_migrations_left - - # Check that table has been created as expected. - check_orm_actual_tables_match(engine, orm_table, schema_name=schema_name) - - -@pytest.mark.usefixtures("new_db_left") -@pytest.mark.parametrize("table", orm_tables) -def test_downgrade( - table, prepared_schema_from_migrations_left, alembic_config_left, schema_name -): - """Test the schema migration from a59d64cf16ca to previous rev.""" - - # Set up database to current version - engine, script = prepared_schema_from_migrations_left - - # Run downgrade migration - command.downgrade(alembic_config_left, "-1") - - # Check that tables have been dropped as expected. - names = set(get_schema_item_names(engine, "tables", schema_name=schema_name)) - assert table.__tablename__ not in names + with alembic_engine.connect() as conn: + # Check that columns have been dropped as expected. + names = set(get_schema_item_names(conn, "tables", schema_name=schema_name)) + assert table.__tablename__ not in names diff --git a/tests/alembic_migrations/versions/v_a59d64cf16ca_add_hx_tkg_to_main_metadata_tables/test_on_real_tables/test_on_real_tables.py b/tests/alembic_migrations/versions/v_a59d64cf16ca_add_hx_tkg_to_main_metadata_tables/test_on_real_tables/test_on_real_tables.py index 6b4a7822..2120fe3d 100644 --- a/tests/alembic_migrations/versions/v_a59d64cf16ca_add_hx_tkg_to_main_metadata_tables/test_on_real_tables/test_on_real_tables.py +++ b/tests/alembic_migrations/versions/v_a59d64cf16ca_add_hx_tkg_to_main_metadata_tables/test_on_real_tables/test_on_real_tables.py @@ -40,6 +40,7 @@ schema_name = get_schema_name() + @pytest.mark.parametrize( "primary, history, primary_id, columns, foreign_tables, insert_info, update_info, delete_info", [ diff --git a/tests/basics/test_db_fixture.py b/tests/basics/test_db_fixture.py index ee662025..33b62eab 100644 --- a/tests/basics/test_db_fixture.py +++ b/tests/basics/test_db_fixture.py @@ -1,5 +1,6 @@ from sqlalchemy import text + def test_can_create_postgis_db(empty_sesh): res = empty_sesh.execute(text("SELECT PostGIS_full_version()")) version = res.fetchall()[0][0] From 3795a78ad77f2ecda4cdc1efbf00c3c759210605 Mon Sep 17 00:00:00 2001 From: John Date: Tue, 16 Sep 2025 23:24:32 +0000 Subject: [PATCH 15/21] update enum code --- poetry.lock | 28 +++++++++++++++---- pycds/alembic/env.py | 1 + ...support_multiple_climatological_normals.py | 24 ++++++++-------- pyproject.toml | 3 +- tests/alembic_migrations/test_migrations.py | 2 ++ 5 files changed, 40 insertions(+), 18 deletions(-) diff --git a/poetry.lock b/poetry.lock index 42bd7963..c3f0aab7 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 2.0.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 2.1.3 and should not be changed by hand. [[package]] name = "alembic" @@ -21,6 +21,22 @@ typing-extensions = ">=4.12" [package.extras] tz = ["tzdata"] +[[package]] +name = "alembic-postgresql-enum" +version = "1.8.0" +description = "Alembic autogenerate support for creation, alteration and deletion of enums" +optional = false +python-versions = "<4.0,>=3.7" +groups = ["main"] +files = [ + {file = "alembic_postgresql_enum-1.8.0-py3-none-any.whl", hash = "sha256:0e62833f8d1aca2c58fa09cae1d4a52472fb32d2dde32b68c84515fffcf401d5"}, + {file = "alembic_postgresql_enum-1.8.0.tar.gz", hash = "sha256:132cd5fdc4a2a0b6498f3d89ea1c7b2a5ddc3281ddd84edae7259ec4c0a215a0"}, +] + +[package.dependencies] +alembic = ">=1.7" +SQLAlchemy = ">=1.4" + [[package]] name = "alembic-verify" version = "0.1.4" @@ -597,9 +613,9 @@ files = [ ] [package.extras] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.text (>=3.7)", "more-itertools (>=8.8)", "ordered-set (>=3.1.1)", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6) ; python_version < \"3.10\"", "importlib-resources (>=5.10.2) ; python_version < \"3.9\"", "jaraco.text (>=3.7)", "more-itertools (>=8.8)", "ordered-set (>=3.1.1)", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1) ; python_version < \"3.11\"", "wheel (>=0.43.0)"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "mypy (==1.11.*)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy", "pytest-perf", "pytest-ruff (<0.4)", "pytest-ruff (>=0.2.1)", "pytest-ruff (>=0.3.2)", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21) ; python_version >= \"3.9\" and sys_platform != \"cygwin\"", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "mypy (==1.11.*)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy", "pytest-perf ; sys_platform != \"cygwin\"", "pytest-ruff (<0.4) ; platform_system == \"Windows\"", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\"", "pytest-ruff (>=0.3.2) ; sys_platform != \"cygwin\"", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] [[package]] name = "six" @@ -755,8 +771,8 @@ intervals = ["intervals (>=0.7.1)"] password = ["passlib (>=1.6,<2.0)"] pendulum = ["pendulum (>=2.0.5)"] phone = ["phonenumbers (>=5.9.2)"] -test = ["Jinja2 (>=2.3)", "Pygments (>=1.2)", "backports.zoneinfo", "docutils (>=0.10)", "flake8 (>=2.4.0)", "flexmock (>=0.9.7)", "isort (>=4.2.2)", "pg8000 (>=1.12.4)", "psycopg (>=3.1.8)", "psycopg2 (>=2.5.1)", "psycopg2cffi (>=2.8.1)", "pymysql", "pyodbc", "pytest (==7.4.4)", "python-dateutil (>=2.6)", "pytz (>=2014.2)"] -test-all = ["Babel (>=1.3)", "Jinja2 (>=2.3)", "Pygments (>=1.2)", "arrow (>=0.3.4)", "backports.zoneinfo", "colour (>=0.0.4)", "cryptography (>=0.6)", "docutils (>=0.10)", "flake8 (>=2.4.0)", "flexmock (>=0.9.7)", "furl (>=0.4.1)", "intervals (>=0.7.1)", "isort (>=4.2.2)", "passlib (>=1.6,<2.0)", "pendulum (>=2.0.5)", "pg8000 (>=1.12.4)", "phonenumbers (>=5.9.2)", "psycopg (>=3.1.8)", "psycopg2 (>=2.5.1)", "psycopg2cffi (>=2.8.1)", "pymysql", "pyodbc", "pytest (==7.4.4)", "python-dateutil", "python-dateutil (>=2.6)", "pytz (>=2014.2)"] +test = ["Jinja2 (>=2.3)", "Pygments (>=1.2)", "backports.zoneinfo ; python_version < \"3.9\"", "docutils (>=0.10)", "flake8 (>=2.4.0)", "flexmock (>=0.9.7)", "isort (>=4.2.2)", "pg8000 (>=1.12.4)", "psycopg (>=3.1.8)", "psycopg2 (>=2.5.1)", "psycopg2cffi (>=2.8.1)", "pymysql", "pyodbc", "pytest (==7.4.4)", "python-dateutil (>=2.6)", "pytz (>=2014.2)"] +test-all = ["Babel (>=1.3)", "Jinja2 (>=2.3)", "Pygments (>=1.2)", "arrow (>=0.3.4)", "backports.zoneinfo ; python_version < \"3.9\"", "colour (>=0.0.4)", "cryptography (>=0.6)", "docutils (>=0.10)", "flake8 (>=2.4.0)", "flexmock (>=0.9.7)", "furl (>=0.4.1)", "intervals (>=0.7.1)", "isort (>=4.2.2)", "passlib (>=1.6,<2.0)", "pendulum (>=2.0.5)", "pg8000 (>=1.12.4)", "phonenumbers (>=5.9.2)", "psycopg (>=3.1.8)", "psycopg2 (>=2.5.1)", "psycopg2cffi (>=2.8.1)", "pymysql", "pyodbc", "pytest (==7.4.4)", "python-dateutil", "python-dateutil (>=2.6)", "pytz (>=2014.2)"] timezone = ["python-dateutil"] url = ["furl (>=0.4.1)"] @@ -857,4 +873,4 @@ dev = ["alembic-verify", "black", "pytest", "pytest-describe", "pytest-mock", "s [metadata] lock-version = "2.1" python-versions = ">=3.9,<3.14" -content-hash = "7e900ef3b317d99e18eff6fb25cb82888d9576197109050f1c81eb92ddec44fa" +content-hash = "daefdda8fd1c0d6a9b157637986558a77e4e530eaeec2f67b8c08c35375ebac2" diff --git a/pycds/alembic/env.py b/pycds/alembic/env.py index 6515d426..e8bc796e 100644 --- a/pycds/alembic/env.py +++ b/pycds/alembic/env.py @@ -38,6 +38,7 @@ # Now to test if it works when crmp contains an upgraded schema and other # does not. This works. +import alembic_postgresql_enum from alembic import context from sqlalchemy import engine_from_config, pool from logging.config import fileConfig diff --git a/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py b/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py index dc1e0026..2d54db51 100644 --- a/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py +++ b/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py @@ -19,7 +19,7 @@ DateTime, Float, ) -from sqlalchemy.dialects.postgresql import CITEXT +from sqlalchemy.dialects.postgresql import CITEXT, ENUM as PG_ENUM from pycds import get_schema_name @@ -39,13 +39,6 @@ # added to the database. That could be done in this migration or in a separate subsequent # migration. -def climatological_station_type(): - return Enum( - "long-record", "composite", "prism", - name="climatological_station_type_enum", - schema=schema_name, - ) - def upgrade(): op.create_table( @@ -58,6 +51,8 @@ def upgrade(): schema=schema_name, ) + Enum("long-record", "composite", "prism", name="climatological_station_type_enum").create(op.get_bind()) + op.create_table( # TODO: Columns in this table parallel those in meta_station and meta_history. # They differ in the following ways, which may be questioned: @@ -70,7 +65,7 @@ def upgrade(): "climatological_station", # TODO: Revise name? Column("climatological_station_id", Integer, primary_key=True), Column( - "type", Enum("long-record", "composite", "prism", name="climatological_station_type_enum"), nullable=False + "type", PG_ENUM("long-record", "composite", "prism", name="climatological_station_type_enum", create_type=False), nullable=False ), Column("basin_id", Integer, nullable=True), Column("comments", String, nullable=False), @@ -87,6 +82,8 @@ def upgrade(): schema=schema_name, ) + Enum("base", "joint", name="climatological_station_role_enum").create(op.get_bind()) + op.create_table( "climatological_station_x_meta_history", Column( @@ -103,12 +100,14 @@ def upgrade(): ForeignKey(f"{schema_name}.meta_history.history_id"), primary_key=True, ), - Column("role", Enum("base", "joint", name="climatological_station_role_enum"), nullable=False), + Column("role", PG_ENUM("base", "joint", name="climatological_station_role_enum", create_type=False), nullable=False), Column("mod_time", DateTime, nullable=False), Column("mod_user", String, nullable=False), schema=schema_name, ) + Enum("annual", "seasonal", "monthly", name="climatology_duration_enum").create(op.get_bind()) + op.create_table( # TODO: Columns in this table parallel those in meta_vars. # They differ in the following ways, which may be questioned: @@ -121,7 +120,7 @@ def upgrade(): "climatological_variable", Column("climatological_variable_id", Integer, primary_key=True), Column( - "duration", Enum("annual", "seasonal", "monthly", name="climatology_duration_enum"), nullable=False + "duration", PG_ENUM("annual", "seasonal", "monthly", name="climatology_duration_enum", create_type=False), nullable=False ), Column("unit", String, nullable=False), Column("standard_name", String, nullable=False), @@ -163,6 +162,9 @@ def upgrade(): def downgrade(): op.drop_table("climatological_value", schema=schema_name) op.drop_table("climatological_variable", schema=schema_name) + Enum("annual", "seasonal", "monthly", name="climatology_duration_enum").drop(op.get_bind()) op.drop_table("climatological_station_x_meta_history", schema=schema_name) + Enum("base", "joint", name="climatological_station_role_enum").drop(op.get_bind()) op.drop_table("climatological_station", schema=schema_name) + Enum("long-record", "composite", "prism", name="climatological_station_type_enum").drop(op.get_bind()) op.drop_table("climatological_period", schema=schema_name) diff --git a/pyproject.toml b/pyproject.toml index 8b62b2d3..76aa7951 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,8 @@ dependencies = [ "geoalchemy2>=0.13.3,<1.0.0", "psycopg2>=2.9.6,<3.0.0", "black>=25.1.0,<26.0.0", - "pytest-alembic (>=0.12.0,<0.13.0)" + "pytest-alembic (>=0.12.0,<0.13.0)", + "alembic-postgresql-enum (>=1.8.0,<2.0.0)" ] [project.optional-dependencies] diff --git a/tests/alembic_migrations/test_migrations.py b/tests/alembic_migrations/test_migrations.py index 54c39a11..77ad02de 100644 --- a/tests/alembic_migrations/test_migrations.py +++ b/tests/alembic_migrations/test_migrations.py @@ -70,6 +70,8 @@ def test_model_and_migration_schemas_are_the_same( alembic_runner.migrate_up_to("head") prepare_schema_from_models(uri_right, Base, db_setup=db_setup) + # Currently ignoring these ENUMs, despite directly creating them they don't seem + # to be seen as available in the migrations version of the database. result = compare(alembic_engine.url, uri_right, ignores=[ '*.enum.climatological_station_type_enum', '*.enum.climatology_duration_enum', From 1b676435f65f1f218e8580558afb39fa1698e6fd Mon Sep 17 00:00:00 2001 From: John Date: Fri, 26 Sep 2025 16:49:03 +0000 Subject: [PATCH 16/21] Add Hx tracking to climo tables, adjust functions as needed to support join tables (combined keys) --- pycds/__init__.py | 8 + pycds/alembic/change_history_utils.py | 31 +- ...pply_hx_tracking_to_multi_climo_normals.py | 72 + ...support_multiple_climatological_normals.py | 76 +- pycds/data/crmp_subset_data.sql | 2719 --------- pycds/data/data_758be4f4ce0f.sql | 23 + pycds/data/data_base.sql | 5358 +++++++++++++++++ pycds/database.py | 2 +- pycds/orm/tables.py | 107 +- pytest.ini | 3 - tests/alembic_migrations/helpers.py | 9 +- .../test_check_migration_version.py | 2 +- tests/alembic_migrations/test_migrations.py | 4 +- .../__init__.py | 0 .../test_on_real_tables/conftest.py | 8 + .../test_on_real_tables.py | 205 + .../test_smoke.py | 58 + .../test_on_real_tables.py | 2 +- .../test_on_real_tables.py | 6 +- tests/basics/test_testdb.py | 4 +- tests/db_helpers/data_dbs.py | 4 +- tests/db_helpers/db.py | 2 +- tests/helpers.py | 26 +- 23 files changed, 5915 insertions(+), 2814 deletions(-) create mode 100644 pycds/alembic/versions/7244176be9fa_apply_hx_tracking_to_multi_climo_normals.py delete mode 100644 pycds/data/crmp_subset_data.sql create mode 100644 pycds/data/data_758be4f4ce0f.sql create mode 100644 pycds/data/data_base.sql delete mode 100644 pytest.ini create mode 100644 tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/__init__.py create mode 100644 tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_on_real_tables/conftest.py create mode 100644 tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_on_real_tables/test_on_real_tables.py create mode 100644 tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_smoke.py diff --git a/pycds/__init__.py b/pycds/__init__.py index b36a421f..1430f891 100644 --- a/pycds/__init__.py +++ b/pycds/__init__.py @@ -70,10 +70,14 @@ "ObsCountPerDayHistory", "ObsWithFlags", "ClimatologicalPeriod", + "ClimatologicalPeriodHistory", "ClimatologicalStation", + "ClimatologicalStationHistory", "ClimatologicalStationXHistory", "ClimatologicalVariable", + "ClimatologicalVariableHistory", "ClimatologicalValue", + "ClimatologicalValueHistory", ] from pycds.context import get_schema_name, get_su_role_name @@ -100,10 +104,14 @@ PCICFlag, DerivedValue, ClimatologicalPeriod, + ClimatologicalPeriodHistory, ClimatologicalStation, + ClimatologicalStationHistory, ClimatologicalStationXHistory, ClimatologicalVariable, + ClimatologicalVariableHistory, ClimatologicalValue, + ClimatologicalValueHistory, ) from .orm.views import ( diff --git a/pycds/alembic/change_history_utils.py b/pycds/alembic/change_history_utils.py index 334c5437..0db2d0d6 100644 --- a/pycds/alembic/change_history_utils.py +++ b/pycds/alembic/change_history_utils.py @@ -63,7 +63,7 @@ def drop_history_cols_from_primary( op.execute(f"ALTER TABLE {main_table_name(collection_name)} {drop_columns}") -def create_history_table(collection_name: str, foreign_tables: list[tuple[str, str]]): +def create_history_table(collection_name: str, foreign_tables: list[tuple[str, str]] | None): # Create the history table. We can't use Alembic create_table here because it doesn't # support the LIKE syntax we need. columns = ", ".join( @@ -89,8 +89,8 @@ def drop_history_table(collection_name: str): def create_history_table_indexes( collection_name: str, - pri_id_name: str, - foreign_tables: list[tuple[str, str]], + pri_id_name: list[str] | str, + foreign_tables: Iterable[tuple[str, str]] | None, extras=None, ): """ @@ -98,9 +98,14 @@ def create_history_table_indexes( see https://github.com/pacificclimate/pycds/issues/228 """ + if isinstance(pri_id_name, str): + pri_id_name = [pri_id_name] + + seen = [] + for columns in ( # Index on primary table primary key, mod_time, mod_user - ([pri_id_name], ["mod_time"], ["mod_user"]) + tuple([x] for x in pri_id_name) + (["mod_time"], ["mod_user"]) # Index on all foreign main table primary keys + tuple([ft_pk_name] for _, ft_pk_name in (foreign_tables or tuple())) # Index on all foreign history table primary keys @@ -110,6 +115,9 @@ def create_history_table_indexes( ) + (extras or tuple()) ): + if columns in seen: + continue + seen.append(columns) # How much do we care about index naming? SQLAlchemy uses a different pattern than # appears typical in CRMP. op.create_index( @@ -122,8 +130,8 @@ def create_history_table_indexes( def populate_history_table( collection_name: str, - pri_id_name: str, - foreign_tables: list[tuple[str, str]], + pri_id_name: list[str] | str, + foreign_tables: list[tuple[str, str]] | None, limit: int | None = None, ): """ @@ -140,7 +148,7 @@ def populate_history_table( # foreign table definitions: the CTE names, the CTE definitions, and their usages # within the query that populates the target history table. - foreign_tables = foreign_tables or tuple() + foreign_tables = foreign_tables or [] conditional_comma = "," if len(foreign_tables) > 0 else "" @@ -173,6 +181,11 @@ def populate_history_table( else "" ) + if isinstance(pri_id_name, str): + pri_id_name = [pri_id_name] + + pri_order_clause = ", ".join(f"main.{idn}" for idn in pri_id_name) + stmt = f""" {"WITH" if len(foreign_tables) > 0 else ""} {ft_cte_list} @@ -183,7 +196,7 @@ def populate_history_table( FROM {main_table_name(collection_name)} main {conditional_comma} {ft_cte_name_list} {ft_where_clause} - ORDER BY main.{pri_id_name} + ORDER BY {pri_order_clause} """ op.execute(stmt) @@ -209,7 +222,7 @@ def create_primary_table_triggers(collection_name: str, prefix: str = "t100_"): def create_history_table_triggers( - collection_name: str, foreign_tables: list, prefix: str = "t100_" + collection_name: str, foreign_tables: list | None, prefix: str = "t100_" ): # Trigger: Add foreign key values to each record inserted into history table. ft_args = ( diff --git a/pycds/alembic/versions/7244176be9fa_apply_hx_tracking_to_multi_climo_normals.py b/pycds/alembic/versions/7244176be9fa_apply_hx_tracking_to_multi_climo_normals.py new file mode 100644 index 00000000..ddad096f --- /dev/null +++ b/pycds/alembic/versions/7244176be9fa_apply_hx_tracking_to_multi_climo_normals.py @@ -0,0 +1,72 @@ +"""apply hx tracking to multi climo normals + +Revision ID: 7244176be9fa +Revises: 758be4f4ce0f +Create Date: 2025-09-23 16:15:58.236278 + +""" + +from alembic import op +import sqlalchemy as sa + +from pycds.alembic.util import grant_standard_table_privileges +from pycds.context import get_schema_name +from pycds.alembic.change_history_utils import ( + add_history_cols_to_primary, + create_history_table, + populate_history_table, + drop_history_triggers, + drop_history_table, + drop_history_cols_from_primary, + create_history_table_triggers, + create_primary_table_triggers, + create_history_table_indexes, +) + + +# revision identifiers, used by Alembic. +revision = "7244176be9fa" +down_revision = "758be4f4ce0f" +branch_labels = None +depends_on = None + + +schema_name = get_schema_name() + + +table_info = ( + # table_name, primary_key_name, foreign_keys, extra_indexes + ("climo_period", "climo_period_id", None, None), + ("climo_station", "climo_station_id", [("climo_period", "climo_period_id"), ], None), + ("climo_stn_x_hist", ["climo_station_id", "history_id"], [("climo_station", "climo_station_id"), ("meta_history", "history_id")], None), + ("climo_variable", "climo_variable_id", None, None), + ("climo_value", "climo_value_id", [("climo_variable", "climo_variable_id"), ("climo_station", "climo_station_id")], None), +) + +def upgrade(): + + # We have to set the search_path so that the trigger functions fired when + # the history table is populated can find the functions that they call. + op.get_bind().execute(sa.text(f"SET search_path TO {schema_name}, public")) + + for table_name, primary_key_name, foreign_tables, extra_indexes in table_info: + # Primary table + add_history_cols_to_primary(table_name) + create_primary_table_triggers(table_name) + + # History table + create_history_table(table_name, foreign_tables) + populate_history_table(table_name, primary_key_name, foreign_tables) + # History table triggers must be created after the table is populated. + create_history_table_triggers(table_name, foreign_tables) + create_history_table_indexes( + table_name, primary_key_name, foreign_tables, extra_indexes + ) + grant_standard_table_privileges(table_name, schema=schema_name) + + +def downgrade(): + for table_name, _, _, _ in reversed(table_info): + drop_history_triggers(table_name) + drop_history_table(table_name) + drop_history_cols_from_primary(table_name) diff --git a/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py b/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py index 2d54db51..a17cdda5 100644 --- a/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py +++ b/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py @@ -1,4 +1,4 @@ -"""Support multiple climatological normals +"""Support multiple climo normals Revision ID: 758be4f4ce0f Revises: 7ab87f8fbcf4 @@ -42,16 +42,14 @@ def upgrade(): op.create_table( - "climatological_period", - Column("climatological_period_id", Integer, primary_key=True), + "climo_period", + Column("climo_period_id", Integer, primary_key=True), Column("start_date", DateTime, nullable=False), Column("end_date", DateTime, nullable=False), - Column("mod_time", DateTime, nullable=False), - Column("mod_user", String, nullable=False), schema=schema_name, - ) + ) - Enum("long-record", "composite", "prism", name="climatological_station_type_enum").create(op.get_bind()) + Enum("long-record", "composite", "prism", name="climo_station_type_enum").create(op.get_bind()) op.create_table( # TODO: Columns in this table parallel those in meta_station and meta_history. @@ -62,35 +60,33 @@ def upgrade(): # prevent entry of erroneous values that just happen to be very long?) # # - None are nullable. In contrast, most in the model tables are. - "climatological_station", # TODO: Revise name? - Column("climatological_station_id", Integer, primary_key=True), + "climo_station", # TODO: Revise name? + Column("climo_station_id", Integer, primary_key=True), Column( - "type", PG_ENUM("long-record", "composite", "prism", name="climatological_station_type_enum", create_type=False), nullable=False + "type", PG_ENUM("long-record", "composite", "prism", name="climo_station_type_enum", create_type=False), nullable=False ), Column("basin_id", Integer, nullable=True), Column("comments", String, nullable=False), Column( - "climatological_period_id", + "climo_period_id", Integer, ForeignKey( - f"{schema_name}.climatological_period.climatological_period_id" + f"{schema_name}.climo_period.climo_period_id" ), nullable=False, ), - Column("mod_time", DateTime, nullable=False), - Column("mod_user", String, nullable=False), schema=schema_name, ) - Enum("base", "joint", name="climatological_station_role_enum").create(op.get_bind()) + Enum("base", "joint", name="climo_station_role_enum").create(op.get_bind()) op.create_table( - "climatological_station_x_meta_history", + "climo_stn_x_hist", Column( - "climatological_station_id", + "climo_station_id", Integer, ForeignKey( - f"{schema_name}.climatological_station.climatological_station_id" + f"{schema_name}.climo_station.climo_station_id" ), primary_key=True, ), @@ -100,13 +96,11 @@ def upgrade(): ForeignKey(f"{schema_name}.meta_history.history_id"), primary_key=True, ), - Column("role", PG_ENUM("base", "joint", name="climatological_station_role_enum", create_type=False), nullable=False), - Column("mod_time", DateTime, nullable=False), - Column("mod_user", String, nullable=False), + Column("role", PG_ENUM("base", "joint", name="climo_station_role_enum", create_type=False), nullable=False), schema=schema_name, ) - Enum("annual", "seasonal", "monthly", name="climatology_duration_enum").create(op.get_bind()) + Enum("annual", "seasonal", "monthly", name="climo_duration_enum").create(op.get_bind()) op.create_table( # TODO: Columns in this table parallel those in meta_vars. @@ -117,10 +111,10 @@ def upgrade(): # prevent entry of erroneous values that just happen to be very long?) # # - None are nullable. In contrast, most in the model tables are. - "climatological_variable", - Column("climatological_variable_id", Integer, primary_key=True), + "climo_variable", + Column("climo_variable_id", Integer, primary_key=True), Column( - "duration", PG_ENUM("annual", "seasonal", "monthly", name="climatology_duration_enum", create_type=False), nullable=False + "duration", PG_ENUM("annual", "seasonal", "monthly", name="climo_duration_enum", create_type=False), nullable=False ), Column("unit", String, nullable=False), Column("standard_name", String, nullable=False), @@ -128,43 +122,39 @@ def upgrade(): Column("short_name", String, nullable=False), Column("cell_methods", String, nullable=False), Column("net_var_name", CITEXT(), nullable=False), - Column("mod_time", DateTime, nullable=False), - Column("mod_user", String, nullable=False), schema=schema_name, ) op.create_table( - "climatological_value", - Column("climatological_value_id", Integer, primary_key=True), + "climo_value", + Column("climo_value_id", Integer, primary_key=True), Column("value_time", DateTime, nullable=False), Column("value", Float, nullable=False), Column("num_contributing_years", Integer, nullable=False), Column( - "climatological_variable_id", + "climo_variable_id", Integer, ForeignKey( - f"{schema_name}.climatological_variable.climatological_variable_id" + f"{schema_name}.climo_variable.climo_variable_id" ), ), Column( - "climatological_station_id", + "climo_station_id", Integer, ForeignKey( - f"{schema_name}.climatological_station.climatological_station_id" + f"{schema_name}.climo_station.climo_station_id" ), ), - Column("mod_time", DateTime, nullable=False), - Column("mod_user", String, nullable=False), schema=schema_name, ) def downgrade(): - op.drop_table("climatological_value", schema=schema_name) - op.drop_table("climatological_variable", schema=schema_name) - Enum("annual", "seasonal", "monthly", name="climatology_duration_enum").drop(op.get_bind()) - op.drop_table("climatological_station_x_meta_history", schema=schema_name) - Enum("base", "joint", name="climatological_station_role_enum").drop(op.get_bind()) - op.drop_table("climatological_station", schema=schema_name) - Enum("long-record", "composite", "prism", name="climatological_station_type_enum").drop(op.get_bind()) - op.drop_table("climatological_period", schema=schema_name) + op.drop_table("climo_value", schema=schema_name) + op.drop_table("climo_variable", schema=schema_name) + Enum("annual", "seasonal", "monthly", name="climo_duration_enum").drop(op.get_bind()) + op.drop_table("climo_stn_x_hist", schema=schema_name) + Enum("base", "joint", name="climo_station_role_enum").drop(op.get_bind()) + op.drop_table("climo_station", schema=schema_name) + Enum("long-record", "composite", "prism", name="climo_station_type_enum").drop(op.get_bind()) + op.drop_table("climo_period", schema=schema_name) diff --git a/pycds/data/crmp_subset_data.sql b/pycds/data/crmp_subset_data.sql deleted file mode 100644 index 4332a34b..00000000 --- a/pycds/data/crmp_subset_data.sql +++ /dev/null @@ -1,2719 +0,0 @@ --- --- PostgreSQL database dump --- - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SET check_function_bodies = false; -SET client_min_messages = warning; - - --- --- Data for Name: meta_network; Type: TABLE DATA; Schema: subset; Owner: - --- - -INSERT INTO meta_network (network_id, network_name, description, virtual, publish, col_hex, contact_id) VALUES (1, 'EC', 'Environment Canada (Canadian Daily Climate Data 2007)', NULL, true, '#FF0000', NULL); -INSERT INTO meta_network (network_id, network_name, description, virtual, publish, col_hex, contact_id) VALUES (5, 'BCH', 'BC Hydro', NULL, true, '#0010A5', NULL); -INSERT INTO meta_network (network_id, network_name, description, virtual, publish, col_hex, contact_id) VALUES (17, 'ARDA', 'Agricultural and Rural Development Act Network', NULL, true, '#5791D9', NULL); -INSERT INTO meta_network (network_id, network_name, description, virtual, publish, col_hex, contact_id) VALUES (19, 'EC_raw', 'Environment Canada (raw observations from "Climate Data Online")', NULL, true, '#FF0000', NULL); -INSERT INTO meta_network (network_id, network_name, description, virtual, publish, col_hex, contact_id) VALUES (12, 'FLNRO-WMB', 'BC Ministry of Forests, Lands, and Natural Resource Operations - Wild Fire Managment Branch', NULL, true, '#0C6600', NULL); -INSERT INTO meta_network (network_id, network_name, description, virtual, publish, col_hex, contact_id) VALUES (10, 'AGRI', 'BC Ministry of Agriculture', NULL, true, '#801899', NULL); -INSERT INTO meta_network (network_id, network_name, description, virtual, publish, col_hex, contact_id) VALUES (9, 'ENV-AQN', 'BC Ministry of Environment - Air Quality Network', NULL, true, '#B03060', NULL); -INSERT INTO meta_network (network_id, network_name, description, virtual, publish, col_hex, contact_id) VALUES (2, 'MoTIe', 'Ministry of Transportation and Infrastructure (electronic)', NULL, true, '#37ea00', NULL); -SELECT setval('meta_network_network_id_seq'::regclass, max(network_id)) FROM meta_network; - --- --- Data for Name: meta_station; Type: TABLE DATA; Schema: subset; Owner: - --- - -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (4137, 17, '109011', '1990-07-25 00:00:00', '1990-10-30 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (1213, 1, '1155236', '1972-06-21 00:00:00', '1978-03-31 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (2313, 12, '932', '2006-02-10 13:00:00', '2006-06-06 12:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (1313, 1, '1167276', '1979-11-06 00:00:00', '1994-10-31 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (5136, 17, '114081', '1969-06-27 00:00:00', '1971-03-30 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (5634, 17, '116155', '1971-05-28 00:00:00', '1973-10-26 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (5833, 17, '116609', '1973-06-04 00:00:00', '1975-10-01 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (3438, 17, '102037', '1973-07-18 00:00:00', '1978-11-20 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (2613, 9, 'M107005', '1994-11-21 16:00:00', '2009-06-30 23:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (1513, 10, 'de107', '2006-09-15 00:00:00', '2010-09-14 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (3937, 17, '107212', '1974-06-30 00:00:00', '1977-04-29 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (2673, 2, '15124', '1996-12-31 14:00:00', '2011-04-06 11:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (813, 1, '1097970', '1962-11-01 00:00:00', '1991-05-31 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (4836, 17, '112020', '1989-07-24 00:00:00', '1991-03-15 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (313, 1, '1195ABR', '1983-12-01 00:00:00', '1984-01-31 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (4437, 17, '109522', '1969-06-29 00:00:00', '1970-09-28 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (3538, 17, '103123', '1972-01-27 00:00:00', '1972-06-15 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (5235, 17, '114194', '1969-05-02 00:00:00', '1971-03-30 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (2113, 12, '661', '1989-09-13 00:00:00', '1992-09-29 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (5036, 17, '113031', '1969-05-04 00:00:00', '1971-01-29 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (3737, 17, '106101', '1974-05-16 00:00:00', '1976-05-06 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (6332, 17, '118561', '1981-06-24 00:00:00', '1983-09-28 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (613, 1, '1066481', '1962-05-01 00:00:00', '2005-01-20 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (6628, 19, '1106200', '2011-05-31 06:00:00', '2012-02-14 21:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (413, 1, '1017570', '1974-03-05 00:00:00', '1977-11-30 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (5335, 17, '115084', '1966-05-30 00:00:00', '1970-10-31 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (113, 1, '1070154', '1974-07-17 00:00:00', '1985-08-31 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (4636, 17, '109824', '1977-06-24 00:00:00', '1978-04-13 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (713, 1, '1085835', '1956-12-01 00:00:00', '2004-10-31 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (1113, 1, '1131615', '1972-06-19 00:00:00', '1985-04-30 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (4037, 17, '107335', '1974-08-12 00:00:00', '1977-11-14 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (3837, 17, '107095', NULL, NULL, true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (1613, 12, '13', '1989-03-31 00:00:00', '1994-10-13 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (6631, 19, '1046332', '2011-05-31 06:00:00', '2012-02-08 03:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (913, 1, '1106200', '1968-01-01 00:00:00', '2004-10-31 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (3277, 9, '770708', NULL, NULL, true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (6033, 17, '118105', '1967-05-30 00:00:00', '1980-09-16 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (2873, 2, '47121', NULL, NULL, true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (1413, 1, '1184716', '1980-10-29 00:00:00', '1985-10-31 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (3638, 17, '104314', '1973-05-31 00:00:00', '1975-10-23 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (2773, 2, '34129', '1990-09-19 11:00:00', '2011-04-05 16:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (6626, 19, '1126150', '2011-05-31 06:00:00', '2012-02-14 21:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (6532, 17, '120123', '1975-06-09 00:00:00', '1975-12-11 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (13, 1, '1012052', '1959-07-02 00:00:00', '1962-09-30 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (4337, 17, '109329', '1982-07-15 14:00:00', '1983-08-22 15:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (6132, 17, '118224', '1971-07-30 00:00:00', '1977-10-20 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (513, 1, '1034725', '1957-07-01 00:00:00', '1958-10-31 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (1013, 1, '1120486', '1991-04-01 00:00:00', '1992-09-30 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (4237, 17, '109147', '1967-05-28 00:00:00', '1977-12-12 00:00:00', true); -INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) VALUES (11046, 5, 'TAT', NULL, NULL, true); -SELECT setval('meta_station_station_id_seq'::regclass, max(station_id)) FROM meta_station; - - --- --- Data for Name: meta_history; Type: TABLE DATA; Schema: subset; Owner: - --- - -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (13216, 11046, 'TIE', -124.9778, 51.3528, 1432, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E6100000D8817346943E5FC0B003E78C28AD4940', NULL, '1-hourly'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (8516, 6628, 'Point Atkinson', -123.26472222222222, 49.33027777777778, NULL, '2012-09-16', '2012-09-16', NULL, 'BC', NULL, NULL, '0101000020E610000002BE7935F1D05EC05813CF8A46AA4840', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (1516, 1113, 'CHRISTIAN VALLEY', -118.75, 49.65, 805, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E61000000000000000B05DC03333333333D34840', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (1816, 1413, 'LONE PRAIRIE', -121.233333, 55.566667, 750, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E6100000F70489EDEE4E5EC0795C548B88C84B40', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (7516, 5833, 'AQUANAUT', -119.164444444444, 52.4305555555556, 725, '1973-05-16', '1975-10-01', NULL, 'BC', NULL, NULL, '0101000020E610000056B9FD4186CA5DC0781CC7711C374A40', NULL, 'irregular'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (8416, 6626, 'Penticton Airport', -119.60222222222222, 49.463055555555556, NULL, '2012-05-15', '2012-05-15', NULL, 'BC', NULL, NULL, '0101000020E61000009C5713CF8AE65DC0CEAB896745BB4840', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (6716, 5036, 'MIDWAY P', -118.766111111111, 49.0083333333333, 579, '1969-04-09', '1971-01-29', NULL, 'BC', NULL, NULL, '0101000020E6100000BCD4E5F607B15DC00C11111111814840', NULL, 'irregular'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (5416, 3737, 'GILFORD IS', -126.562777777778, 50.6536111111111, 40, '1974-05-16', '1976-05-06', NULL, 'BC', NULL, NULL, '0101000020E6100000369E158D04A45FC01F436587A9534940', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (5816, 4137, 'WELLS', -121.578611111111, 53.0983333333333, 1207, '1990-07-25', '1990-10-30', NULL, 'BC', NULL, NULL, '0101000020E6100000BCD4E5F607655EC0F862C92F968C4A40', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (5216, 3538, 'CB MT TOP B', -123.194444444444, 49.41, 1411, '1972-01-27', '1972-06-15', NULL, 'BC', NULL, NULL, '0101000020E6100000A8711CC771CC5EC014AE47E17AB44840', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (6516, 4836, 'THOM', -119.469444444444, 49.0125, 328, '1989-07-24', '1991-03-15', NULL, 'BC', NULL, NULL, '0101000020E6100000410BB6600BDE5DC09A99999999814840', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (2516, 2113, 'ZZ TASEKO', -123.6, 51.3, 14, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E61000006666666666E65EC06666666666A64940', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (2016, 1613, 'ZZ KLANAWA', -124.8, 48.8, 2, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E61000003333333333335FC06666666666664840', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (5716, 4037, 'GLEASON', -129.081944444444, 55.9402777777778, 646, '1974-08-12', '1980-10-09', NULL, 'BC', NULL, NULL, '0101000020E61000003A9FF4499F2260C0095BB0055BF84B40', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (5916, 4237, 'AIRPORT', -123.999722222222, 54.0563888888889, 686, '1967-05-06', '1977-12-12', NULL, 'BC', NULL, NULL, '0101000020E6100000CA61EA72FBFF5EC05BD148C037074B40', NULL, 'irregular'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (1316, 913, 'POINT ATKINSON', -123.2647, 49.33028, 35.000, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E610000014D044D8F0D05EC0EE42739D46AA4840', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (6916, 5235, 'KUSKANAX', -117.811944444444, 50.2613888888889, 503, '1969-04-16', '1971-03-30', NULL, 'BC', NULL, NULL, '0101000020E610000093C3D4E5F6735DC066A8EC3075214940', NULL, 'irregular'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (1216, 813, 'TAKLA LANDING', -125.966667, 55.466667, 854, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E6100000D6C743DFDD7D5FC0AC8F87BEBBBB4B40', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (7716, 6033, 'MCWATERS', -120.045, 55.6619444444444, 686, '1967-04-29', '1980-09-16', NULL, 'BC', NULL, NULL, '0101000020E61000007B14AE47E1025EC02C547698BAD44B40', NULL, 'irregular'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (5316, 3638, 'HORSE SHOE', -124.210555555556, 49.9347222222222, 854, '1973-05-01', '1975-10-23', NULL, 'BC', NULL, NULL, '0101000020E6100000AA4602BE790D5FC0F7A44FFAA4F74840', NULL, 'irregular'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (1416, 1013, 'ARMSTRONG OTTER LAKE', -119.25, 50.4, 342, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E61000000000000000D05DC03333333333334940', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (5616, 3937, 'HOLLAND', -126.625, 55.2486111111111, 898, '1974-06-13', '1977-04-29', NULL, 'BC', NULL, NULL, '0101000020E61000000000000000A85FC07CD2277DD29F4B40', NULL, 'irregular'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (8216, 6532, 'EAGLENEST', -129.483333333333, 57.6166666666667, 853, '1975-06-09', '1976-05-21', NULL, 'BC', NULL, NULL, '0101000020E61000006C777777772F60C0F4EEEEEEEECE4C40', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (1016, 613, 'PRINCE RUPERT A', -130.4447, 54.29250, 35.400, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E610000000917EFB3A4E60C03D0AD7A370254B40', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (516, 113, 'AIYANSH 2SE', -129.05, 55.183333, 213, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E61000009A999999992160C087A3AB7477974B40', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (5516, 3837, 'SUNDAY', -127.694444444444, 55.4138888888889, 251, '1967-04-23', '1969-10-30', NULL, 'BC', NULL, NULL, '0101000020E6100000A8711CC771EC5FC051FAA44FFAB44B40', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (6316, 4636, 'NAVAHO', -119.816666666667, 53.15, 775, '1977-04-30', '1978-04-13', NULL, 'BC', NULL, NULL, '0101000020E61000005C44444444F45DC03333333333934A40', NULL, 'irregular'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (416, 13, 'COWICHAN LAKE NITINAT', -124.483333, 48.933333, 189, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E6100000F70489EDEE1E5FC087A3AB7477774840', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (3416, 2673, 'Jackass', -121.5475, 50.07611, 350, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E6100000D7A3703D0A635EC00473F4F8BD094940', NULL, '1-hourly'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (7316, 5634, 'WHITEWOOD KAM', -120.241666666667, 51.0625, 467, '1971-05-14', '1973-10-26', NULL, 'BC', NULL, NULL, '0101000020E61000008F777777770F5EC00000000000884940', NULL, 'irregular'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (6116, 4437, 'CONTOUR', -123.772222222222, 51.9958333333333, 884, '1969-05-31', '1970-09-28', NULL, 'BC', NULL, NULL, '0101000020E6100000076CC1166CF15EC07377777777FF4940', NULL, 'irregular'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (8016, 6332, 'PETRO UPER 2', -120.75, 54.7527777777778, 1593, '1981-06-24', '1983-09-28', NULL, 'BC', NULL, NULL, '0101000020E61000000000000000305EC0095BB0055B604B40', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (1616, 1213, 'MOYIE', -115.833333, 49.283333, 945, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E61000005D6BEF5355F55CC05470784144A44840', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (1116, 713, 'OOTSA L SKINS L SPILLWAY', -125.9966, 53.77217, 861.100, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E610000064CC5D4BC87F5FC0E6797077D6E24A40', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (816, 413, 'SOOKE OTTER POINT', -123.816667, 48.366667, 40, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E61000003C2EAA4544F45EC0DFC2BAF1EE2E4840', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (1716, 1313, 'SICAMOUS 2', -118.983333, 50.85, 355, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E6100000F70489EDEEBE5DC0CDCCCCCCCC6C4940', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (716, 313, 'MILE 371 ALASKA HWY', -124.133333, 58.65, 758, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E6100000909E228788085FC03333333333534D40', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (3616, 2873, 'Bella Coola', -126.77178, 52.35569, 1160, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E61000003EEDF0D764B15FC0D3C1FA3F872D4A40', NULL, NULL); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (3016, 2613, 'Smithers St Josephs', -127.1775, 54.78305556, 481, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E61000008FC2F5285CCB5FC05393222A3B644B40', NULL, '1-hourly'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (6816, 5136, 'DUPONT 2', -118.021666666667, 50.7416666666667, 602, '1969-05-30', '1971-03-30', NULL, 'BC', NULL, NULL, '0101000020E6100000E12F96FC62815DC0F4EEEEEEEE5E4940', NULL, 'irregular'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (4116, 3277, 'Taylor Townsite', -120.6861111, 56.15083333, 480, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E61000000CFB873EE92B5EC096BFAD814E134C40', NULL, NULL); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (2716, 2313, 'ZZ GYPSY 2', -124.0147, 49.2283, 156, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E610000014D044D8F0005FC0A1D634EF389D4840', NULL, '1-hourly'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (8316, 6631, 'Port Mellon', -123.48333333333333, 49.516666666666666, NULL, '2011-05-31', '2013-08-27', NULL, 'BC', NULL, NULL, '0101000020E6100000EFEEEEEEEEDE5EC02222222222C24840', NULL, '1-hourly'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (1916, 1513, 'Deep Creek', -119.1942667, 50.6276, 517, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E6100000EBCC98DD6ECC5DC01C7C613255504940', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (6016, 4337, 'SMALL RIVER', -119.506666666667, 53.1088888888889, 980, '1982-06-23', '1983-08-22', NULL, 'BC', NULL, NULL, '0101000020E6100000B8D3063A6DE05DC07A563412F08D4A40', NULL, 'irregular'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (5116, 3438, 'WEST THURLOW', -125.694166666667, 50.4005555555556, 125, '1973-07-18', '1978-11-20', NULL, 'BC', NULL, NULL, '0101000020E6100000B8D3063A6D6C5FC0D4AB896745334940', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (3516, 2773, 'London Ridge High', -117.22867, 50.04931, 2160, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E6100000E2E47E87A24E5DC0D1AE42CA4F064940', NULL, '1-hourly'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (7816, 6132, 'MCDOUGAL', -123.588888888889, 54.8291666666667, 984, '1971-06-30', '1977-10-20', NULL, 'BC', NULL, NULL, '0101000020E610000063B0055BB0E55EC027222222226A4B40', NULL, 'irregular'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (916, 513, 'LOWRY LAKE', -125.133333, 49.433333, 305, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E6100000909E228788485FC087A3AB7477B74840', NULL, 'daily'); -INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) VALUES (7016, 5335, 'REDDING', -116.337777777778, 49.6638888888889, 1059, '1966-05-13', '1970-10-31', NULL, 'BC', NULL, NULL, '0101000020E6100000D037AF269E155DC051FAA44FFAD44840', NULL, 'irregular'); -SELECT setval('meta_history_history_id_seq'::regclass, max(history_id)) FROM meta_history; - - --- --- Data for Name: meta_native_flag; Type: TABLE DATA; Schema: subset; Owner: - --- - -INSERT INTO meta_native_flag (native_flag_id, flag_name, description, network_id, value, discard) VALUES (47, 'MoE_AP_9', NULL, 17, '9', NULL); -INSERT INTO meta_native_flag (native_flag_id, flag_name, description, network_id, value, discard) VALUES (40, 'MoE_AP_1', NULL, 17, '1', NULL); -INSERT INTO meta_native_flag (native_flag_id, flag_name, description, network_id, value, discard) VALUES (20, 'EC_trace', 'A trace occured; recorded value is 0 (code T)', 1, 'T', true); -INSERT INTO meta_native_flag (native_flag_id, flag_name, description, network_id, value, discard) VALUES (42, 'MoE_AP_3', 'This appears to indicate that temperature data is not available', 17, '3', NULL); -SELECT setval('meta_native_flag_native_flag_id_seq'::regclass, max(native_flag_id)) FROM meta_native_flag; - - --- --- Data for Name: meta_pcic_flag; Type: TABLE DATA; Schema: subset; Owner: - --- - - - --- --- Data for Name: meta_sensor; Type: TABLE DATA; Schema: subset; Owner: - --- - - - --- --- Data for Name: meta_vars; Type: TABLE DATA; Schema: subset; Owner: - --- - -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (517, 17, 'celsius', NULL, 'air_temperature', 'time: minimum', 'Minimum daily temperature', 'MINTMP', 'Temperature (Min.)', 'air_temperature_minimum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (519, 17, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 'time: sum', 'Daily Precipitation', 'PPT', 'Precipitation Amount', 'lwe_thickness_of_precipitation_amount_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (518, 17, 'celsius', NULL, 'air_temperature', 'time: maximum', 'Maximum daily temperature', 'MAXTMP', 'Temperature (Max.)', 'air_temperature_maximum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (542, 19, 'Celsius', NULL, 'air_temperature', 'time: point', 'Hourly air temperature', 'air_temperature', 'Temperature (Point)', 'air_temperature_point'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (543, 19, 'km/h', NULL, 'wind_speed_of_gust', 'time: maximum', 'Maximum speed of wind gust', 'wind_gust_speed', 'Wind Gust (Max.)', 'wind_speed_of_gust_maximum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (440, 2, 'mm', NULL, 'lwe_thickness_of_precipitation', 'time: sum', NULL, 'PRECIPITATION_GAUGE_TOTAL', 'Precipitation (Cumulative)', 'lwe_thickness_of_precipitation_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (443, 2, '1', NULL, 'foo_bar', 'time: mean', NULL, 'PRECIP_DETECTOR_RATIO', 'Rainfall Amount', NULL); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (497, 12, 'celsius', NULL, 'air_temperature', 'time: point', NULL, 'temperature', 'Temperature (Point)', 'air_temperature_point'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (496, 12, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 'time: sum', 'depth of water-equivalent rain', 'precipitation', 'Precipitation Amount', 'lwe_thickness_of_precipitation_amount_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (579, 9, 'celsius', NULL, 'air_temperature', 't: mean within days t: mean within months t: mean over years', 'Climatological mean of monthly mean of mean daily temperature', 'T_mean_Climatology', 'Temperature Climatology (Mean)', 'air_temperaturet: mean within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (545, 19, 'Celsius', NULL, 'air_temperature', 'time: minimum', 'Minimum daily air temperature', 'air_temperature_yesterday_low', 'Temperature (Min.)', 'air_temperature_minimum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (544, 19, 'Celsius', NULL, 'air_temperature', 'time: maximum', 'Maximum daily air temperature', 'air_temperature_yesterday_high', 'Temperature (Max.)', 'air_temperature_maximum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (429, 1, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 'time: sum', 'Daily precipitation', 'ONE_DAY_PRECIPITATION', 'Precipitation Amount', 'lwe_thickness_of_precipitation_amount_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (551, 19, 'Celsius', NULL, 'dew_point_temperature', 'time: point', 'Dew point', 'dew_point', 'Dew Point Temperature (Point)', 'dew_point_temperature_point'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (550, 19, 'km/h', NULL, 'wind_speed', 'time: point', 'Instantaneous wind speed', 'wind_speed', 'Wind Speed (Point)', 'wind_speed_point'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (548, 19, 'cm', NULL, 'thickness_of_snowfall_amount', 'time: sum', 'Daily snowfall', 'snow_amount', 'Snowfall Amount', 'thickness_of_snowfall_amount_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (549, 19, 'kPa', NULL, 'mean_sea_level', 'time: point', 'Hourly mean sea level', 'mean_sea_level', 'Mean Sea Level', 'mean_sea_level_point'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (552, 19, 'percent', NULL, 'relative_humidity', 'time: point', 'Relative humidity', 'relative_humidity', 'Relative Humidity (Point)', 'relative_humidity_point'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (435, 2, 'celsius', NULL, 'air_temperature', 'time: minimum', NULL, 'MINIMUM_AIR_TEMPERATURE', 'Temperature (Min.)', 'air_temperature_minimum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (450, 2, 'cm', NULL, 'surface_snow_thickness', 'time: point', NULL, 'HEIGHT_OF_SNOW', 'Surface Snow Depth (Point)', 'surface_snow_thickness_point'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (556, 1, 'celsius', NULL, 'air_temperature', 't: maximum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean maximum daily temperature', 'Tx_Climatology', 'Temperature Climatology (Max.)', 'air_temperaturet: maximum within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (449, 2, 'km h-1', NULL, 'wind_speed', 'time: maximum', NULL, 'MAXIMUM_MEASURED_WIND_SPEED1', 'Wind Speed (Max.)', 'wind_speed_maximum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (442, 2, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 'time: sum', NULL, 'HOURLY_PRECIPITATION', 'Precipitation Amount', 'lwe_thickness_of_precipitation_amount_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (444, 2, NULL, NULL, 'wind_speed', 'time: point', NULL, 'ACTUAL_WIND_SPEED', 'Wind Speed (Point)', 'wind_speed_point'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (526, 17, 'mm', NULL, 'lwe_thickness_of_precipitation', 'time: sum', 'Accumulated Precipitation Monthly', 'ACCPPT1', 'Precipitation (Cumulative)', 'lwe_thickness_of_precipitation_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (527, 17, 'mm', NULL, 'lwe_thickness_of_precipitation', 'time: sum', 'Accumulated Precipiation ~Monthly', 'ACCPPT2', 'Precipitation (Cumulative)', 'lwe_thickness_of_precipitation_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (528, 17, 'cm', NULL, 'surface_snow_thickness', 'time: point', 'Accumulated Snow Depth', 'SNOWDEPTH', 'Surface Snow Depth (Point)', 'surface_snow_thickness_point'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (521, 17, '%', NULL, 'relative_humidity', 'time: mean', 'Relative humidity 2', 'HUM2', 'Relative Humidity (Mean)', 'relative_humidity_mean'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (522, 17, '%', NULL, 'relative_humidity', 'time: mean', 'Relative humidity 3', 'HUM3', 'Relative Humidity (Mean)', 'relative_humidity_mean'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (477, 9, NULL, NULL, 'wind_speed', 'time: point', NULL, 'WSPD_SCLR', 'Wind Speed (Point)', 'wind_speed_point'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (437, 2, '%', NULL, 'relative_humidity', 'time: mean', NULL, 'RELATIVE_HUMIDITY1', 'Relative Humidity (Mean)', 'relative_humidity_mean'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (523, 17, '%', NULL, 'relative_humidity', 'time: mean', 'Relative humidity 4', 'HUM4', 'Relative Humidity (Mean)', 'relative_humidity_mean'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (524, 17, NULL, NULL, 'relative_humidity', 'time: mean', 'Humidity 1300', 'HUM1300', 'Relative Humidity (Mean)', 'relative_humidity_mean'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (547, 19, 'mm', NULL, 'thickness_of_rainfall_amount', 'time: sum', 'Daily rainfall amount', 'total_rain', 'Rainfall Amount', 'thickness_of_rainfall_amount_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (434, 2, 'celsius', NULL, 'air_temperature', 'time: point', NULL, 'CURRENT_AIR_TEMPERATURE1', 'Temperature (Point)', 'air_temperature_point'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (447, 2, 'degrees', NULL, 'wind_from_direction', 'time: mean', NULL, 'MEASURED_WIND_DIRECTION1', 'Wind Direction (Mean)', 'wind_from_direction_mean'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (451, 2, 'cm', NULL, 'thickness_of_snowfall_amount', 'time: sum', NULL, 'STANDARD_SNOW', 'Snowfall Amount', 'thickness_of_snowfall_amount_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (569, 5, 'celsius', NULL, 'air_temperature', 't: maximum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean maximum daily temperature', 'Tx_Climatology', 'Temperature Climatology (Max.)', 'air_temperaturet: maximum within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (438, 2, 'celsius', NULL, 'dew_point_temperature', 'time: mean', NULL, 'DEW_POINT', 'Dew Point Temperature (Mean)', 'dew_point_temperature_mean'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (499, 12, 'm s-1', NULL, 'wind_speed', 'time: mean', NULL, 'wind_speed', 'Wind Speed (Mean)', 'wind_speed_mean'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (445, 2, 'degrees', NULL, 'wind_from_direction', 'time: point', NULL, 'ACTUAL_WIND_DIRECTION', 'Wind Direction (Point)', 'wind_from_direction_point'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (441, 2, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 'time: sum', NULL, 'PRECIPITATION_NEW', 'Precipitation Amount', 'lwe_thickness_of_precipitation_amount_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (436, 2, 'celsius', NULL, 'air_temperature', 'time: point', NULL, 'CURRENT_AIR_TEMPERATURE2', 'Temperature (Point)', 'air_temperature_point'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (427, 1, 'celsius', NULL, 'air_temperature', 'time: minimum', 'Minimum daily temperature', 'MIN_TEMP', 'Temperature (Min.)', 'air_temperature_minimum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (448, 2, 'degrees', NULL, 'wind_from_direction', 'time: standard_deviation', NULL, 'WIND_DIRECTION_STD_DEVIATION1', 'Wind Direction (Std Dev)', 'wind_from_direction_standard_deviation'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (557, 1, 'celsius', NULL, 'air_temperature', 't: minimum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean minimum daily temperature', 'Tn_Climatology', 'Temperature Climatology (Min.)', 'air_temperaturet: minimum within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (472, 9, 'celsius', NULL, 'air_temperature', 'time: mean', 'Present temperature', 'TEMP_MEAN', 'Temperature (Mean)', 'air_temperature_mean'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (431, 1, 'cm', NULL, 'thickness_of_snowfall_amount', 'time: sum', 'Daily snow accumulation', 'ONE_DAY_SNOW', 'Snowfall Amount', 'thickness_of_snowfall_amount_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (562, 2, 'celsius', NULL, 'air_temperature', 't: minimum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean minimum daily temperature', 'Tn_Climatology', 'Temperature Climatology (Min.)', 'air_temperaturet: minimum within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (446, 2, 'km h-1', NULL, 'wind_speed', 'time: mean', NULL, 'MEASURED_WIND_SPEED1', 'Wind Speed (Mean)', 'wind_speed_mean'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (428, 1, 'celsius', NULL, 'air_temperature', 'time: maximum', 'Maximum daily temperature', 'MAX_TEMP', 'Temperature (Max.)', 'air_temperature_maximum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (433, 2, 'celsius', NULL, 'air_temperature', 'time: maximum', NULL, 'MAXIMUM_AIR_TEMPERATURE', 'Temperature (Max.)', 'air_temperature_maximum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (430, 1, 'mm', NULL, 'thickness_of_rainfall_amount', 'time: sum', 'Daily rainfall', 'ONE_DAY_RAIN', 'Rainfall Amount', 'thickness_of_rainfall_amount_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (495, 10, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 'time: sum', 'Accumulated precipitation', 'Prec', 'Precipitation Amount', 'lwe_thickness_of_precipitation_amount_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (475, 9, 'millibar', NULL, 'air_pressure', 'time: point', 'Atmospheric pressure', 'BAR_PRESS_HOUR', 'Air Pressure (Point)', 'air_pressure_point'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (476, 9, 'degree', NULL, 'wind_from_direction', 'time: point', NULL, 'WDIR_UVEC', 'Wind Direction (Point)', 'wind_from_direction_point'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (473, 9, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 'time: sum', 'Hourly precipitation', 'PRECIP_TOTAL', 'Precipitation Amount', 'lwe_thickness_of_precipitation_amount_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (525, 17, 's', NULL, 'duration_of_sunshine', 'time: sum', NULL, 'SHOURS', 'Sunshine Duration', 'duration_of_sunshine_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (561, 2, 'celsius', NULL, 'air_temperature', 't: maximum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean maximum daily temperature', 'Tx_Climatology', 'Temperature Climatology (Max.)', 'air_temperaturet: maximum within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (563, 2, 'celsius', NULL, 'air_temperature', 't: mean within days t: mean within months t: mean over years', 'Climatological mean of monthly mean of mean daily temperature', 'T_mean_Climatology', 'Temperature Climatology (Mean)', 'air_temperaturet: mean within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (474, 9, '%', NULL, 'relative_humidity', 'time: point', 'Relative humidity', 'HUMIDITY', 'Relative Humidity (Point)', 'relative_humidity_point'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (564, 2, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 't: sum within months t: mean over years', 'Climatological mean of monthly total precipitation', 'Precip_Climatology', 'Precipitation Climatology', 'lwe_thickness_of_precipitation_amountt: sum within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (572, 5, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 't: sum within months t: mean over years', 'Climatological mean of monthly total precipitation', 'Precip_Climatology', 'Precipitation Climatology', 'lwe_thickness_of_precipitation_amountt: sum within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (493, 10, 'celsius', NULL, 'air_temperature', 'time: minimum', 'Minimum temperature', 'TMin', 'Temperature (Min.)', 'air_temperature_minimum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (494, 10, 'celsius', NULL, 'air_temperature', 'time: maximum', 'Maximum temperature', 'TMax', 'Temperature (Max.)', 'air_temperature_maximum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (583, 10, 'celsius', NULL, 'air_temperature', 't: mean within days t: mean within months t: mean over years', 'Climatological mean of monthly mean of mean daily temperature', 'T_mean_Climatology', 'Temperature Climatology (Mean)', 'air_temperaturet: mean within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (463, 5, 'celsius', NULL, 'air_temperature', 'time: minimum', 'Minimum daily temperature', 'MIN_TEMP', 'Temperature (Min.)', 'air_temperature_minimum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (432, 1, 'cm', NULL, 'surface_snow_thickness', 'time: point', 'Amount of snow on the ground', 'SNOW_ON_THE_GROUND', 'Surface Snow Depth (Point)', 'surface_snow_thickness_point'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (468, 5, 'cm', NULL, 'surface_snow_thickness', 'time: point', 'Amount of snow on the ground', 'SNOW_ON_THE_GROUND', 'Surface Snow Depth (Point)', 'surface_snow_thickness_point'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (467, 5, 'cm', NULL, 'thickness_of_snowfall_amount', 'time: sum', 'Daily snow accumulation', 'ONE_DAY_SNOW', 'Snowfall Amount', 'thickness_of_snowfall_amount_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (465, 5, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 'time: sum', 'Daily precipitation', 'ONE_DAY_PRECIPITATION', 'Precipitation Amount', 'lwe_thickness_of_precipitation_amount_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (570, 5, 'celsius', NULL, 'air_temperature', 't: minimum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean minimum daily temperature', 'Tn_Climatology', 'Temperature Climatology (Min.)', 'air_temperaturet: minimum within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (464, 5, 'celsius', NULL, 'air_temperature', 'time: maximum', 'Maximum daily temperature', 'MAX_TEMP', 'Temperature (Max.)', 'air_temperature_maximum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (466, 5, 'mm', NULL, 'thickness_of_rainfall_amount', 'time: sum', 'Daily rainfall', 'ONE_DAY_RAIN', 'Rainfall Amount', 'thickness_of_rainfall_amount_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (581, 10, 'celsius', NULL, 'air_temperature', 't: maximum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean maximum daily temperature', 'Tx_Climatology', 'Temperature Climatology (Max.)', 'air_temperaturet: maximum within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (580, 9, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 't: sum within months t: mean over years', 'Climatological mean of monthly total precipitation', 'Precip_Climatology', 'Precipitation Climatology', 'lwe_thickness_of_precipitation_amountt: sum within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (500, 12, 'degree', NULL, 'wind_from_direction', 'time: mean', NULL, 'wind_direction', 'Wind Direction (Mean)', 'wind_from_direction_mean'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (590, 12, 'celsius', NULL, 'air_temperature', 't: minimum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean minimum daily temperature', 'Tn_Climatology', 'Temperature Climatology (Min.)', 'air_temperaturet: minimum within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (498, 12, '%', NULL, 'relative_humidity', 'time: mean', NULL, 'relative_humidity', 'Relative Humidity (Mean)', 'relative_humidity_mean'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (582, 10, 'celsius', NULL, 'air_temperature', 't: minimum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean minimum daily temperature', 'Tn_Climatology', 'Temperature Climatology (Min.)', 'air_temperaturet: minimum within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (578, 9, 'celsius', NULL, 'air_temperature', 't: minimum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean minimum daily temperature', 'Tn_Climatology', 'Temperature Climatology (Min.)', 'air_temperaturet: minimum within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (589, 12, 'celsius', NULL, 'air_temperature', 't: maximum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean maximum daily temperature', 'Tx_Climatology', 'Temperature Climatology (Max.)', 'air_temperaturet: maximum within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (558, 1, 'celsius', NULL, 'air_temperature', 't: mean within days t: mean within months t: mean over years', 'Climatological mean of monthly mean of mean daily temperature', 'T_mean_Climatology', 'Temperature Climatology (Mean)', 'air_temperaturet: mean within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (571, 5, 'celsius', NULL, 'air_temperature', 't: mean within days t: mean within months t: mean over years', 'Climatological mean of monthly mean of mean daily temperature', 'T_mean_Climatology', 'Temperature Climatology (Mean)', 'air_temperaturet: mean within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (609, 17, 'celsius', NULL, 'air_temperature', 't: maximum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean maximum daily temperature', 'Tx_Climatology', 'Temperature Climatology (Max.)', 'air_temperaturet: maximum within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (613, 19, 'celsius', NULL, 'air_temperature', 't: maximum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean maximum daily temperature', 'Tx_Climatology', 'Temperature Climatology (Max.)', 'air_temperaturet: maximum within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (555, 19, 'kPa s-1', NULL, 'tendency_of_air_pressure', 'time: sum', 'Air pressure tendency', 'tendency_amount', 'Air Pressure Tendency', 'tendency_of_air_pressure_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (439, 2, 'millibar', NULL, 'air_pressure', 'time: point', NULL, 'ATMOSPHERIC_PRESSURE', 'Air Pressure (Point)', 'air_pressure_point'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (553, 19, 'degree', NULL, 'wind_from_direction', 'time: mean', 'Wind direction octants', 'wind_direction', 'Wind Direction (Mean)', 'wind_from_direction_mean'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (554, 19, 'percent', NULL, 'cloud_area_fraction', 'time: point', 'Total cloud cover', 'total_cloud_cover', 'Cloud Cover Fraction', 'cloud_area_fraction_point'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (546, 19, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 'time: sum', 'Daily precipitation amount', 'total_precipitation', 'Precipitation Amount', 'lwe_thickness_of_precipitation_amount_sum'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (610, 17, 'celsius', NULL, 'air_temperature', 't: minimum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean minimum daily temperature', 'Tn_Climatology', 'Temperature Climatology (Min.)', 'air_temperaturet: minimum within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (614, 19, 'celsius', NULL, 'air_temperature', 't: minimum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean minimum daily temperature', 'Tn_Climatology', 'Temperature Climatology (Min.)', 'air_temperaturet: minimum within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (577, 9, 'celsius', NULL, 'air_temperature', 't: maximum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean maximum daily temperature', 'Tx_Climatology', 'Temperature Climatology (Max.)', 'air_temperaturet: maximum within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (520, 17, '%', NULL, 'relative_humidity', 'time: mean', 'Relative humidity 1', 'HUM1', 'Relative Humidity (Mean)', 'relative_humidity_mean'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (591, 12, 'celsius', NULL, 'air_temperature', 't: mean within days t: mean within months t: mean over years', 'Climatological mean of monthly mean of mean daily temperature', 'T_mean_Climatology', 'Temperature Climatology (Mean)', 'air_temperaturet: mean within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (584, 10, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 't: sum within months t: mean over years', 'Climatological mean of monthly total precipitation', 'Precip_Climatology', 'Precipitation Climatology', 'lwe_thickness_of_precipitation_amountt: sum within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (592, 12, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 't: sum within months t: mean over years', 'Climatological mean of monthly total precipitation', 'Precip_Climatology', 'Precipitation Climatology', 'lwe_thickness_of_precipitation_amountt: sum within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (611, 17, 'celsius', NULL, 'air_temperature', 't: mean within days t: mean within months t: mean over years', 'Climatological mean of monthly mean of mean daily temperature', 'T_mean_Climatology', 'Temperature Climatology (Mean)', 'air_temperaturet: mean within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (615, 19, 'celsius', NULL, 'air_temperature', 't: mean within days t: mean within months t: mean over years', 'Climatological mean of monthly mean of mean daily temperature', 'T_mean_Climatology', 'Temperature Climatology (Mean)', 'air_temperaturet: mean within days t: mean within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (559, 1, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 't: sum within months t: mean over years', 'Climatological mean of monthly total precipitation', 'Precip_Climatology', 'Precipitation Climatology', 'lwe_thickness_of_precipitation_amountt: sum within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (612, 17, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 't: sum within months t: mean over years', 'Climatological mean of monthly total precipitation', 'Precip_Climatology', 'Precipitation Climatology', 'lwe_thickness_of_precipitation_amountt: sum within months t: mean over years'); -INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) VALUES (616, 19, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 't: sum within months t: mean over years', 'Climatological mean of monthly total precipitation', 'Precip_Climatology', 'Precipitation Climatology', 'lwe_thickness_of_precipitation_amountt: sum within months t: mean over years'); -SELECT setval('meta_vars_vars_id_seq'::regclass, max(vars_id)) FROM meta_vars; - - --- --- Data for Name: obs_raw; Type: TABLE DATA; Schema: subset; Owner: - --- - -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947887, '1970-05-29 00:00:00', '2011-11-07 23:22:02', 280, 526, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951137, '1966-07-30 00:00:00', '2011-11-14 15:45:05.745204', 360, 527, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383661117, '2000-06-30 23:59:59', '2012-03-28 17:10:09.083401', 17.7288609, 556, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383699895, '2000-07-31 23:59:59', '2012-03-28 17:35:26.295016', 92.8996887, 592, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985743, '1972-08-30 00:00:00', '2011-11-07 23:30:01', 1, 528, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (27795091, '1985-09-02 00:00:00', '2011-08-29 12:13:18.197183', 18.5, 428, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383701369, '2000-08-31 23:59:59', '2012-03-28 17:36:20.575582', 53.262455, 559, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898613, '1975-01-31 00:00:00', '2011-11-07 23:11:09', 84, 528, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383658280, '2000-03-31 23:59:59', '2012-03-28 17:04:16.901053', 7.49910307, 556, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915386, '1971-07-01 00:00:00', '2011-11-07 23:14:20', 400, 527, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702705, '1959-08-21 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985720, '1972-08-30 00:00:00', '2011-11-07 23:30:01', 190, 526, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277897, '1957-10-09 00:00:00', '2011-08-29 12:13:18.197183', 20, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192005, '1991-05-04 00:00:00', '2011-08-29 12:13:18.197183', 14, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383696721, '2000-05-31 23:59:59', '2012-03-28 17:33:20.208574', 48.6818352, 559, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702696, '1959-08-12 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975941, '2006-10-14 00:00:00', '2011-08-29 12:13:18.197183', 13.2777996, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383700766, '2000-08-31 23:59:59', '2012-03-28 17:35:58.670505', 34.885025, 559, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383690517, '2000-11-30 23:59:59', '2012-03-28 17:29:16.002013', 1.65273547, 558, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702665, '1959-07-11 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493079, '1984-01-05 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559787929, '2015-09-24 11:00:00', '2015-09-24 11:30:02.616552', 178.300003, 447, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915347, '1974-07-01 00:00:00', '2011-11-07 23:14:20', 110, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493109, '1983-12-04 00:00:00', '2011-08-29 12:13:18.197183', 0, 430, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383689575, '2000-10-31 23:59:59', '2012-03-28 17:28:41.800291', 4.7278471, 558, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554291567, '2015-09-09 18:00:00', '2015-09-09 18:30:02.590861', 11.54, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027805, '1972-03-12 00:00:00', '2011-10-28 19:25:56', 0.200000003, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523376, '1981-07-01 00:00:00', '2011-10-28 23:23:47', 5.19999981, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821042, '1975-06-14 00:00:00', '2011-10-28 23:50:29', 3, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493087, '1984-01-13 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947883, '1969-09-26 00:00:00', '2011-11-07 23:22:02', 640, 526, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554329813, '2015-09-10 07:00:00', '2015-09-10 07:30:02.527375', 8.56000042, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191989, '1991-04-18 00:00:00', '2011-08-29 12:13:18.197183', 22.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277922, '1957-12-04 00:00:00', '2011-08-29 12:13:18.197183', 4.4000001, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975942, '2006-10-15 00:00:00', '2011-08-29 12:13:18.197183', 13.1667004, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383666979, '2000-12-31 23:59:59', '2012-03-28 21:12:26.155705', 5.0999999, 556, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559802831, '2015-09-24 16:00:00', '2015-09-24 16:30:03.045685', 969, 439, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383677205, '2000-10-31 23:59:59', '2012-03-28 17:21:09.229395', 10.2744818, 557, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523411, '1981-08-05 00:00:00', '2011-10-28 23:23:47', 9.69999981, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493083, '1984-01-09 00:00:00', '2011-08-29 12:13:18.197183', 2.4000001, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783780, '2004-08-28 02:00:00', '2011-08-29 12:13:18.197183', 95.9000015, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424199, '1989-10-11 00:00:00', '2011-08-29 12:13:18.197183', 9.39999962, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702688, '1959-08-04 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523400, '1981-07-25 00:00:00', '2011-10-28 23:23:47', 8.5, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358199, '2015-01-09 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027780, '1972-02-16 00:00:00', '2011-10-28 19:25:56', -5.69999981, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425178, '1989-04-05 00:00:00', '2011-08-29 12:13:18.197183', 8.5, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (44478648, '1972-06-20 00:00:00', '2011-08-29 12:13:18.197183', 17.2000008, 428, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493091, '1984-01-17 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383689376, '2000-10-31 23:59:59', '2012-03-28 17:28:34.734476', 5.53430557, 558, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852530, '2006-02-11 19:00:00', '2011-08-29 12:13:18.197183', 5.19999981, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424195, '1989-10-07 00:00:00', '2011-08-29 12:13:18.197183', 13.6000004, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081733, '1990-12-21 14:00:00', '2011-08-29 12:13:18.197183', -29.5, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277931, '1957-12-13 00:00:00', '2011-08-29 12:13:18.197183', 3.9000001, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559790824, '2015-09-24 12:00:00', '2015-09-24 12:30:03.478752', -0.200000003, 442, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380996493, '1983-01-17 12:04:00', '2011-11-07 23:32:08', 0, 528, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358195, '2015-01-05 00:00:00', '2015-09-23 00:00:22.705906', 19, 429, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383679491, '2000-12-31 23:59:59', '2012-03-28 17:22:29.55237', -5.09820843, 557, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898627, '1977-02-06 00:00:00', '2011-11-07 23:11:09', 70, 528, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783782, '2004-08-28 04:00:00', '2011-08-29 12:13:18.197183', 98, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487137767, '2013-08-22 05:00:00', '2013-09-04 15:39:33.442132', 315, 553, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425184, '1989-04-11 00:00:00', '2011-08-29 12:13:18.197183', 17.7000008, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915344, '1973-09-01 00:00:00', '2011-11-07 23:14:20', 210, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383678920, '2000-12-31 23:59:59', '2012-03-28 17:22:10.072003', 2.49889112, 557, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821060, '1975-07-02 00:00:00', '2011-10-28 23:50:29', 10.3999996, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702698, '1959-08-14 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192015, '1991-05-14 00:00:00', '2011-08-29 12:13:18.197183', 20.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487140612, '2013-08-22 09:00:00', '2013-09-04 15:39:54.76078', 1, 550, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689679, '1990-08-18 00:00:00', '2011-10-28 20:38:54', 1, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559793908, '2015-09-24 13:00:00', '2015-09-24 13:30:02.704658', 5, 438, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963573, '1971-06-29 00:00:00', '2011-11-07 23:25:31', 780, 527, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945308, '1969-09-26 00:00:00', '2011-11-07 23:21:21', 900, 526, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689656, '1990-07-26 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947901, '1970-10-29 00:00:00', '2011-11-07 23:22:02', 350, 527, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (49967254, '1972-06-21 00:00:00', '2011-08-29 12:13:18.197183', 18.2999992, 428, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903892, '1976-06-28 00:00:00', '2011-11-07 23:12:13', 490, 526, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277918, '1957-10-30 00:00:00', '2011-08-29 12:13:18.197183', 12.1999998, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358201, '2015-01-11 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383691399, '2000-12-31 23:59:59', '2012-03-28 17:29:47.905528', -7.02201509, 558, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821064, '1975-07-06 00:00:00', '2011-10-28 23:50:29', 7.80000019, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702692, '1959-08-08 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980210, '1978-04-11 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523372, '1981-06-27 00:00:00', '2011-10-28 23:23:47', 4.80000019, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903897, '1977-05-16 00:00:00', '2011-11-07 23:12:13', 90, 526, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (5449826, '1974-03-06 00:00:00', '2011-08-29 12:13:18.197183', 5.5999999, 428, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980214, '1978-08-28 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487137022, '2013-08-22 04:00:00', '2013-09-04 15:39:28.123839', 101.5, 549, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903905, '1975-05-28 00:00:00', '2011-11-07 23:12:13', 70, 527, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874104, '1978-09-28 00:00:00', '2011-11-07 23:04:35', 4360, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383683252, '2000-04-30 23:59:59', '2012-03-28 17:24:52.397788', 2.54273725, 558, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783792, '2004-08-28 14:00:00', '2011-08-29 12:13:18.197183', 61.0299988, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915334, '1972-04-30 00:00:00', '2011-11-07 23:14:20', 170, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898605, '1975-09-04 00:00:00', '2011-11-07 23:11:09', 830, 527, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380922318, '1969-06-29 00:00:00', '2011-11-07 23:15:58', 620, 526, 6116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903885, '1974-10-30 00:00:00', '2011-11-07 23:12:13', 2770, 526, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380929106, '1977-07-06 00:00:00', '2011-11-07 23:17:34', 500, 527, 6316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383704251, '2000-10-31 23:59:59', '2012-03-28 17:38:14.130467', 124.715393, 559, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970975, '1974-06-29 00:00:00', '2011-11-07 23:27:12', 630, 527, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898588, '1974-09-30 00:00:00', '2011-11-07 23:11:09', 910, 526, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425216, '1989-05-13 00:00:00', '2011-08-29 12:13:18.197183', 17.7999992, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625957, '1974-08-02 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963583, '1973-05-29 00:00:00', '2011-11-07 23:25:31', 310, 527, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980223, '1980-05-27 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424193, '1989-10-05 00:00:00', '2011-08-29 12:13:18.197183', 12.6999998, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898614, '1975-02-28 00:00:00', '2011-11-07 23:11:09', 88, 528, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383689441, '2000-10-31 23:59:59', '2012-03-28 17:28:37.02681', 6.29803038, 558, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493077, '1984-01-03 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942213, '1969-10-29 00:00:00', '2011-11-07 23:20:33', 270, 526, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975961, '2006-11-03 00:00:00', '2011-08-29 12:13:18.197183', 0.777800024, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783783, '2004-08-28 05:00:00', '2011-08-29 12:13:18.197183', 98.6999969, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970972, '1975-10-01 00:00:00', '2011-11-07 23:27:12', 150, 526, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383699042, '2000-07-31 23:59:59', '2012-03-28 17:34:55.188736', 56.5051918, 559, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689687, '1990-08-26 00:00:00', '2011-10-28 20:38:54', 3, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192014, '1991-05-13 00:00:00', '2011-08-29 12:13:18.197183', 20.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915332, '1971-10-01 00:00:00', '2011-11-07 23:14:20', 410, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942221, '1969-05-04 00:00:00', '2011-11-07 23:20:33', 520, 527, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383661444, '2000-06-30 23:59:59', '2012-03-28 17:10:20.785491', 22.5443516, 556, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424171, '1989-09-13 00:00:00', '2011-08-29 12:13:18.197183', 0, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383705478, '2000-11-30 23:59:59', '2012-03-28 21:12:12.997287', 304.399994, 559, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523395, '1981-07-20 00:00:00', '2011-10-28 23:23:47', 11.5, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942207, '1969-05-04 00:00:00', '2011-11-07 23:20:33', 540, 526, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424185, '1989-09-27 00:00:00', '2011-08-29 12:13:18.197183', 18.1000004, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383662364, '2000-07-31 23:59:59', '2012-03-28 17:10:54.107115', 25.0943699, 556, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381366, '1974-05-30 00:00:00', '2011-10-28 20:03:47', 4.19999981, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903902, '1977-10-11 00:00:00', '2011-11-07 23:12:13', 1510, 526, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689678, '1990-08-17 00:00:00', '2011-10-28 20:38:54', 3, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027802, '1972-03-09 00:00:00', '2011-10-28 19:25:56', -0.100000001, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265217, '1989-09-06 00:00:00', '2011-10-28 21:36:17', 13.1999998, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970978, '1974-10-29 00:00:00', '2011-11-07 23:27:12', 460, 527, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383684639, '2000-05-31 23:59:59', '2012-03-28 17:25:43.487702', 8.85673332, 558, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903884, '1974-08-28 00:00:00', '2011-11-07 23:12:13', 150, 526, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903889, '1975-08-25 00:00:00', '2011-11-07 23:12:13', 400, 526, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821055, '1975-06-27 00:00:00', '2011-10-28 23:50:29', 2.20000005, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424212, '1990-06-23 00:00:00', '2011-08-29 12:13:18.197183', 18.1000004, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523407, '1981-08-01 00:00:00', '2011-10-28 23:23:47', 6.5, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381359, '1974-05-23 00:00:00', '2011-10-28 20:03:47', 5.30000019, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383662973, '2000-08-31 23:59:59', '2012-03-28 21:08:53.891331', 16.7000008, 556, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874114, '1974-06-28 00:00:00', '2011-11-07 23:04:35', 1030, 527, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383664080, '2000-09-30 23:59:59', '2012-03-28 17:11:55.971391', 14.7585726, 556, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903898, '1977-06-14 00:00:00', '2011-11-07 23:12:13', 550, 526, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383669212, '2000-02-29 23:59:59', '2012-03-28 17:16:26.430466', 5.53630686, 557, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980167, '1980-05-27 00:00:00', '2011-11-07 23:28:58', 335, 526, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380883287, '1975-07-31 00:00:00', '2011-11-07 23:06:30', 330, 526, 5316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852517, '2006-02-11 06:00:00', '2011-08-29 12:13:18.197183', 4.5999999, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852502, '2006-02-10 15:00:00', '2011-08-29 12:13:18.197183', 9.69999981, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265212, '1989-09-01 00:00:00', '2011-10-28 21:36:17', 10.6000004, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559802833, '2015-09-24 16:00:00', '2015-09-24 16:30:03.045685', 216.5, 447, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980227, '1980-09-16 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265203, '1989-08-23 00:00:00', '2011-10-28 21:36:17', 9.19999981, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425207, '1989-05-04 00:00:00', '2011-08-29 12:13:18.197183', 21.7000008, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980161, '1979-05-26 00:00:00', '2011-11-07 23:28:58', 96, 526, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874122, '1975-01-14 00:00:00', '2011-11-07 23:04:35', 71, 528, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383678031, '2000-11-30 23:59:59', '2012-03-28 21:11:58.946038', 0.899999976, 557, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783768, '2004-08-27 14:00:00', '2011-08-29 12:13:18.197183', 78.1999969, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625969, '1974-08-14 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523404, '1981-07-29 00:00:00', '2011-10-28 23:23:47', 7.0999999, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783812, '2004-08-29 10:00:00', '2011-08-29 12:13:18.197183', 72.6999969, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889653, '1976-02-10 00:00:00', '2011-11-07 23:09:20', 1930, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689690, '1990-08-29 00:00:00', '2011-10-28 20:38:54', 19, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265173, '1989-07-24 00:00:00', '2011-10-28 21:36:17', 25.7000008, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265199, '1989-08-19 00:00:00', '2011-10-28 21:36:17', 12.5, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383674511, '2000-07-31 23:59:59', '2012-03-28 17:19:33.855103', 11.4580956, 557, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915327, '1969-10-28 00:00:00', '2011-11-07 23:14:20', 290, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942211, '1969-08-28 00:00:00', '2011-11-07 23:20:33', 30, 526, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702682, '1959-07-29 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951132, '1969-09-30 00:00:00', '2011-11-07 23:22:45', 590, 527, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081744, '1990-12-22 01:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942229, '1970-09-28 00:00:00', '2011-11-07 23:20:33', 110, 527, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898595, '1976-07-28 00:00:00', '2011-11-07 23:11:09', 510, 526, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487138489, '2013-08-22 06:00:00', '2013-09-04 15:39:39.002254', 18.7999992, 542, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487137021, '2013-08-22 04:00:00', '2013-09-04 15:39:28.123839', 2, 550, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383671074, '2000-04-30 23:59:59', '2012-03-28 21:05:40.060912', 2.0999999, 557, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383687408, '2000-08-31 23:59:59', '2012-03-28 17:27:23.588621', 15.9888477, 558, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493080, '1984-01-06 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554279762, '2015-09-09 14:00:00', '2015-09-09 14:30:03.08718', 11.79, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945321, '1970-01-30 00:00:00', '2011-11-07 23:21:21', 76, 528, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903904, '1974-08-28 00:00:00', '2011-11-07 23:12:13', 130, 527, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970979, '1975-05-29 00:00:00', '2011-11-07 23:27:12', 530, 527, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975934, '2006-10-07 00:00:00', '2011-08-29 12:13:18.197183', 15, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081750, '1990-12-22 07:00:00', '2011-08-29 12:13:18.197183', -31.2999992, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702678, '1959-07-24 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523373, '1981-06-28 00:00:00', '2011-10-28 23:23:47', 4.80000019, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702677, '1959-07-23 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081754, '1990-12-22 22:00:00', '2011-08-29 12:13:18.197183', -29.3999996, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783788, '2004-08-28 10:00:00', '2011-08-29 12:13:18.197183', 64.6699982, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874075, '1975-06-25 00:00:00', '2011-11-07 23:04:35', 680, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559793907, '2015-09-24 13:00:00', '2015-09-24 13:30:02.704658', 21.1100006, 434, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381355, '1974-05-19 00:00:00', '2011-10-28 20:03:47', 4.5999999, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487138487, '2013-08-22 06:00:00', '2013-09-04 15:39:39.002254', 315, 553, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493088, '1984-01-14 00:00:00', '2011-08-29 12:13:18.197183', 3.79999995, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942216, '1970-05-29 00:00:00', '2011-11-07 23:20:33', 100, 526, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625968, '1974-08-13 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383666466, '2000-11-30 23:59:59', '2012-03-28 17:13:22.275058', 0.343257606, 556, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821059, '1975-07-01 00:00:00', '2011-10-28 23:50:29', 4.4000001, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027762, '1972-01-29 00:00:00', '2011-10-28 19:25:56', -12.3000002, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380883281, '1973-07-29 00:00:00', '2011-11-07 23:06:30', 970, 526, 5316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821039, '1975-06-11 00:00:00', '2011-10-28 23:50:29', 1.60000002, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383689513, '2000-10-31 23:59:59', '2012-03-28 17:28:39.607355', 7.43541956, 558, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380883284, '1974-07-31 00:00:00', '2011-11-07 23:06:30', 1030, 526, 5316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383672082, '2000-05-31 23:59:59', '2012-03-28 21:06:34.12102', 5, 557, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903914, '1977-06-14 00:00:00', '2011-11-07 23:12:13', 520, 527, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985740, '1975-08-29 00:00:00', '2011-11-07 23:30:01', 710, 527, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383664142, '2000-09-30 23:59:59', '2012-03-28 17:11:58.168647', 19.3824272, 556, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915345, '1973-09-25 00:00:00', '2011-11-07 23:14:20', 340, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942224, '1969-07-28 00:00:00', '2011-11-07 23:20:33', 380, 527, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963589, '1971-11-27 00:00:00', '2011-11-07 23:25:31', 0, 528, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852518, '2006-02-11 07:00:00', '2011-08-29 12:13:18.197183', 4.0999999, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874107, '1973-10-17 00:00:00', '2011-11-07 23:04:35', 730, 527, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689691, '1990-08-30 00:00:00', '2011-10-28 20:38:54', 9, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265183, '1989-08-03 00:00:00', '2011-10-28 21:36:17', 11.1999998, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383672200, '2000-05-31 23:59:59', '2012-03-28 17:18:13.566709', 0.205573216, 557, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383682119, '2000-03-31 23:59:59', '2012-03-28 21:04:30.756322', 3.9000001, 558, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380883285, '1974-10-01 00:00:00', '2011-11-07 23:06:30', 530, 526, 5316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383688078, '2000-09-30 23:59:59', '2012-03-28 21:10:00.477419', 11.3000002, 558, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424186, '1989-09-28 00:00:00', '2011-08-29 12:13:18.197183', 19.7000008, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951135, '1966-05-30 00:00:00', '2011-11-14 15:45:05.745204', 90, 527, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559800337, '2015-09-24 15:00:00', '2015-09-24 15:30:02.895857', 3.96199989, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915336, '1972-07-01 00:00:00', '2011-11-07 23:14:20', 1160, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380919685, '1983-07-05 14:00:00', '2011-11-07 23:15:14', 818, 527, 6016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265219, '1989-09-08 00:00:00', '2011-10-28 21:36:17', 11.1000004, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383687101, '2000-08-31 23:59:59', '2012-03-28 21:09:06.984737', 13.5, 558, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381372, '1974-06-05 00:00:00', '2011-10-28 20:03:47', 4.30000019, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898615, '1975-03-27 00:00:00', '2011-11-07 23:11:09', 104, 528, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383684506, '2000-05-31 23:59:59', '2012-03-28 17:25:38.531922', 10.4380465, 558, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689695, '1990-09-03 00:00:00', '2011-10-28 20:38:54', 0.5, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383686429, '2000-07-31 23:59:59', '2012-03-28 17:26:48.275805', 16.0342064, 558, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903888, '1975-07-28 00:00:00', '2011-11-07 23:12:13', 520, 526, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265221, '1989-09-10 00:00:00', '2011-10-28 21:36:17', 6.30000019, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975958, '2006-10-31 00:00:00', '2011-08-29 12:13:18.197183', 2.72219992, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383670242, '2000-03-31 23:59:59', '2012-03-28 17:17:03.366035', 6.28140783, 557, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425175, '1989-04-02 00:00:00', '2011-08-29 12:13:18.197183', 4.5999999, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903894, '1976-08-30 00:00:00', '2011-11-07 23:12:13', 630, 526, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383677467, '2000-10-31 23:59:59', '2012-03-28 17:21:18.411579', 2.86866951, 557, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903891, '1975-11-03 00:00:00', '2011-11-07 23:12:13', 1170, 526, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (381005535, '1975-08-05 00:00:00', '2011-11-10 19:58:42', 1260, 526, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383683636, '2000-04-30 23:59:59', '2012-03-28 17:25:06.078969', 3.74923205, 558, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783769, '2004-08-27 15:00:00', '2011-08-29 12:13:18.197183', 80.4000015, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821061, '1975-07-03 00:00:00', '2011-10-28 23:50:29', 9.80000019, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383707200, '2000-12-31 23:59:59', '2012-03-28 17:40:00.226811', 70.3898315, 559, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898593, '1975-10-31 00:00:00', '2011-11-07 23:11:09', 540, 526, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358202, '2015-01-12 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945305, '1969-06-27 00:00:00', '2011-11-07 23:21:21', 670, 526, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383660002, '2000-05-31 23:59:59', '2012-03-28 21:06:08.015982', 12.3000002, 556, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821043, '1975-06-15 00:00:00', '2011-10-28 23:50:29', -0.100000001, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383695233, '2000-04-30 23:59:59', '2012-03-28 17:32:22.66584', 49.7751045, 559, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265178, '1989-07-29 00:00:00', '2011-10-28 21:36:17', 9.39999962, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383674439, '2000-07-31 23:59:59', '2012-03-28 17:19:31.355084', 9.3838644, 557, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970967, '1974-10-29 00:00:00', '2011-11-07 23:27:12', 460, 526, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383683134, '2000-04-30 23:59:59', '2012-03-28 21:05:27.086494', 6, 558, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380922327, '1969-08-30 00:00:00', '2011-11-07 23:15:58', 420, 527, 6116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898621, '1976-03-05 00:00:00', '2011-11-07 23:11:09', 119, 528, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903899, '1977-07-14 00:00:00', '2011-11-07 23:12:13', 570, 526, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985717, '1971-08-30 00:00:00', '2011-11-07 23:30:01', 410, 526, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381356, '1974-05-20 00:00:00', '2011-10-28 20:03:47', 6.69999981, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903910, '1976-08-30 00:00:00', '2011-11-07 23:12:13', 550, 527, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689673, '1990-08-12 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383668000, '2000-01-31 23:59:59', '2012-03-28 20:34:34.772801', -2.0999999, 557, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358172, '2015-03-13 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554318235, '2015-09-10 03:00:00', '2015-09-10 03:30:02.686051', 9.55000019, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559790822, '2015-09-24 12:00:00', '2015-09-24 12:30:03.478752', 16.6200008, 434, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383680817, '2000-01-31 23:59:59', '2012-03-28 17:23:24.833174', -9.19758415, 563, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380929113, '1978-02-06 00:00:00', '2011-11-07 23:17:34', 41, 528, 6316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985722, '1973-07-31 00:00:00', '2011-11-07 23:30:01', 330, 526, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383685253, '2000-06-30 23:59:59', '2012-03-28 17:26:06.026285', 11.2034016, 558, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265174, '1989-07-25 00:00:00', '2011-10-28 21:36:17', 12.8000002, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383698176, '2000-06-30 23:59:59', '2012-03-28 17:34:20.649333', 61.9755478, 559, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689683, '1990-08-22 00:00:00', '2011-10-28 20:38:54', 1, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383676213, '2000-09-30 23:59:59', '2012-03-28 17:20:33.95276', 14.3518648, 557, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383687543, '2000-08-31 23:59:59', '2012-03-28 17:27:28.39498', 18.2192879, 558, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821066, '1975-07-08 00:00:00', '2011-10-28 23:50:29', 8.10000038, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963563, '1972-08-31 00:00:00', '2011-11-07 23:25:31', 260, 526, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192010, '1991-05-09 00:00:00', '2011-08-29 12:13:18.197183', 9.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424207, '1989-10-19 00:00:00', '2011-08-29 12:13:18.197183', 9.10000038, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358167, '2015-03-08 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625952, '1974-07-28 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027771, '1972-02-07 00:00:00', '2011-10-28 19:25:56', -3.29999995, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383685578, '2000-06-30 23:59:59', '2012-03-28 17:26:17.753534', 16.0290432, 558, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702668, '1959-07-14 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942210, '1969-07-28 00:00:00', '2011-11-07 23:20:33', 410, 526, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898606, '1975-10-03 00:00:00', '2011-11-07 23:11:09', 170, 527, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424178, '1989-09-20 00:00:00', '2011-08-29 12:13:18.197183', 18, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383669026, '2000-02-29 23:59:59', '2012-03-28 21:02:55.135313', -1, 557, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383672946, '2000-06-30 23:59:59', '2012-03-28 17:18:39.472132', 9.39881611, 557, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951119, '1970-07-31 00:00:00', '2011-11-07 23:22:45', 310, 526, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970969, '1975-07-01 00:00:00', '2011-11-07 23:27:12', 710, 526, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980205, '1977-11-22 00:00:00', '2011-11-07 23:28:58', 10, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625976, '1974-08-21 00:00:00', '2011-08-29 12:13:18.197183', 0.800000012, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383675168, '2000-08-31 23:59:59', '2012-03-28 17:19:56.801228', 5.7089467, 557, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852549, '2006-02-12 14:00:00', '2011-08-29 12:13:18.197183', 8.80000019, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383681467, '2000-02-29 23:59:59', '2012-03-28 17:23:48.38072', -2.81654644, 558, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942228, '1970-08-29 00:00:00', '2011-11-07 23:20:33', 170, 527, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945322, '1970-02-26 00:00:00', '2011-11-07 23:21:21', 65, 528, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383680382, '2000-01-31 23:59:59', '2012-03-28 17:23:09.347981', -7.50592947, 558, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027809, '1972-03-16 00:00:00', '2011-10-28 19:25:56', 2.79999995, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381360, '1974-05-24 00:00:00', '2011-10-28 20:03:47', 9.30000019, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980164, '1979-08-21 00:00:00', '2011-11-07 23:28:58', 535, 526, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951133, '1969-10-30 00:00:00', '2011-11-07 23:22:45', 300, 527, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383652783, '2000-01-31 23:59:59', '2012-03-28 14:35:24.221368', 67.3981628, 559, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358166, '2015-03-07 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277919, '1957-12-01 00:00:00', '2011-08-29 12:13:18.197183', 6.69999981, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493089, '1984-01-15 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383699765, '2000-07-31 23:59:59', '2012-03-28 17:35:21.605583', 63.9945183, 559, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559796860, '2015-09-24 14:00:00', '2015-09-24 14:30:03.973543', 171.5, 447, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027804, '1972-03-11 00:00:00', '2011-10-28 19:25:56', -1, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383691461, '2000-12-31 23:59:59', '2012-03-28 17:29:50.141524', -4.90358448, 558, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970959, '1973-06-28 00:00:00', '2011-11-07 23:27:12', 730, 526, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383695951, '2000-05-31 23:59:59', '2012-03-28 17:32:51.187215', 42.65905, 559, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945318, '1970-10-29 00:00:00', '2011-11-07 23:21:21', 490, 527, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874110, '1974-02-21 00:00:00', '2011-11-07 23:04:35', 3570, 527, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277896, '1957-10-08 00:00:00', '2011-08-29 12:13:18.197183', 17.7999992, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383680070, '2000-01-31 23:59:59', '2012-03-28 20:34:21.856908', 1.29999995, 558, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191972, '1991-04-01 00:00:00', '2011-08-29 12:13:18.197183', 18.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889642, '1974-12-17 00:00:00', '2011-11-07 23:09:20', 2120, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915383, '1969-08-28 00:00:00', '2011-11-07 23:14:20', 610, 527, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493101, '1984-01-27 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358191, '2015-01-01 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975946, '2006-10-19 00:00:00', '2011-08-29 12:13:18.197183', 9.83300018, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783785, '2004-08-28 07:00:00', '2011-08-29 12:13:18.197183', 96.6999969, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980157, '1977-09-20 00:00:00', '2011-11-07 23:28:58', 300, 526, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191999, '1991-04-28 00:00:00', '2011-08-29 12:13:18.197183', 18.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380883280, '1973-06-29 00:00:00', '2011-11-07 23:06:30', 1300, 526, 5316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852505, '2006-02-10 18:00:00', '2011-08-29 12:13:18.197183', 4.80000019, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852547, '2006-02-12 12:00:00', '2011-08-29 12:13:18.197183', 9.19999981, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383656664, '2000-01-31 23:59:59', '2012-03-28 17:03:14.735635', -6.2602582, 561, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985738, '1974-08-29 00:00:00', '2011-11-07 23:30:01', 290, 527, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702674, '1959-07-20 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702669, '1959-07-15 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027763, '1972-01-30 00:00:00', '2011-10-28 19:25:56', -10.6000004, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383667288, '2000-12-31 23:59:59', '2012-03-28 17:13:52.640002', -3.08874226, 556, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559802837, '2015-09-24 16:00:00', '2015-09-24 16:30:03.045685', 0.100000001, 442, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383658479, '2000-03-31 23:59:59', '2012-03-28 17:04:24.187972', 2.04141331, 556, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383667423, '2000-12-31 23:59:59', '2012-03-28 17:13:57.396322', 0.00666410616, 556, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898611, '1974-11-28 00:00:00', '2011-11-07 23:11:09', 23, 528, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821047, '1975-06-19 00:00:00', '2011-10-28 23:50:29', 5.30000019, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277917, '1957-10-29 00:00:00', '2011-08-29 12:13:18.197183', 12.8000002, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821079, '1975-07-27 00:00:00', '2011-10-28 23:50:29', 5.30000019, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852519, '2006-02-11 08:00:00', '2011-08-29 12:13:18.197183', 4.30000019, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942214, '1969-11-28 00:00:00', '2011-11-07 23:20:33', 160, 526, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383668313, '2000-01-31 23:59:59', '2012-03-28 17:15:55.249036', -12.7123346, 557, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963564, '1972-09-29 00:00:00', '2011-11-07 23:25:31', 400, 526, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898628, '1977-02-27 00:00:00', '2011-11-07 23:11:09', 96, 528, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383673075, '2000-06-30 23:59:59', '2012-03-28 21:07:27.40493', 8, 557, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383663156, '2000-08-31 23:59:59', '2012-03-28 17:11:22.794074', 22.0815868, 556, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487142029, '2013-08-22 11:00:00', '2013-09-04 15:40:05.111065', 0, 550, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192019, '1991-05-18 00:00:00', '2011-08-29 12:13:18.197183', 25, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942236, '1971-01-29 00:00:00', '2011-11-07 23:20:33', 15, 528, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487142030, '2013-08-22 11:00:00', '2013-09-04 15:40:05.111065', 101.400002, 549, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980216, '1979-05-26 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383666851, '2000-12-31 23:59:59', '2012-03-28 17:13:36.866036', 6.80898094, 556, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383686122, '2000-07-31 23:59:59', '2012-03-28 21:08:07.884519', 13.1000004, 558, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383675046, '2000-08-31 23:59:59', '2012-03-28 21:09:20.286381', 10.3000002, 557, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192006, '1991-05-05 00:00:00', '2011-08-29 12:13:18.197183', 14, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915338, '1972-09-01 00:00:00', '2011-11-07 23:14:20', 340, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424187, '1989-09-29 00:00:00', '2011-08-29 12:13:18.197183', 19.8999996, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265208, '1989-08-28 00:00:00', '2011-10-28 21:36:17', 7, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625978, '1974-08-23 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975912, '2006-09-15 00:00:00', '2011-08-29 12:13:18.197183', 14.3888998, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874088, '1976-08-05 00:00:00', '2011-11-07 23:04:35', 470, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852506, '2006-02-10 19:00:00', '2011-08-29 12:13:18.197183', 3.5999999, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985721, '1972-10-05 00:00:00', '2011-11-07 23:30:01', 500, 526, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915330, '1971-08-01 00:00:00', '2011-11-07 23:14:20', 760, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027810, '1972-03-17 00:00:00', '2011-10-28 19:25:56', 1.10000002, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (384567489, '2012-05-15 06:00:00', '2012-05-16 00:00:04.327942', 4.9000001, 545, 8416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963587, '1973-09-29 00:00:00', '2011-11-07 23:25:31', 180, 527, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970966, '1974-09-28 00:00:00', '2011-11-07 23:27:12', 480, 526, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554250706, '2015-09-09 04:00:00', '2015-09-09 04:30:02.945516', 9.22000027, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559799914, '2015-09-24 15:00:00', '2015-09-24 15:30:02.895857', 154.5, 447, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689677, '1990-08-16 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963559, '1972-04-29 00:00:00', '2011-11-07 23:25:31', 60, 526, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383693922, '2000-03-31 23:59:59', '2012-03-28 17:31:34.017157', 55.8791924, 559, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383668376, '2000-01-31 23:59:59', '2012-03-28 17:15:57.358388', -9.95195389, 557, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942225, '1969-08-28 00:00:00', '2011-11-07 23:20:33', 30, 527, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702657, '1959-07-03 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942235, '1970-12-29 00:00:00', '2011-11-07 23:20:33', 25, 528, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383662437, '2000-07-31 23:59:59', '2012-03-28 17:10:56.790002', 25.7077389, 556, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559799912, '2015-09-24 15:00:00', '2015-09-24 15:30:02.895857', 970, 439, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942223, '1969-06-28 00:00:00', '2011-11-07 23:20:33', 610, 527, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852534, '2006-02-11 23:00:00', '2011-08-29 12:13:18.197183', 2.29999995, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942218, '1970-08-29 00:00:00', '2011-11-07 23:20:33', 180, 526, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383706944, '2000-12-31 23:59:59', '2012-03-28 17:39:51.051148', 57.3371506, 559, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951127, '1966-09-28 00:00:00', '2011-11-14 15:45:05.745204', 40, 526, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383662171, '2000-07-31 23:59:59', '2012-03-28 17:10:47.172418', 22.0515919, 556, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425203, '1989-04-30 00:00:00', '2011-08-29 12:13:18.197183', 24.8999996, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191986, '1991-04-15 00:00:00', '2011-08-29 12:13:18.197183', 19.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852543, '2006-02-12 08:00:00', '2011-08-29 12:13:18.197183', 4.69999981, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380919676, '1982-07-15 14:00:00', '2011-11-07 23:15:14', 892, 526, 6016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625963, '1974-08-08 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383705926, '2000-11-30 23:59:59', '2012-03-28 17:39:14.268086', 72.9835205, 559, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383683314, '2000-04-30 23:59:59', '2012-03-28 17:24:54.580385', 11.464138, 558, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945307, '1969-08-27 00:00:00', '2011-11-07 23:21:21', 140, 526, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975948, '2006-10-21 00:00:00', '2011-08-29 12:13:18.197183', 12.1110001, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081740, '1990-12-21 21:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915337, '1972-08-01 00:00:00', '2011-11-07 23:14:20', 630, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951115, '1969-09-30 00:00:00', '2011-11-07 23:22:45', 600, 526, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380922330, '1970-07-30 00:00:00', '2011-11-07 23:15:58', 190, 527, 6116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874095, '1977-04-21 00:00:00', '2011-11-07 23:04:35', 1350, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874111, '1974-03-19 00:00:00', '2011-11-07 23:04:35', 2360, 527, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (390551870, '2012-09-16 06:00:00', '2012-09-17 00:00:04.208308', 0, 546, 8516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493082, '1984-01-08 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383667869, '2000-01-31 23:59:59', '2012-03-28 17:15:40.035484', 2.21980524, 557, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493076, '1984-01-02 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975928, '2006-10-01 00:00:00', '2011-08-29 12:13:18.197183', 16.1110992, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424196, '1989-10-08 00:00:00', '2011-08-29 12:13:18.197183', 14.3000002, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915360, '1977-06-30 00:00:00', '2011-11-07 23:14:20', 490, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951111, '1969-06-02 00:00:00', '2011-11-07 23:22:45', 630, 526, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970976, '1974-08-30 00:00:00', '2011-11-07 23:27:12', 210, 527, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821053, '1975-06-25 00:00:00', '2011-10-28 23:50:29', 3.9000001, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192003, '1991-05-02 00:00:00', '2011-08-29 12:13:18.197183', 22, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559802836, '2015-09-24 16:00:00', '2015-09-24 16:30:03.045685', 6, 438, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689662, '1990-08-01 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702671, '1959-07-17 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383684319, '2000-05-31 23:59:59', '2012-03-28 17:25:31.485018', 14.4800615, 558, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383672807, '2000-05-31 23:59:59', '2012-03-28 17:18:34.301512', -5.74082232, 562, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975930, '2006-10-03 00:00:00', '2011-08-29 12:13:18.197183', 12.6111002, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702693, '1959-08-09 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380929101, '1977-07-06 00:00:00', '2011-11-07 23:17:34', 510, 526, 6316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192013, '1991-05-12 00:00:00', '2011-08-29 12:13:18.197183', 15, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985736, '1973-08-31 00:00:00', '2011-11-07 23:30:01', 380, 527, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358200, '2015-01-10 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425181, '1989-04-08 00:00:00', '2011-08-29 12:13:18.197183', 11.5, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425204, '1989-05-01 00:00:00', '2011-08-29 12:13:18.197183', 12.6999998, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383703471, '2000-09-30 23:59:59', '2012-03-28 17:37:37.065615', 14.4402981, 592, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383660997, '2000-06-30 23:59:59', '2012-03-28 21:07:01.706625', 14.1999998, 556, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027799, '1972-03-06 00:00:00', '2011-10-28 19:25:56', -10.1999998, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554335659, '2015-09-10 09:00:00', '2015-09-10 09:30:03.171393', 9.38000011, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493071, '1983-12-28 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898620, '1976-02-11 00:00:00', '2011-11-07 23:11:09', 116, 528, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874073, '1975-04-29 00:00:00', '2011-11-07 23:04:35', 710, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554253596, '2015-09-09 05:00:00', '2015-09-09 05:30:02.771235', 9.35000038, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975918, '2006-09-21 00:00:00', '2011-08-29 12:13:18.197183', 4.83330011, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523380, '1981-07-05 00:00:00', '2011-10-28 23:23:47', 8.10000038, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783800, '2004-08-28 22:00:00', '2011-08-29 12:13:18.197183', 90.5, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383659872, '2000-05-31 23:59:59', '2012-03-28 17:05:14.6933', 14.1556492, 556, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192001, '1991-04-30 00:00:00', '2011-08-29 12:13:18.197183', 21, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191997, '1991-04-26 00:00:00', '2011-08-29 12:13:18.197183', 14.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383691272, '2000-12-31 23:59:59', '2012-03-28 17:29:43.42427', 6.60405016, 558, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889657, '1975-01-14 00:00:00', '2011-11-07 23:09:20', 25, 528, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081743, '1990-12-22 00:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898589, '1975-06-27 00:00:00', '2011-11-07 23:11:09', 480, 526, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951129, '1969-06-30 00:00:00', '2011-11-07 23:22:45', 1780, 527, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559799916, '2015-09-24 15:00:00', '2015-09-24 15:30:02.895857', 20.9599991, 434, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424191, '1989-10-03 00:00:00', '2011-08-29 12:13:18.197183', 16.6000004, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821049, '1975-06-21 00:00:00', '2011-10-28 23:50:29', 2.4000001, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380929105, '1977-10-19 00:00:00', '2011-11-07 23:17:34', 330, 526, 6316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821073, '1975-07-21 00:00:00', '2011-10-28 23:50:29', 5.30000019, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358193, '2015-01-03 00:00:00', '2015-09-23 00:00:22.705906', 4.4000001, 429, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898626, '1977-01-03 00:00:00', '2011-11-07 23:11:09', 60, 528, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903908, '1976-06-28 00:00:00', '2011-11-07 23:12:13', 490, 527, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424175, '1989-09-17 00:00:00', '2011-08-29 12:13:18.197183', 5.4000001, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783798, '2004-08-28 20:00:00', '2011-08-29 12:13:18.197183', 85.5999985, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383670500, '2000-03-31 23:59:59', '2012-03-28 17:17:12.469479', -1.84800208, 557, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358163, '2015-03-04 00:00:00', '2015-09-23 00:00:22.705906', 1.39999998, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383697903, '2000-06-30 23:59:59', '2012-03-28 17:34:10.670842', 64.2799988, 559, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975937, '2006-10-10 00:00:00', '2011-08-29 12:13:18.197183', 14.5, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487139202, '2013-08-22 07:00:00', '2013-09-04 15:39:44.265985', 11.3999996, 551, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874076, '1975-07-30 00:00:00', '2011-11-07 23:04:35', 420, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192017, '1991-05-16 00:00:00', '2011-08-29 12:13:18.197183', 20, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265216, '1989-09-05 00:00:00', '2011-10-28 21:36:17', 13.3999996, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963572, '1971-05-28 00:00:00', '2011-11-07 23:25:31', 230, 527, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383661306, '2000-06-30 23:59:59', '2012-03-28 17:10:15.86232', 21.6419544, 556, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975943, '2006-10-16 00:00:00', '2011-08-29 12:13:18.197183', 12.3330002, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425179, '1989-04-06 00:00:00', '2011-08-29 12:13:18.197183', 9.60000038, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383677900, '2000-11-30 23:59:59', '2012-03-28 17:21:33.822458', 4.44041491, 557, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970970, '1975-07-30 00:00:00', '2011-11-07 23:27:12', 460, 526, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383701227, '2000-08-31 23:59:59', '2012-03-28 17:36:15.447494', 47.0149078, 559, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380929102, '1977-08-04 00:00:00', '2011-11-07 23:17:34', 570, 526, 6316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689670, '1990-08-09 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821058, '1975-06-30 00:00:00', '2011-10-28 23:50:29', 8.39999962, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (381005536, '1975-08-05 00:00:00', '2011-11-10 19:58:42', 1120, 527, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874102, '1978-06-08 00:00:00', '2011-11-07 23:04:35', 1085, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951117, '1970-05-31 00:00:00', '2011-11-07 23:22:45', 190, 526, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559799915, '2015-09-24 15:00:00', '2015-09-24 15:30:02.895857', 60.4799995, 448, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689696, '1990-09-04 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625964, '1974-08-09 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493103, '1984-01-29 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947891, '1970-09-28 00:00:00', '2011-11-07 23:22:02', 690, 526, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625947, '1974-07-23 00:00:00', '2011-08-29 12:13:18.197183', 2.5, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425205, '1989-05-02 00:00:00', '2011-08-29 12:13:18.197183', 13, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702685, '1959-08-01 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942234, '1970-11-26 00:00:00', '2011-11-07 23:20:33', 1, 528, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380883288, '1975-08-29 00:00:00', '2011-11-07 23:06:30', 960, 526, 5316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915325, '1969-08-28 00:00:00', '2011-11-07 23:14:20', 620, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889650, '1975-08-27 00:00:00', '2011-11-07 23:09:20', 1040, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081749, '1990-12-22 06:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424198, '1989-10-10 00:00:00', '2011-08-29 12:13:18.197183', 7.4000001, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821046, '1975-06-18 00:00:00', '2011-10-28 23:50:29', 1.89999998, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358203, '2015-01-13 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383664268, '2000-09-30 23:59:59', '2012-03-28 17:12:02.654061', 20.7172775, 556, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874108, '1973-11-15 00:00:00', '2011-11-07 23:04:35', 2640, 527, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947885, '1969-11-27 00:00:00', '2011-11-07 23:22:02', 670, 526, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963562, '1972-07-30 00:00:00', '2011-11-07 23:25:31', 400, 526, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383668893, '2000-02-29 23:59:59', '2012-03-28 17:16:15.174526', 2.82052112, 557, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783795, '2004-08-28 17:00:00', '2011-08-29 12:13:18.197183', 62.1100006, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874074, '1975-05-27 00:00:00', '2011-11-07 23:04:35', 1150, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783813, '2004-08-29 11:00:00', '2011-08-29 12:13:18.197183', 68.8300018, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980158, '1977-10-20 00:00:00', '2011-11-07 23:28:58', 490, 526, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947906, '1970-11-29 00:00:00', '2011-11-07 23:22:02', 10, 528, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383686240, '2000-07-31 23:59:59', '2012-03-28 17:26:41.624822', 13.7367783, 558, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487140613, '2013-08-22 09:00:00', '2013-09-04 15:39:54.76078', 101.5, 549, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874119, '1974-01-17 00:00:00', '2011-11-07 23:04:35', 10, 528, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383685315, '2000-06-30 23:59:59', '2012-03-28 17:26:08.231153', 17.0567799, 558, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383680254, '2000-01-31 23:59:59', '2012-03-28 17:22:56.381913', 6.44492865, 558, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425188, '1989-04-15 00:00:00', '2011-08-29 12:13:18.197183', 12.3000002, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963579, '1972-05-29 00:00:00', '2011-11-07 23:25:31', 330, 527, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963586, '1973-08-30 00:00:00', '2011-11-07 23:25:31', 40, 527, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980188, '1977-09-20 00:00:00', '2011-11-07 23:28:58', 290, 527, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874078, '1975-09-24 00:00:00', '2011-11-07 23:04:35', 1040, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898617, '1975-10-31 00:00:00', '2011-11-07 23:11:09', 8, 528, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951113, '1969-07-31 00:00:00', '2011-11-07 23:22:45', 330, 526, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559796865, '2015-09-24 14:00:00', '2015-09-24 14:30:03.973543', 32.2000008, 437, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425198, '1989-04-25 00:00:00', '2011-08-29 12:13:18.197183', 21.2999992, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265207, '1989-08-27 00:00:00', '2011-10-28 21:36:17', 7.30000019, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702670, '1959-07-16 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889651, '1975-09-24 00:00:00', '2011-11-07 23:09:20', 230, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425214, '1989-05-11 00:00:00', '2011-08-29 12:13:18.197183', 11.8000002, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523403, '1981-07-28 00:00:00', '2011-10-28 23:23:47', 7.5999999, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702700, '1959-08-16 00:00:00', '2011-08-29 12:13:18.197183', 2.5, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898598, '1976-10-29 00:00:00', '2011-11-07 23:11:09', 300, 526, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383707327, '2000-12-31 23:59:59', '2012-03-28 17:40:05.068235', 37.1695938, 559, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383684442, '2000-05-31 23:59:59', '2012-03-28 17:25:36.127217', 10.1074181, 558, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358181, '2015-03-22 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358185, '2015-03-26 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874113, '1974-05-17 00:00:00', '2011-11-07 23:04:35', 1070, 527, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383688941, '2000-10-31 23:59:59', '2012-03-28 17:28:19.137184', 9.97316647, 558, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265182, '1989-08-02 00:00:00', '2011-10-28 21:36:17', 13.3000002, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383666139, '2000-11-30 23:59:59', '2012-03-28 17:13:10.59135', 10.9472265, 556, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903903, '1977-11-14 00:00:00', '2011-11-07 23:12:13', 1520, 526, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487137764, '2013-08-22 05:00:00', '2013-09-04 15:39:33.442132', 4, 550, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783804, '2004-08-29 02:00:00', '2011-08-29 12:13:18.197183', 95.3000031, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383682303, '2000-03-31 23:59:59', '2012-03-28 17:24:18.444877', 8.87342167, 558, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915362, '1977-08-22 00:00:00', '2011-11-07 23:14:20', 240, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689680, '1990-08-19 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383685440, '2000-06-30 23:59:59', '2012-03-28 17:26:12.858641', 13.2986364, 558, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915355, '1975-09-29 00:00:00', '2011-11-07 23:14:20', 250, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783790, '2004-08-28 12:00:00', '2011-08-29 12:13:18.197183', 62.4599991, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970958, '1973-06-04 00:00:00', '2011-11-07 23:27:12', 440, 526, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898603, '1975-06-27 00:00:00', '2011-11-07 23:11:09', 480, 527, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425186, '1989-04-13 00:00:00', '2011-08-29 12:13:18.197183', 21.8999996, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192020, '1991-05-19 00:00:00', '2011-08-29 12:13:18.197183', 26.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980162, '1979-06-25 00:00:00', '2011-11-07 23:28:58', 815, 526, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383667098, '2000-12-31 23:59:59', '2012-03-28 17:13:45.805205', -4.35565042, 556, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852548, '2006-02-12 13:00:00', '2011-08-29 12:13:18.197183', 9.19999981, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975950, '2006-10-23 00:00:00', '2011-08-29 12:13:18.197183', 11.6667004, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702666, '1959-07-12 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559787928, '2015-09-24 11:00:00', '2015-09-24 11:30:02.616552', 10.6000004, 446, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821077, '1975-07-25 00:00:00', '2011-10-28 23:50:29', 5, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383691534, '2000-12-31 23:59:59', '2012-03-28 17:29:52.725324', -2.54577231, 558, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265192, '1989-08-12 00:00:00', '2011-10-28 21:36:17', 9, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821072, '1975-07-14 00:00:00', '2011-10-28 23:50:29', 4.69999981, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985716, '1971-07-30 00:00:00', '2011-11-07 23:30:01', 530, 526, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424194, '1989-10-06 00:00:00', '2011-08-29 12:13:18.197183', 16.5, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493074, '1983-12-31 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963555, '1971-07-30 00:00:00', '2011-11-07 23:25:31', 250, 526, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192008, '1991-05-07 00:00:00', '2011-08-29 12:13:18.197183', 15.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383687473, '2000-08-31 23:59:59', '2012-03-28 17:27:25.927989', 17.322176, 558, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383677024, '2000-10-31 23:59:59', '2012-03-28 21:11:06.258409', 4.69999981, 557, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963557, '1971-09-29 00:00:00', '2011-11-07 23:25:31', 330, 526, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852503, '2006-02-10 16:00:00', '2011-08-29 12:13:18.197183', 9.10000038, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783817, '2004-08-29 15:00:00', '2011-08-29 12:13:18.197183', 58.1599998, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425217, '1989-05-14 00:00:00', '2011-08-29 12:13:18.197183', 21.5, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277911, '1957-10-23 00:00:00', '2011-08-29 12:13:18.197183', 5.5999999, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625974, '1974-08-19 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383690963, '2000-12-31 23:59:59', '2012-03-28 17:29:32.147739', 4.65393591, 558, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425202, '1989-04-29 00:00:00', '2011-08-29 12:13:18.197183', 22.3999996, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358187, '2015-03-28 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942222, '1969-05-30 00:00:00', '2011-11-07 23:20:33', 230, 527, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383696526, '2000-05-31 23:59:59', '2012-03-28 17:33:12.801849', 70.8582306, 559, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383672520, '2000-05-31 23:59:59', '2012-03-28 17:18:24.444395', 5.95873594, 557, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689692, '1990-08-31 00:00:00', '2011-10-28 20:38:54', 4, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380922325, '1970-08-29 00:00:00', '2011-11-07 23:15:58', 160, 526, 6116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383685993, '2000-07-31 23:59:59', '2012-03-28 17:26:32.732472', 13.8138361, 558, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277927, '1957-12-09 00:00:00', '2011-08-29 12:13:18.197183', 10, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (57943743, '1980-10-30 00:00:00', '2011-08-29 12:13:18.197183', 6.5, 428, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898610, '1976-09-29 00:00:00', '2011-11-07 23:11:09', 370, 527, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383680582, '2000-01-31 23:59:59', '2012-03-28 17:23:16.477212', -11.0033083, 558, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963556, '1971-08-30 00:00:00', '2011-11-07 23:25:31', 90, 526, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915350, '1974-09-28 00:00:00', '2011-11-07 23:14:20', 260, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947884, '1969-10-27 00:00:00', '2011-11-07 23:22:02', 840, 526, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947881, '1969-07-27 00:00:00', '2011-11-07 23:22:02', 290, 526, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554341504, '2015-09-10 11:00:00', '2015-09-10 11:30:03.430397', 11.1300001, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493086, '1984-01-12 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383660303, '2000-05-31 23:59:59', '2012-03-28 17:05:30.119561', 18.1258469, 556, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081746, '1990-12-22 03:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942231, '1969-12-29 00:00:00', '2011-11-07 23:20:33', 5, 528, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383674919, '2000-08-31 23:59:59', '2012-03-28 17:19:47.971206', 10.5644941, 557, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380996489, '1981-08-04 12:20:00', '2011-11-07 23:32:08', 0, 528, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523386, '1981-07-11 00:00:00', '2011-10-28 23:23:47', 6.0999999, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980187, '1977-08-23 00:00:00', '2011-11-07 23:28:58', 310, 527, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425173, '1989-03-31 00:00:00', '2011-08-29 12:13:18.197183', 0, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425195, '1989-04-22 00:00:00', '2011-08-29 12:13:18.197183', 6.80000019, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383678401, '2000-11-30 23:59:59', '2012-03-28 17:21:51.6777', -3.58164144, 557, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358173, '2015-03-14 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383665132, '2000-10-31 23:59:59', '2012-03-28 17:12:33.731047', 15.0486126, 556, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903901, '1977-09-13 00:00:00', '2011-11-07 23:12:13', 640, 526, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942208, '1969-05-30 00:00:00', '2011-11-07 23:20:33', 250, 526, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383676895, '2000-10-31 23:59:59', '2012-03-28 17:20:58.191074', 7.07963419, 557, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903887, '1975-06-25 00:00:00', '2011-11-07 23:12:13', 320, 526, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383683004, '2000-04-30 23:59:59', '2012-03-28 17:24:43.452144', 8.58349228, 558, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874120, '1974-02-21 00:00:00', '2011-11-07 23:04:35', 0, 528, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625943, '1974-07-19 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027768, '1972-02-04 00:00:00', '2011-10-28 19:25:56', -4.5999999, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425213, '1989-05-10 00:00:00', '2011-08-29 12:13:18.197183', 6.80000019, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383676151, '2000-09-30 23:59:59', '2012-03-28 17:20:31.781873', 2.62304449, 557, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383668751, '2000-01-31 23:59:59', '2012-03-28 17:16:10.192041', -12.1349106, 562, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980186, '1976-08-25 00:00:00', '2011-11-07 23:28:58', 1370, 527, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383657838, '2000-03-31 23:59:59', '2012-03-28 17:04:00.970202', 10.0921049, 556, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383680445, '2000-01-31 23:59:59', '2012-03-28 17:23:11.595519', -5.88505554, 558, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265211, '1989-08-31 00:00:00', '2011-10-28 21:36:17', 9, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963590, '1972-01-01 00:00:00', '2011-11-07 23:25:31', 61, 528, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383681988, '2000-03-31 23:59:59', '2012-03-28 17:24:07.190513', 6.7265563, 558, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559796858, '2015-09-24 14:00:00', '2015-09-24 14:30:03.973543', 970, 439, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689659, '1990-07-29 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383701294, '2000-08-31 23:59:59', '2012-03-28 17:36:17.832389', 35.6125336, 559, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358189, '2015-03-30 00:00:00', '2015-09-23 00:00:22.705906', 3.5999999, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358161, '2015-03-02 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (53728782, '1979-11-06 00:00:00', '2011-08-29 12:13:18.197183', 7.5, 428, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493084, '1984-01-10 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554277038, '2015-09-09 13:00:00', '2015-09-09 13:30:03.377253', 11.04, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903912, '1976-10-26 00:00:00', '2011-11-07 23:12:13', 710, 527, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903900, '1977-08-19 00:00:00', '2011-11-07 23:12:13', 90, 526, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027772, '1972-02-08 00:00:00', '2011-10-28 19:25:56', -2.29999995, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947893, '1969-05-02 00:00:00', '2011-11-07 23:22:02', 790, 527, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963575, '1971-08-30 00:00:00', '2011-11-07 23:25:31', 100, 527, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898585, '1974-06-30 00:00:00', '2011-11-07 23:11:09', 190, 526, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821038, '1975-06-10 00:00:00', '2011-10-28 23:50:29', -0.699999988, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903918, '1974-11-27 00:00:00', '2011-11-07 23:12:13', 27, 528, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625958, '1974-08-03 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383663346, '2000-08-31 23:59:59', '2012-03-28 17:11:29.618577', 25.4487457, 556, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975947, '2006-10-20 00:00:00', '2011-08-29 12:13:18.197183', 15.7220001, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554271082, '2015-09-09 11:00:00', '2015-09-09 11:30:02.609121', 11.3100004, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702697, '1959-08-13 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277925, '1957-12-07 00:00:00', '2011-08-29 12:13:18.197183', 6.69999981, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554359233, '2015-09-10 17:00:00', '2015-09-10 17:30:03.521761', 14.2299995, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945312, '1970-07-29 00:00:00', '2011-11-07 23:21:21', 660, 526, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903923, '1975-11-03 00:00:00', '2011-11-07 23:12:13', 6, 528, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915348, '1974-07-29 00:00:00', '2011-11-07 23:14:20', 450, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963576, '1971-09-29 00:00:00', '2011-11-07 23:25:31', 350, 527, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980166, '1979-10-16 00:00:00', '2011-11-07 23:28:58', 58, 526, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702694, '1959-08-10 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951116, '1969-10-30 00:00:00', '2011-11-07 23:22:45', 310, 526, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942215, '1970-04-28 00:00:00', '2011-11-07 23:20:33', 220, 526, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081741, '1990-12-21 22:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081752, '1990-12-22 20:00:00', '2011-08-29 12:13:18.197183', -29.3999996, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191976, '1991-04-05 00:00:00', '2011-08-29 12:13:18.197183', 14, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493067, '1983-12-24 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424181, '1989-09-23 00:00:00', '2011-08-29 12:13:18.197183', 19.1000004, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (390551871, '2012-09-16 06:00:00', '2012-09-17 00:00:04.208308', 18.1000004, 544, 8516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625970, '1974-08-15 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383677330, '2000-10-31 23:59:59', '2012-03-28 17:21:13.60417', -1.61162853, 557, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980203, '1977-02-07 00:00:00', '2011-11-07 23:28:58', 24, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (57943745, '1980-11-01 00:00:00', '2011-08-29 12:13:18.197183', 13.5, 428, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383670944, '2000-04-30 23:59:59', '2012-03-28 17:17:28.351575', 5.33272839, 557, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383680189, '2000-01-31 23:59:59', '2012-03-28 17:22:54.080536', -10.9969511, 558, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874101, '1978-05-11 00:00:00', '2011-11-07 23:04:35', 882, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380922324, '1970-07-30 00:00:00', '2011-11-07 23:15:58', 190, 526, 6116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380929109, '1977-09-21 00:00:00', '2011-11-07 23:17:34', 570, 527, 6316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (57943747, '1980-11-03 00:00:00', '2011-08-29 12:13:18.197183', 10, 428, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559802835, '2015-09-24 16:00:00', '2015-09-24 16:30:03.045685', 21.3500004, 434, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383659729, '2000-04-30 23:59:59', '2012-03-28 17:05:09.484011', 3.32223058, 561, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889660, '1975-12-15 00:00:00', '2011-11-07 23:09:20', 13, 528, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915351, '1974-10-29 00:00:00', '2011-11-07 23:14:20', 380, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874100, '1977-09-28 00:00:00', '2011-11-07 23:04:35', 1529, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027781, '1972-02-17 00:00:00', '2011-10-28 19:25:56', -6.5, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980208, '1978-02-14 00:00:00', '2011-11-07 23:28:58', 33, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852529, '2006-02-11 18:00:00', '2011-08-29 12:13:18.197183', 4.9000001, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383671576, '2000-04-30 23:59:59', '2012-03-28 17:17:50.858879', -2.18823671, 557, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874094, '1977-03-16 00:00:00', '2011-11-07 23:04:35', 2770, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783774, '2004-08-27 20:00:00', '2011-08-29 12:13:18.197183', 92.0999985, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383658345, '2000-03-31 23:59:59', '2012-03-28 17:04:19.281599', 6.81380415, 556, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554353273, '2015-09-10 15:00:00', '2015-09-10 15:30:03.148264', 14.71, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383652525, '2000-01-31 23:59:59', '2012-03-28 14:35:06.585841', 170.553848, 559, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963554, '1971-06-29 00:00:00', '2011-11-07 23:25:31', 790, 526, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783814, '2004-08-29 12:00:00', '2011-08-29 12:13:18.197183', 65.4300003, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915322, '1969-05-28 00:00:00', '2011-11-07 23:14:20', 280, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493100, '1984-01-26 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424188, '1989-09-30 00:00:00', '2011-08-29 12:13:18.197183', 8.60000038, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493073, '1983-12-30 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383665827, '2000-11-30 23:59:59', '2012-03-28 17:12:58.951208', 9.44556427, 556, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380929108, '1977-08-24 00:00:00', '2011-11-07 23:17:34', 240, 527, 6316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277935, '1957-12-17 00:00:00', '2011-08-29 12:13:18.197183', 5, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915333, '1971-11-01 00:00:00', '2011-11-07 23:14:20', 390, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383658155, '2000-03-31 23:59:59', '2012-03-28 17:04:12.417562', 11.465435, 556, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383666404, '2000-11-30 23:59:59', '2012-03-28 17:13:20.061994', 4.43450451, 556, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383658090, '2000-03-31 23:59:59', '2012-03-28 17:04:09.967631', 3.2619226, 556, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380919677, '1982-08-18 12:10:00', '2011-11-07 23:15:14', 1262, 526, 6016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383661860, '2000-07-31 23:59:59', '2012-03-28 17:10:35.983553', 17.174427, 556, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358198, '2015-01-08 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383660367, '2000-05-31 23:59:59', '2012-03-28 17:05:32.381087', 17.5751648, 556, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358178, '2015-03-19 00:00:00', '2015-09-23 00:00:22.705906', 6.80000019, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975932, '2006-10-05 00:00:00', '2011-08-29 12:13:18.197183', 16.8330002, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915354, '1975-08-27 00:00:00', '2011-11-07 23:14:20', 710, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383675490, '2000-08-31 23:59:59', '2012-03-28 17:20:08.287572', 10.9246931, 557, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915363, '1977-09-19 00:00:00', '2011-11-07 23:14:20', 580, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523391, '1981-07-16 00:00:00', '2011-10-28 23:23:47', 8.19999981, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942232, '1970-01-27 00:00:00', '2011-11-07 23:20:33', 23, 528, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945314, '1970-09-28 00:00:00', '2011-11-07 23:21:21', 1000, 526, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383703110, '2000-09-30 23:59:59', '2012-03-28 17:37:23.91673', 146.804825, 592, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487137024, '2013-08-22 04:00:00', '2013-09-04 15:39:28.123839', 337.5, 553, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191998, '1991-04-27 00:00:00', '2011-08-29 12:13:18.197183', 15, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027766, '1972-02-02 00:00:00', '2011-10-28 19:25:56', -10.1000004, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383695166, '2000-04-30 23:59:59', '2012-03-28 17:32:20.268904', 35.474884, 559, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889638, '1974-08-15 00:00:00', '2011-11-07 23:09:20', 70, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559799919, '2015-09-24 15:00:00', '2015-09-24 15:30:02.895857', 32.5900002, 437, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554338632, '2015-09-10 10:00:00', '2015-09-10 10:30:02.635153', 9.43999958, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383660439, '2000-05-31 23:59:59', '2012-03-28 17:05:34.962169', 18.9954853, 556, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523385, '1981-07-10 00:00:00', '2011-10-28 23:23:47', 4.5999999, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821050, '1975-06-22 00:00:00', '2011-10-28 23:50:29', -1.20000005, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975955, '2006-10-28 00:00:00', '2011-08-29 12:13:18.197183', 12.8332996, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783816, '2004-08-29 14:00:00', '2011-08-29 12:13:18.197183', 58.7599983, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383661990, '2000-07-31 23:59:59', '2012-03-28 21:07:54.597564', 16.1000004, 556, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380929111, '1977-12-06 00:00:00', '2011-11-07 23:17:34', 22, 528, 6316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383681210, '2000-02-29 23:59:59', '2012-03-28 17:23:39.218674', -7.67143822, 558, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027773, '1972-02-09 00:00:00', '2011-10-28 19:25:56', -3.4000001, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277930, '1957-12-12 00:00:00', '2011-08-29 12:13:18.197183', 7.19999981, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358160, '2015-03-01 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277890, '1957-10-02 00:00:00', '2011-08-29 12:13:18.197183', 15.6000004, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424217, '1990-06-28 00:00:00', '2011-08-29 12:13:18.197183', 11.8999996, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852525, '2006-02-11 14:00:00', '2011-08-29 12:13:18.197183', 7.69999981, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874087, '1976-07-07 00:00:00', '2011-11-07 23:04:35', 2350, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874117, '1978-06-08 00:00:00', '2011-11-07 23:04:35', 1050, 527, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383702510, '2000-09-30 23:59:59', '2012-03-28 21:10:27.575888', 244, 559, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874096, '1977-05-11 00:00:00', '2011-11-07 23:04:35', 390, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970977, '1974-09-28 00:00:00', '2011-11-07 23:27:12', 480, 527, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383697581, '2000-06-30 23:59:59', '2012-03-28 17:33:58.922169', 43.7824707, 559, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383660728, '2000-05-31 23:59:59', '2012-03-28 17:05:45.314873', 4.70902109, 561, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963558, '1971-11-01 00:00:00', '2011-11-07 23:25:31', 160, 526, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689685, '1990-08-24 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (57943752, '1980-11-08 00:00:00', '2011-08-29 12:13:18.197183', 8, 428, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559787930, '2015-09-24 11:00:00', '2015-09-24 11:30:02.616552', 31.5599995, 448, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383658858, '2000-04-30 23:59:59', '2012-03-28 17:04:37.989884', 11.8342571, 556, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903893, '1976-07-27 00:00:00', '2011-11-07 23:12:13', 1040, 526, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898629, '1977-03-28 00:00:00', '2011-11-07 23:11:09', 103, 528, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383685004, '2000-06-30 23:59:59', '2012-03-28 17:25:57.176834', 12.2961044, 558, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783807, '2004-08-29 05:00:00', '2011-08-29 12:13:18.197183', 97.8000031, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383701495, '2000-08-31 23:59:59', '2012-03-28 17:36:25.098488', 119.54895, 592, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383693289, '2000-03-31 23:59:59', '2012-03-28 17:31:11.133058', 44.3033943, 559, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381357, '1974-05-21 00:00:00', '2011-10-28 20:03:47', 4.30000019, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821083, '1975-07-31 00:00:00', '2011-10-28 23:50:29', 5.80000019, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191980, '1991-04-09 00:00:00', '2011-08-29 12:13:18.197183', 8, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277894, '1957-10-06 00:00:00', '2011-08-29 12:13:18.197183', 11.1000004, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383682625, '2000-03-31 23:59:59', '2012-03-28 17:24:29.90395', -3.62469983, 558, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383681605, '2000-02-29 23:59:59', '2012-03-28 17:23:53.350512', -8.2967453, 558, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889656, '1976-05-06 00:00:00', '2011-11-07 23:09:20', 830, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383663828, '2000-09-30 23:59:59', '2012-03-28 17:11:46.939075', 16.972784, 556, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852520, '2006-02-11 09:00:00', '2011-08-29 12:13:18.197183', 5.19999981, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192000, '1991-04-29 00:00:00', '2011-08-29 12:13:18.197183', 20.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689657, '1990-07-27 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081737, '1990-12-21 18:00:00', '2011-08-29 12:13:18.197183', -29.3999996, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945311, '1970-06-28 00:00:00', '2011-11-07 23:21:21', 750, 526, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381370, '1974-06-03 00:00:00', '2011-10-28 20:03:47', 5.69999981, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027775, '1972-02-11 00:00:00', '2011-10-28 19:25:56', -8.30000019, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383703812, '2000-10-31 23:59:59', '2012-03-28 17:37:49.720171', 157.188705, 559, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947907, '1971-01-04 00:00:00', '2011-11-07 23:22:02', 41, 528, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027784, '1972-02-20 00:00:00', '2011-10-28 19:25:56', -7.4000001, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702676, '1959-07-22 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852514, '2006-02-11 03:00:00', '2011-08-29 12:13:18.197183', 4.9000001, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985718, '1971-10-30 00:00:00', '2011-11-07 23:30:01', 760, 526, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975925, '2006-09-28 00:00:00', '2011-08-29 12:13:18.197183', 22.7222004, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425196, '1989-04-23 00:00:00', '2011-08-29 12:13:18.197183', 12.8999996, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383686974, '2000-08-31 23:59:59', '2012-03-28 17:27:07.943848', 14.2189226, 558, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689697, '1990-09-05 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487137023, '2013-08-22 04:00:00', '2013-09-04 15:39:28.123839', 12.1999998, 551, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985719, '1972-07-30 00:00:00', '2011-11-07 23:30:01', 1010, 526, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689663, '1990-08-02 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (49967255, '1972-06-22 00:00:00', '2011-08-29 12:13:18.197183', 21.7000008, 428, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265186, '1989-08-06 00:00:00', '2011-10-28 21:36:17', 11.6999998, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487141326, '2013-08-22 10:00:00', '2013-09-04 15:39:59.910492', 16.3999996, 542, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487139200, '2013-08-22 07:00:00', '2013-09-04 15:39:44.265985', 1, 550, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383691595, '2000-12-31 23:59:59', '2012-03-28 17:29:54.970569', -9.67860508, 558, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975917, '2006-09-20 00:00:00', '2011-08-29 12:13:18.197183', 11.4443998, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027782, '1972-02-18 00:00:00', '2011-10-28 19:25:56', -4.5999999, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903906, '1975-07-28 00:00:00', '2011-11-07 23:12:13', 500, 527, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975944, '2006-10-17 00:00:00', '2011-08-29 12:13:18.197183', 9.55560017, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985723, '1973-08-31 00:00:00', '2011-11-07 23:30:01', 410, 526, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975929, '2006-10-02 00:00:00', '2011-08-29 12:13:18.197183', 15.8332996, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702681, '1959-07-28 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523374, '1981-06-29 00:00:00', '2011-10-28 23:23:47', 5.5, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970983, '1975-10-01 00:00:00', '2011-11-07 23:27:12', 150, 527, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424206, '1989-10-18 00:00:00', '2011-08-29 12:13:18.197183', 8.69999981, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383673938, '2000-07-31 23:59:59', '2012-03-28 17:19:14.267118', 10.4532442, 557, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383688263, '2000-09-30 23:59:59', '2012-03-28 17:27:54.416779', 16.8671455, 558, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554368008, '2015-09-10 20:00:00', '2015-09-10 20:30:03.559781', 13.3299999, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383664334, '2000-09-30 23:59:59', '2012-03-28 17:12:04.993287', 19.8605499, 556, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915341, '1973-05-30 00:00:00', '2011-11-07 23:14:20', 390, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027769, '1972-02-05 00:00:00', '2011-10-28 19:25:56', -4.5999999, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945326, '1971-01-30 00:00:00', '2011-11-07 23:21:21', 117, 528, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975920, '2006-09-23 00:00:00', '2011-08-29 12:13:18.197183', 4.83330011, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027774, '1972-02-10 00:00:00', '2011-10-28 19:25:56', -6.0999999, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559799918, '2015-09-24 15:00:00', '2015-09-24 15:30:02.895857', 0.100000001, 442, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383669145, '2000-02-29 23:59:59', '2012-03-28 17:16:24.056594', -12.7265434, 557, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625956, '1974-08-01 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383668184, '2000-01-31 23:59:59', '2012-03-28 17:15:50.792676', 4.27342749, 557, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383688389, '2000-09-30 23:59:59', '2012-03-28 17:27:58.873394', 11.7935143, 558, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265204, '1989-08-24 00:00:00', '2011-10-28 21:36:17', 14.1000004, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081731, '1990-12-21 12:00:00', '2011-08-29 12:13:18.197183', -30.1000004, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783811, '2004-08-29 09:00:00', '2011-08-29 12:13:18.197183', 78.5, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963584, '1973-06-29 00:00:00', '2011-11-07 23:25:31', 250, 527, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975914, '2006-09-17 00:00:00', '2011-08-29 12:13:18.197183', 18.5555992, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889644, '1975-03-04 00:00:00', '2011-11-07 23:09:20', 1810, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554344419, '2015-09-10 12:00:00', '2015-09-10 12:30:03.066476', 13.9499998, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383672581, '2000-05-31 23:59:59', '2012-03-28 17:18:26.582586', 1.77456915, 557, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985741, '1975-10-01 00:00:00', '2011-11-07 23:30:01', 140, 527, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383663957, '2000-09-30 23:59:59', '2012-03-28 21:09:47.865248', 14.8999996, 556, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383682491, '2000-03-31 23:59:59', '2012-03-28 17:24:25.136255', 1.15974295, 558, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970981, '1975-07-30 00:00:00', '2011-11-07 23:27:12', 460, 527, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689700, '1990-09-08 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081757, '1990-12-23 01:00:00', '2011-08-29 12:13:18.197183', -29.3999996, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947908, '1971-01-30 00:00:00', '2011-11-07 23:22:02', 63, 528, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425180, '1989-04-07 00:00:00', '2011-08-29 12:13:18.197183', 11.8999996, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383691209, '2000-12-31 23:59:59', '2012-03-28 17:29:41.196793', -8.23574352, 558, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554326911, '2015-09-10 06:00:00', '2015-09-10 06:30:02.506201', 8.64000034, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702699, '1959-08-15 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265187, '1989-08-07 00:00:00', '2011-10-28 21:36:17', 12.8999996, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980226, '1980-08-19 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383689190, '2000-10-31 23:59:59', '2012-03-28 17:28:28.082301', 3.39140773, 558, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383670565, '2000-03-31 23:59:59', '2012-03-28 17:17:14.767688', -9.29081249, 557, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358170, '2015-03-11 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (57943744, '1980-10-31 00:00:00', '2011-08-29 12:13:18.197183', 2, 428, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898597, '1976-09-29 00:00:00', '2011-11-07 23:11:09', 370, 526, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383702375, '2000-09-30 23:59:59', '2012-03-28 17:36:57.433205', 51.7590065, 559, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903928, '1976-03-29 00:00:00', '2011-11-07 23:12:13', 147, 528, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383678536, '2000-11-30 23:59:59', '2012-03-28 17:21:56.411004', -8.58425236, 557, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874116, '1978-05-11 00:00:00', '2011-11-07 23:04:35', 808, 527, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963585, '1973-07-30 00:00:00', '2011-11-07 23:25:31', 210, 527, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383699425, '2000-07-31 23:59:59', '2012-03-28 17:35:09.370204', 47.1351738, 559, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383668514, '2000-01-31 23:59:59', '2012-03-28 17:16:02.054358', -16.2184925, 557, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915324, '1969-07-28 00:00:00', '2011-11-07 23:14:20', 120, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915364, '1977-10-17 00:00:00', '2011-11-07 23:14:20', 520, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383657695, '2000-02-29 23:59:59', '2012-03-28 17:03:55.626804', -4.61848307, 561, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027796, '1972-03-03 00:00:00', '2011-10-28 19:25:56', -8.80000019, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523382, '1981-07-07 00:00:00', '2011-10-28 23:23:47', 3.79999995, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852544, '2006-02-12 09:00:00', '2011-08-29 12:13:18.197183', 6.5, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081736, '1990-12-21 17:00:00', '2011-08-29 12:13:18.197183', -29.3999996, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383679939, '2000-01-31 23:59:59', '2012-03-28 17:22:45.236568', 4.73587036, 558, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975913, '2006-09-16 00:00:00', '2011-08-29 12:13:18.197183', 15.2777996, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852538, '2006-02-12 03:00:00', '2011-08-29 12:13:18.197183', 4.5999999, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383679794, '2000-12-31 23:59:59', '2012-03-28 17:22:40.01475', -12.5547533, 562, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424218, '1990-06-29 00:00:00', '2011-08-29 12:13:18.197183', 11.5, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951126, '1966-08-30 00:00:00', '2011-11-14 15:45:05.745204', 310, 526, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425212, '1989-05-09 00:00:00', '2011-08-29 12:13:18.197183', 13.1999998, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265202, '1989-08-22 00:00:00', '2011-10-28 21:36:17', 14, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975939, '2006-10-12 00:00:00', '2011-08-29 12:13:18.197183', 17.5555992, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985729, '1975-10-01 00:00:00', '2011-11-07 23:30:01', 140, 526, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689688, '1990-08-27 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383703041, '2000-09-30 23:59:59', '2012-03-28 17:37:21.416725', 56.0158768, 559, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889636, '1974-06-18 00:00:00', '2011-11-07 23:09:20', 490, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383665071, '2000-10-31 23:59:59', '2012-03-28 17:12:31.550669', 7.84305573, 556, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383689070, '2000-10-31 23:59:59', '2012-03-28 21:10:53.555044', 7.9000001, 558, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625953, '1974-07-29 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383707138, '2000-12-31 23:59:59', '2012-03-28 17:39:57.965178', 66.1857681, 559, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783808, '2004-08-29 06:00:00', '2011-08-29 12:13:18.197183', 97.6999969, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980221, '1979-10-16 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380922322, '1970-04-28 00:00:00', '2011-11-07 23:15:58', 90, 526, 6116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265196, '1989-08-16 00:00:00', '2011-10-28 21:36:17', 11.8999996, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783776, '2004-08-27 22:00:00', '2011-08-29 12:13:18.197183', 96.0999985, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980169, '1980-07-22 00:00:00', '2011-11-07 23:28:58', 755, 526, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383683502, '2000-04-30 23:59:59', '2012-03-28 17:25:01.308688', 5.88726997, 558, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380929110, '1977-10-19 00:00:00', '2011-11-07 23:17:34', 310, 527, 6316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915385, '1971-06-01 00:00:00', '2011-11-07 23:14:20', 180, 527, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383670058, '2000-03-31 23:59:59', '2012-03-28 21:04:45.170453', 0.300000012, 557, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424197, '1989-10-09 00:00:00', '2011-08-29 12:13:18.197183', 13.5, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783786, '2004-08-28 08:00:00', '2011-08-29 12:13:18.197183', 87.4000015, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702659, '1959-07-05 00:00:00', '2011-08-29 12:13:18.197183', 16.7999992, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383692366, '2000-02-29 23:59:59', '2012-03-28 17:30:23.642342', 33.7782745, 559, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380929112, '1978-01-11 00:00:00', '2011-11-07 23:17:34', 51, 528, 6316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027777, '1972-02-13 00:00:00', '2011-10-28 19:25:56', -7.30000019, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383655784, '2000-01-31 23:59:59', '2012-03-28 17:02:21.12502', 7.25193548, 556, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383682238, '2000-03-31 23:59:59', '2012-03-28 17:24:16.078284', -2.78948402, 558, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554350337, '2015-09-10 14:00:00', '2015-09-10 14:30:03.702408', 13.3800001, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265189, '1989-08-09 00:00:00', '2011-10-28 21:36:17', 19.8999996, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383670367, '2000-03-31 23:59:59', '2012-03-28 17:17:07.779067', -5.63708258, 557, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625975, '1974-08-20 00:00:00', '2011-08-29 12:13:18.197183', 0.300000012, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980218, '1979-07-24 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980209, '1978-03-14 00:00:00', '2011-11-07 23:28:58', 2, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493098, '1984-01-24 00:00:00', '2011-08-29 12:13:18.197183', 2.5999999, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383702637, '2000-09-30 23:59:59', '2012-03-28 17:37:06.908331', 47.1025581, 559, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970968, '1975-05-29 00:00:00', '2011-11-07 23:27:12', 530, 526, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874118, '1978-07-31 00:00:00', '2011-11-07 23:04:35', 660, 527, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383664951, '2000-10-31 23:59:59', '2012-03-28 21:10:40.835669', 11.1000004, 556, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383656292, '2000-01-31 23:59:59', '2012-03-28 17:02:52.061715', -1.81815696, 556, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689693, '1990-09-01 00:00:00', '2011-10-28 20:38:54', 6, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980159, '1978-07-05 00:00:00', '2011-11-07 23:28:58', 350, 526, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821081, '1975-07-29 00:00:00', '2011-10-28 23:50:29', 5, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383671513, '2000-04-30 23:59:59', '2012-03-28 17:17:48.636068', 1.64441311, 557, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942230, '1970-10-29 00:00:00', '2011-11-07 23:20:33', 220, 527, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559790819, '2015-09-24 12:00:00', '2015-09-24 12:30:03.478752', 9.25, 446, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985734, '1971-08-30 00:00:00', '2011-11-07 23:30:01', 410, 527, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889641, '1974-11-15 00:00:00', '2011-11-07 23:09:20', 1310, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383673196, '2000-06-30 23:59:59', '2012-03-28 17:18:48.055167', 4.67794132, 557, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975936, '2006-10-09 00:00:00', '2011-08-29 12:13:18.197183', 14.2222004, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383660120, '2000-05-31 23:59:59', '2012-03-28 17:05:23.634519', 14.0603495, 556, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889659, '1975-12-12 00:00:00', '2011-11-07 23:09:20', 13, 528, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383701092, '2000-08-31 23:59:59', '2012-03-28 17:36:10.641702', 47.7846146, 559, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383662109, '2000-07-31 23:59:59', '2012-03-28 17:10:44.968819', 20.5672951, 556, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265194, '1989-08-14 00:00:00', '2011-10-28 21:36:17', 16.5, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192004, '1991-05-03 00:00:00', '2011-08-29 12:13:18.197183', 22.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277914, '1957-10-26 00:00:00', '2011-08-29 12:13:18.197183', 13.8999996, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554385753, '2015-09-11 02:00:00', '2015-09-11 02:30:02.608732', 12.0200005, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689672, '1990-08-11 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425192, '1989-04-19 00:00:00', '2011-08-29 12:13:18.197183', 11.3999996, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898587, '1974-08-31 00:00:00', '2011-11-07 23:11:09', 30, 526, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487138486, '2013-08-22 06:00:00', '2013-09-04 15:39:39.002254', 11.1999998, 551, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265180, '1989-07-31 00:00:00', '2011-10-28 21:36:17', 14.3999996, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821067, '1975-07-09 00:00:00', '2011-10-28 23:50:29', 8.89999962, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487139912, '2013-08-22 08:00:00', '2013-09-04 15:39:49.53403', 67, 552, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980220, '1979-09-18 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523381, '1981-07-06 00:00:00', '2011-10-28 23:23:47', 4.80000019, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898600, '1974-07-31 00:00:00', '2011-11-07 23:11:09', 410, 527, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383679356, '2000-12-31 23:59:59', '2012-03-28 17:22:24.954126', -10.9552879, 557, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383691090, '2000-12-31 23:59:59', '2012-03-28 21:12:38.778045', 2.20000005, 558, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383675550, '2000-08-31 23:59:59', '2012-03-28 17:20:10.401211', 7.00317907, 557, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487137770, '2013-08-22 05:00:00', '2013-09-04 15:39:33.442132', -0.0399999991, 555, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947880, '1969-06-27 00:00:00', '2011-11-07 23:22:02', 620, 526, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424210, '1989-10-22 00:00:00', '2011-08-29 12:13:18.197183', 0, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889647, '1975-05-27 00:00:00', '2011-11-07 23:09:20', 570, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081732, '1990-12-21 13:00:00', '2011-08-29 12:13:18.197183', -29.8999996, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383693411, '2000-03-31 23:59:59', '2012-03-28 17:31:15.619019', 118.056824, 559, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027792, '1972-02-28 00:00:00', '2011-10-28 19:25:56', -4.19999981, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951128, '1969-05-11 00:00:00', '2011-11-07 23:22:45', 610, 527, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702675, '1959-07-21 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970982, '1975-09-02 00:00:00', '2011-11-07 23:27:12', 1570, 527, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975924, '2006-09-27 00:00:00', '2011-08-29 12:13:18.197183', 22.7777996, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487137769, '2013-08-22 05:00:00', '2013-09-04 15:39:33.442132', 19.2000008, 542, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915361, '1977-07-25 00:00:00', '2011-11-07 23:14:20', 440, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487139203, '2013-08-22 07:00:00', '2013-09-04 15:39:44.265985', 247.5, 553, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383704384, '2000-10-31 23:59:59', '2012-03-28 17:38:19.035213', 41.3990593, 559, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027788, '1972-02-24 00:00:00', '2011-10-28 19:25:56', -8.30000019, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554356265, '2015-09-10 16:00:00', '2015-09-10 16:30:03.595924', 13.6099997, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191982, '1991-04-11 00:00:00', '2011-08-29 12:13:18.197183', 17, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783809, '2004-08-29 07:00:00', '2011-08-29 12:13:18.197183', 94.8000031, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383669926, '2000-03-31 23:59:59', '2012-03-28 17:16:52.052776', 3.36100745, 557, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383656364, '2000-01-31 23:59:59', '2012-03-28 17:02:56.435136', -0.904096663, 556, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821069, '1975-07-11 00:00:00', '2011-10-28 23:50:29', 8.89999962, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947896, '1970-05-29 00:00:00', '2011-11-07 23:22:02', 260, 527, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903895, '1976-09-28 00:00:00', '2011-11-07 23:12:13', 570, 526, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915357, '1976-05-19 00:00:00', '2011-11-07 23:14:20', 390, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383678151, '2000-11-30 23:59:59', '2012-03-28 17:21:42.818533', -6.22190046, 557, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702687, '1959-08-03 00:00:00', '2011-08-29 12:13:18.197183', 11.3999996, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277901, '1957-10-13 00:00:00', '2011-08-29 12:13:18.197183', 16.7000008, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277902, '1957-10-14 00:00:00', '2011-08-29 12:13:18.197183', 14.5, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493104, '1984-01-30 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559787931, '2015-09-24 11:00:00', '2015-09-24 11:30:02.616552', 13.5100002, 434, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265213, '1989-09-02 00:00:00', '2011-10-28 21:36:17', 9.19999981, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523375, '1981-06-30 00:00:00', '2011-10-28 23:23:47', 4, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915340, '1972-10-29 00:00:00', '2011-11-07 23:14:20', 330, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265220, '1989-09-09 00:00:00', '2011-10-28 21:36:17', 5, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625951, '1974-07-27 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783802, '2004-08-29 00:00:00', '2011-08-29 12:13:18.197183', 94.8000031, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898623, '1976-05-07 00:00:00', '2011-11-07 23:11:09', 29, 528, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487139909, '2013-08-22 08:00:00', '2013-09-04 15:39:49.53403', 101.5, 549, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383657058, '2000-02-29 23:59:59', '2012-03-28 17:03:32.489361', -2.61633277, 556, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915342, '1973-06-29 00:00:00', '2011-11-07 23:14:20', 700, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702658, '1959-07-04 00:00:00', '2011-08-29 12:13:18.197183', 10.8999996, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424208, '1989-10-20 00:00:00', '2011-08-29 12:13:18.197183', 3.5, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191992, '1991-04-21 00:00:00', '2011-08-29 12:13:18.197183', 27, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383690254, '2000-11-30 23:59:59', '2012-03-28 17:29:06.505795', 9.07082844, 558, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277903, '1957-10-15 00:00:00', '2011-08-29 12:13:18.197183', 12.1999998, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625966, '1974-08-11 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980211, '1978-05-09 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383701029, '2000-08-31 23:59:59', '2012-03-28 17:36:08.410671', 47.7272377, 559, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191974, '1991-04-03 00:00:00', '2011-08-29 12:13:18.197183', 9, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980154, '1976-08-25 00:00:00', '2011-11-07 23:28:58', 1460, 526, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487139908, '2013-08-22 08:00:00', '2013-09-04 15:39:49.53403', 2, 550, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383673258, '2000-06-30 23:59:59', '2012-03-28 17:18:50.148505', 14.229558, 557, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380919683, '1982-09-22 09:00:00', '2011-11-07 23:15:14', 612, 527, 6016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980206, '1977-12-20 00:00:00', '2011-11-07 23:28:58', 26, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493107, '1983-12-02 00:00:00', '2011-08-29 12:13:18.197183', 0, 430, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874103, '1978-07-31 00:00:00', '2011-11-07 23:04:35', 700, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265205, '1989-08-25 00:00:00', '2011-10-28 21:36:17', 8.80000019, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383652083, '2000-01-31 23:59:59', '2012-03-28 14:34:38.685226', 139.327164, 559, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358204, '2015-01-14 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383688455, '2000-09-30 23:59:59', '2012-03-28 17:28:01.214639', 12.4668427, 558, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358192, '2015-01-02 00:00:00', '2015-09-23 00:00:22.705906', 9.39999962, 429, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970974, '1973-08-30 00:00:00', '2011-11-07 23:27:12', 320, 527, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898596, '1976-09-03 00:00:00', '2011-11-07 23:11:09', 740, 526, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915331, '1971-09-01 00:00:00', '2011-11-07 23:14:20', 560, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874086, '1976-06-03 00:00:00', '2011-11-07 23:04:35', 1630, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985742, '1977-10-20 00:00:00', '2011-11-07 23:30:01', 290, 527, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493075, '1984-01-01 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027770, '1972-02-06 00:00:00', '2011-10-28 19:25:56', -3.29999995, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523392, '1981-07-17 00:00:00', '2011-10-28 23:23:47', 12.3999996, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383692434, '2000-02-29 23:59:59', '2012-03-28 17:30:26.013843', 138.955994, 559, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783779, '2004-08-28 01:00:00', '2011-08-29 12:13:18.197183', 96.1999969, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889658, '1975-03-04 00:00:00', '2011-11-07 23:09:20', 0, 528, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425199, '1989-04-26 00:00:00', '2011-08-29 12:13:18.197183', 9.89999962, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265190, '1989-08-10 00:00:00', '2011-10-28 21:36:17', 11.3999996, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424211, '1989-10-23 00:00:00', '2011-08-29 12:13:18.197183', 7.5999999, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383704450, '2000-10-31 23:59:59', '2012-03-28 17:38:21.497226', 48.9170341, 559, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383689944, '2000-11-30 23:59:59', '2012-03-28 17:28:55.273271', 6.94298983, 558, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383685505, '2000-06-30 23:59:59', '2012-03-28 17:26:15.130031', 14.1393528, 558, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980160, '1978-10-24 00:00:00', '2011-11-07 23:28:58', 802, 526, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852531, '2006-02-11 20:00:00', '2011-08-29 12:13:18.197183', 5.5, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889652, '1975-10-22 00:00:00', '2011-11-07 23:09:20', 920, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702686, '1959-08-02 00:00:00', '2011-08-29 12:13:18.197183', 1.5, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852535, '2006-02-12 00:00:00', '2011-08-29 12:13:18.197183', 5, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192007, '1991-05-06 00:00:00', '2011-08-29 12:13:18.197183', 15, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702690, '1959-08-06 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424216, '1990-06-27 00:00:00', '2011-08-29 12:13:18.197183', 13.1999998, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821078, '1975-07-26 00:00:00', '2011-10-28 23:50:29', 5.30000019, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383687603, '2000-08-31 23:59:59', '2012-03-28 17:27:30.559006', 13.8650885, 558, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383698302, '2000-06-30 23:59:59', '2012-03-28 17:34:25.656921', 125.92894, 592, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192002, '1991-05-01 00:00:00', '2011-08-29 12:13:18.197183', 21, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381358, '1974-05-22 00:00:00', '2011-10-28 20:03:47', 9, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554294596, '2015-09-09 19:00:00', '2015-09-09 19:30:02.830391', 10.8599997, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383656429, '2000-01-31 23:59:59', '2012-03-28 17:03:00.472964', -5.78812408, 556, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554365041, '2015-09-10 19:00:00', '2015-09-10 19:30:03.258177', 14.2799997, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903890, '1975-10-07 00:00:00', '2011-11-07 23:12:13', 910, 526, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852515, '2006-02-11 04:00:00', '2011-08-29 12:13:18.197183', 5.0999999, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277938, '1957-12-20 00:00:00', '2011-08-29 12:13:18.197183', 2.20000005, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424182, '1989-09-24 00:00:00', '2011-08-29 12:13:18.197183', 19.6000004, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358177, '2015-03-18 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523409, '1981-08-03 00:00:00', '2011-10-28 23:23:47', 9.89999962, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487139911, '2013-08-22 08:00:00', '2013-09-04 15:39:49.53403', 157.5, 553, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027803, '1972-03-10 00:00:00', '2011-10-28 19:25:56', -0.400000006, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947897, '1970-06-28 00:00:00', '2011-11-07 23:22:02', 610, 527, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970961, '1973-08-30 00:00:00', '2011-11-07 23:27:12', 320, 526, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985733, '1971-07-30 00:00:00', '2011-11-07 23:30:01', 520, 527, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970963, '1974-06-29 00:00:00', '2011-11-07 23:27:12', 660, 526, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191995, '1991-04-24 00:00:00', '2011-08-29 12:13:18.197183', 12, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852527, '2006-02-11 16:00:00', '2011-08-29 12:13:18.197183', 8, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947909, '1971-02-26 00:00:00', '2011-11-07 23:22:02', 56, 528, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383673521, '2000-06-30 23:59:59', '2012-03-28 17:18:59.10662', 9.51373577, 557, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903922, '1975-03-26 00:00:00', '2011-11-07 23:12:13', 165, 528, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383676341, '2000-09-30 23:59:59', '2012-03-28 17:20:38.452205', 2.86975098, 557, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975919, '2006-09-22 00:00:00', '2011-08-29 12:13:18.197183', 4.83330011, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383702836, '2000-09-30 23:59:59', '2012-03-28 17:37:14.033599', 37.8030434, 559, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383667161, '2000-12-31 23:59:59', '2012-03-28 17:13:48.068841', 8.59769821, 556, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783801, '2004-08-28 23:00:00', '2011-08-29 12:13:18.197183', 91.4000015, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559787932, '2015-09-24 11:00:00', '2015-09-24 11:30:02.616552', 8, 438, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523370, '1981-06-25 00:00:00', '2011-10-28 23:23:47', 5.0999999, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487138488, '2013-08-22 06:00:00', '2013-09-04 15:39:39.002254', 61, 552, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383678338, '2000-11-30 23:59:59', '2012-03-28 17:21:49.386508', -6.35228491, 557, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383652846, '2000-01-31 23:59:59', '2012-03-28 14:35:28.45312', 30.8200436, 559, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383676479, '2000-09-30 23:59:59', '2012-03-28 17:20:43.367579', 6.86436939, 557, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381367, '1974-05-31 00:00:00', '2011-10-28 20:03:47', 3.4000001, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191979, '1991-04-08 00:00:00', '2011-08-29 12:13:18.197183', 13, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424176, '1989-09-18 00:00:00', '2011-08-29 12:13:18.197183', 11.8999996, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903920, '1975-01-29 00:00:00', '2011-11-07 23:12:13', 113, 528, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380996494, '1983-04-19 10:08:00', '2011-11-07 23:32:08', 12, 528, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702680, '1959-07-26 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898590, '1975-07-31 00:00:00', '2011-11-07 23:11:09', 460, 526, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945320, '1969-12-31 00:00:00', '2011-11-07 23:21:21', 38, 528, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277891, '1957-10-03 00:00:00', '2011-08-29 12:13:18.197183', 13.3000002, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277932, '1957-12-14 00:00:00', '2011-08-29 12:13:18.197183', 3.29999995, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192018, '1991-05-17 00:00:00', '2011-08-29 12:13:18.197183', 24, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915343, '1973-08-01 00:00:00', '2011-11-07 23:14:20', 180, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358176, '2015-03-17 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383680959, '2000-02-29 23:59:59', '2012-03-28 17:23:30.152002', 5.74540091, 558, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027791, '1972-02-27 00:00:00', '2011-10-28 19:25:56', -5.80000019, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493065, '1983-12-22 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425197, '1989-04-24 00:00:00', '2011-08-29 12:13:18.197183', 19.2000008, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975951, '2006-10-24 00:00:00', '2011-08-29 12:13:18.197183', 10.6111002, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889637, '1974-07-18 00:00:00', '2011-11-07 23:09:20', 800, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381369, '1974-06-02 00:00:00', '2011-10-28 20:03:47', 7.4000001, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383705855, '2000-11-30 23:59:59', '2012-03-28 17:39:11.812473', 85.1927032, 559, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383696076, '2000-05-31 23:59:59', '2012-03-28 17:32:55.65541', 61.3123245, 559, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383657124, '2000-02-29 23:59:59', '2012-03-28 17:03:34.889976', 9.90163994, 556, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487140616, '2013-08-22 09:00:00', '2013-09-04 15:39:54.76078', 17.7000008, 542, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898612, '1974-12-31 00:00:00', '2011-11-07 23:11:09', 56, 528, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027761, '1972-01-28 00:00:00', '2011-10-28 19:25:56', -14.1999998, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493062, '1983-12-19 00:00:00', '2011-08-29 12:13:18.197183', 1.39999998, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898618, '1975-12-09 00:00:00', '2011-11-07 23:11:09', 83, 528, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380922323, '1970-05-30 00:00:00', '2011-11-07 23:15:58', 150, 526, 6116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383705224, '2000-11-30 23:59:59', '2012-03-28 17:38:50.105179', 147.210754, 559, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265200, '1989-08-20 00:00:00', '2011-10-28 21:36:17', 10.3999996, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383699489, '2000-07-31 23:59:59', '2012-03-28 17:35:11.610269', 44.3153839, 559, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852511, '2006-02-11 00:00:00', '2011-08-29 12:13:18.197183', 5.19999981, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027787, '1972-02-23 00:00:00', '2011-10-28 19:25:56', -7.5, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383693857, '2000-03-31 23:59:59', '2012-03-28 17:31:31.521039', 38.5834084, 559, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963561, '1972-06-28 00:00:00', '2011-11-07 23:25:31', 530, 526, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947894, '1969-05-29 00:00:00', '2011-11-07 23:22:02', 340, 527, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975938, '2006-10-11 00:00:00', '2011-08-29 12:13:18.197183', 17.5555992, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425177, '1989-04-04 00:00:00', '2011-08-29 12:13:18.197183', 7.19999981, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852546, '2006-02-12 11:00:00', '2011-08-29 12:13:18.197183', 8, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951125, '1966-07-30 00:00:00', '2011-11-14 15:45:05.745204', 360, 526, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487137766, '2013-08-22 05:00:00', '2013-09-04 15:39:33.442132', 12, 551, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383692248, '2000-02-29 23:59:59', '2012-03-28 21:03:09.525808', 203.899994, 559, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383657316, '2000-02-29 23:59:59', '2012-03-28 17:03:41.721422', 2.00587606, 556, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383696394, '2000-05-31 23:59:59', '2012-03-28 17:33:07.754945', 76.3730774, 559, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424184, '1989-09-26 00:00:00', '2011-08-29 12:13:18.197183', 13.3000002, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027794, '1972-03-01 00:00:00', '2011-10-28 19:25:56', -9.69999981, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852523, '2006-02-11 12:00:00', '2011-08-29 12:13:18.197183', 7.4000001, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424204, '1989-10-16 00:00:00', '2011-08-29 12:13:18.197183', 1.10000002, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380883290, '1975-10-23 00:00:00', '2011-11-07 23:06:30', 3320, 526, 5316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559803279, '2015-09-24 16:00:00', '2015-09-24 16:30:03.045685', 4.04699993, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265218, '1989-09-07 00:00:00', '2011-10-28 21:36:17', 8.5, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383687951, '2000-09-30 23:59:59', '2012-03-28 17:27:43.239125', 13.3432999, 558, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424177, '1989-09-19 00:00:00', '2011-08-29 12:13:18.197183', 13, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821044, '1975-06-16 00:00:00', '2011-10-28 23:50:29', 1, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559784815, '2015-09-24 10:00:00', '2015-09-24 10:30:02.529049', 75.8399963, 437, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191993, '1991-04-22 00:00:00', '2011-08-29 12:13:18.197183', 25, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425206, '1989-05-03 00:00:00', '2011-08-29 12:13:18.197183', 18.5, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874099, '1977-08-30 00:00:00', '2011-11-07 23:04:35', 690, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852536, '2006-02-12 01:00:00', '2011-08-29 12:13:18.197183', 4.80000019, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874085, '1976-05-06 00:00:00', '2011-11-07 23:04:35', 970, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383658716, '2000-03-31 23:59:59', '2012-03-28 17:04:32.793286', -1.70523345, 561, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625944, '1974-07-20 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (53728783, '1979-11-07 00:00:00', '2011-08-29 12:13:18.197183', 5, 428, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383665456, '2000-10-31 23:59:59', '2012-03-28 17:12:45.426595', 10.0971661, 556, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980170, '1980-08-19 00:00:00', '2011-11-07 23:28:58', 630, 526, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852537, '2006-02-12 02:00:00', '2011-08-29 12:13:18.197183', 4.5999999, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689676, '1990-08-15 00:00:00', '2011-10-28 20:38:54', 2.5, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277915, '1957-10-27 00:00:00', '2011-08-29 12:13:18.197183', 14.5, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559799917, '2015-09-24 15:00:00', '2015-09-24 15:30:02.895857', 4, 438, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874084, '1976-04-08 00:00:00', '2011-11-07 23:04:35', 2040, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915359, '1977-05-27 00:00:00', '2011-11-07 23:14:20', 370, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915382, '1969-07-28 00:00:00', '2011-11-07 23:14:20', 120, 527, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559790821, '2015-09-24 12:00:00', '2015-09-24 12:30:03.478752', 39.2700005, 448, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523401, '1981-07-26 00:00:00', '2011-10-28 23:23:47', 11, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081742, '1990-12-21 23:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383671811, '2000-04-30 23:59:59', '2012-03-28 17:17:59.237946', -5.50005341, 562, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821084, '1975-08-01 00:00:00', '2011-10-28 23:50:29', 3.9000001, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265197, '1989-08-17 00:00:00', '2011-10-28 21:36:17', 13.3999996, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903925, '1976-01-05 00:00:00', '2011-11-07 23:12:13', 142, 528, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625941, '1974-07-17 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554262350, '2015-09-09 08:00:00', '2015-09-09 08:30:02.689043', 9.93999958, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947904, '1970-02-27 00:00:00', '2011-11-07 23:22:02', 43, 528, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945315, '1970-10-29 00:00:00', '2011-11-07 23:21:21', 490, 526, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625942, '1974-07-18 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559793910, '2015-09-24 13:00:00', '2015-09-24 13:30:02.704658', 33.7000008, 437, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945316, '1970-08-29 00:00:00', '2011-11-07 23:21:21', 170, 527, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383659169, '2000-04-30 23:59:59', '2012-03-28 17:04:49.087068', 14.2062168, 556, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980168, '1980-06-24 00:00:00', '2011-11-07 23:28:58', 1130, 526, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493096, '1984-01-22 00:00:00', '2011-08-29 12:13:18.197183', 0.400000006, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425209, '1989-05-06 00:00:00', '2011-08-29 12:13:18.197183', 18.5, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915326, '1969-10-01 00:00:00', '2011-11-07 23:14:20', 900, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493078, '1984-01-04 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383683438, '2000-04-30 23:59:59', '2012-03-28 17:24:59.048892', 5.61152029, 558, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523379, '1981-07-04 00:00:00', '2011-10-28 23:23:47', 5.4000001, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554282868, '2015-09-09 15:00:00', '2015-09-09 15:30:04.846275', 10.7399998, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951114, '1969-08-31 00:00:00', '2011-11-07 23:22:45', 40, 526, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277895, '1957-10-07 00:00:00', '2011-08-29 12:13:18.197183', 10, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947903, '1970-01-30 00:00:00', '2011-11-07 23:22:02', 58, 528, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265181, '1989-08-01 00:00:00', '2011-10-28 21:36:17', 18, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383696212, '2000-05-31 23:59:59', '2012-03-28 21:06:48.500785', 139.5, 559, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852524, '2006-02-11 13:00:00', '2011-08-29 12:13:18.197183', 8.10000038, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487139910, '2013-08-22 08:00:00', '2013-09-04 15:39:49.53403', 11.6000004, 551, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487141325, '2013-08-22 10:00:00', '2013-09-04 15:39:59.910492', 72, 552, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383662298, '2000-07-31 23:59:59', '2012-03-28 17:10:51.711573', 25.4621334, 556, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383695306, '2000-04-30 23:59:59', '2012-03-28 17:32:25.26322', 38.0148659, 559, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425194, '1989-04-21 00:00:00', '2011-08-29 12:13:18.197183', 7.19999981, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424174, '1989-09-16 00:00:00', '2011-08-29 12:13:18.197183', 5.80000019, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559793903, '2015-09-24 13:00:00', '2015-09-24 13:30:02.704658', 970, 439, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277899, '1957-10-11 00:00:00', '2011-08-29 12:13:18.197183', 16.7000008, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383658989, '2000-04-30 23:59:59', '2012-03-28 21:05:13.951511', 9.89999962, 556, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383693725, '2000-03-31 23:59:59', '2012-03-28 17:31:26.848159', 125.707413, 559, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975954, '2006-10-27 00:00:00', '2011-08-29 12:13:18.197183', 13.7222004, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383660180, '2000-05-31 23:59:59', '2012-03-28 17:05:25.754175', 17.3686638, 556, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383706695, '2000-12-31 23:59:59', '2012-03-28 17:39:42.142857', 241.466461, 559, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425174, '1989-04-01 00:00:00', '2011-08-29 12:13:18.197183', 2.5, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380922329, '1970-04-28 00:00:00', '2011-11-07 23:15:58', 90, 527, 6116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903924, '1975-12-01 00:00:00', '2011-11-07 23:12:13', 51, 528, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523399, '1981-07-24 00:00:00', '2011-10-28 23:23:47', 5.5, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821068, '1975-07-10 00:00:00', '2011-10-28 23:50:29', 8.39999962, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821051, '1975-06-23 00:00:00', '2011-10-28 23:50:29', -0.100000001, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898594, '1976-07-02 00:00:00', '2011-11-07 23:11:09', 420, 526, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380883282, '1973-09-29 00:00:00', '2011-11-07 23:06:30', 1030, 526, 5316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980201, '1976-12-09 00:00:00', '2011-11-07 23:28:58', 37, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898591, '1975-09-04 00:00:00', '2011-11-07 23:11:09', 850, 526, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852507, '2006-02-10 20:00:00', '2011-08-29 12:13:18.197183', 5.19999981, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625962, '1974-08-07 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951134, '1970-05-31 00:00:00', '2011-11-07 23:22:45', 180, 527, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383670430, '2000-03-31 23:59:59', '2012-03-28 17:17:09.986354', -4.49431849, 557, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980213, '1978-07-05 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947899, '1970-08-29 00:00:00', '2011-11-07 23:22:02', 150, 527, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383683871, '2000-04-30 23:59:59', '2012-03-28 17:25:14.456366', -1.08891141, 563, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191975, '1991-04-04 00:00:00', '2011-08-29 12:13:18.197183', 15, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425215, '1989-05-12 00:00:00', '2011-08-29 12:13:18.197183', 13.8000002, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852513, '2006-02-11 02:00:00', '2011-08-29 12:13:18.197183', 5.5999999, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380883286, '1975-06-26 00:00:00', '2011-11-07 23:06:30', 560, 526, 5316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493063, '1983-12-20 00:00:00', '2011-08-29 12:13:18.197183', 2.79999995, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383706830, '2000-12-31 23:59:59', '2012-03-28 21:13:05.856371', 302, 559, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689660, '1990-07-30 00:00:00', '2011-10-28 20:38:54', 4.5, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425200, '1989-04-27 00:00:00', '2011-08-29 12:13:18.197183', 12.8000002, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383670177, '2000-03-31 23:59:59', '2012-03-28 17:17:01.002551', -8.84089088, 557, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027786, '1972-02-22 00:00:00', '2011-10-28 19:25:56', -5.69999981, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (27795090, '1985-09-01 00:00:00', '2011-08-29 12:13:18.197183', 19, 428, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383673448, '2000-06-30 23:59:59', '2012-03-28 17:18:56.635294', 7.0684123, 557, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947879, '1969-05-29 00:00:00', '2011-11-07 23:22:02', 360, 526, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383662497, '2000-07-31 23:59:59', '2012-03-28 17:10:58.917367', 21.5801468, 556, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383704189, '2000-10-31 23:59:59', '2012-03-28 17:38:03.655709', 54.1513062, 559, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380929100, '1977-06-24 00:00:00', '2011-11-07 23:17:34', 500, 526, 6316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903907, '1975-10-07 00:00:00', '2011-11-07 23:12:13', 730, 527, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383703933, '2000-10-31 23:59:59', '2012-03-28 17:37:54.126082', 115.988861, 559, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689704, '1990-09-12 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358180, '2015-03-21 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889640, '1974-10-17 00:00:00', '2011-11-07 23:09:20', 860, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942220, '1970-10-29 00:00:00', '2011-11-07 23:20:33', 230, 526, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689682, '1990-08-21 00:00:00', '2011-10-28 20:38:54', 6, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381377, '1974-06-10 00:00:00', '2011-10-28 20:03:47', 5.80000019, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702683, '1959-07-30 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383692704, '2000-02-29 23:59:59', '2012-03-28 17:30:35.724874', 46.6588478, 559, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975959, '2006-11-01 00:00:00', '2011-08-29 12:13:18.197183', 1.94439995, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963588, '1973-10-26 00:00:00', '2011-11-07 23:25:31', 170, 527, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383659358, '2000-04-30 23:59:59', '2012-03-28 17:04:55.95968', 12.6452169, 556, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889639, '1974-09-17 00:00:00', '2011-11-07 23:09:20', 610, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (44478647, '1972-06-19 00:00:00', '2011-08-29 12:13:18.197183', 22.7999992, 428, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523384, '1981-07-09 00:00:00', '2011-10-28 23:23:47', 4.19999981, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487141327, '2013-08-22 10:00:00', '2013-09-04 15:39:59.910492', -0.0199999996, 555, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383657252, '2000-02-29 23:59:59', '2012-03-28 17:03:39.437402', 2.10191727, 556, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380919679, '1982-10-18 15:00:00', '2011-11-07 23:15:14', 317, 526, 6016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358186, '2015-03-27 00:00:00', '2015-09-23 00:00:22.705906', 11.3999996, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383671378, '2000-04-30 23:59:59', '2012-03-28 17:17:43.884826', -2.11283112, 557, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383686302, '2000-07-31 23:59:59', '2012-03-28 17:26:43.802659', 19.2880459, 558, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277889, '1957-10-01 00:00:00', '2011-08-29 12:13:18.197183', 16.1000004, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889648, '1975-06-25 00:00:00', '2011-11-07 23:09:20', 770, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980202, '1977-01-11 00:00:00', '2011-11-07 23:28:58', 36, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903916, '1977-08-19 00:00:00', '2011-11-07 23:12:13', 80, 527, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265214, '1989-09-03 00:00:00', '2011-10-28 21:36:17', 6.19999981, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554303260, '2015-09-09 22:00:00', '2015-09-09 22:30:02.279697', 9.89999962, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783784, '2004-08-28 06:00:00', '2011-08-29 12:13:18.197183', 98.5999985, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358196, '2015-01-06 00:00:00', '2015-09-23 00:00:22.705906', 9.60000038, 429, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947900, '1970-09-28 00:00:00', '2011-11-07 23:22:02', 670, 527, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689698, '1990-09-06 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523377, '1981-07-02 00:00:00', '2011-10-28 23:23:47', 9.5, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424215, '1990-06-26 00:00:00', '2011-08-29 12:13:18.197183', 13.3000002, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265210, '1989-08-30 00:00:00', '2011-10-28 21:36:17', 11.6999998, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383686494, '2000-07-31 23:59:59', '2012-03-28 17:26:50.555525', 17.2391167, 558, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277909, '1957-10-21 00:00:00', '2011-08-29 12:13:18.197183', 14.5, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487138490, '2013-08-22 06:00:00', '2013-09-04 15:39:39.002254', -0.0199999996, 555, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383688201, '2000-09-30 23:59:59', '2012-03-28 17:27:52.21756', 8.6908083, 558, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821040, '1975-06-12 00:00:00', '2011-10-28 23:50:29', -2.0999999, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277900, '1957-10-12 00:00:00', '2011-08-29 12:13:18.197183', 12.1999998, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689671, '1990-08-10 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980153, '1976-07-20 00:00:00', '2011-11-07 23:28:58', 490, 526, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424202, '1989-10-14 00:00:00', '2011-08-29 12:13:18.197183', 4.9000001, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383670802, '2000-03-31 23:59:59', '2012-03-28 17:17:23.199141', -9.20795536, 562, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942226, '1969-09-28 00:00:00', '2011-11-07 23:20:33', 270, 527, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559790818, '2015-09-24 12:00:00', '2015-09-24 12:30:03.478752', 970, 439, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380929103, '1977-08-24 00:00:00', '2011-11-07 23:17:34', 260, 526, 6316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358171, '2015-03-12 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554300435, '2015-09-09 21:00:00', '2015-09-09 21:30:03.800173', 9.85000038, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191991, '1991-04-20 00:00:00', '2011-08-29 12:13:18.197183', 25.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852522, '2006-02-11 11:00:00', '2011-08-29 12:13:18.197183', 9.10000038, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277912, '1957-10-24 00:00:00', '2011-08-29 12:13:18.197183', 12.1999998, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963571, '1973-10-26 00:00:00', '2011-11-07 23:25:31', 210, 526, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487137025, '2013-08-22 04:00:00', '2013-09-04 15:39:28.123839', 60, 552, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383694968, '2000-04-30 23:59:59', '2012-03-28 17:32:13.201243', 21.2623158, 559, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783799, '2004-08-28 21:00:00', '2011-08-29 12:13:18.197183', 89, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381361, '1974-05-25 00:00:00', '2011-10-28 20:03:47', 9, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383681404, '2000-02-29 23:59:59', '2012-03-28 17:23:46.098467', -3.48499918, 558, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358190, '2015-03-31 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265188, '1989-08-08 00:00:00', '2011-10-28 21:36:17', 14.3999996, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383679554, '2000-12-31 23:59:59', '2012-03-28 17:22:31.763637', -14.6772909, 557, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915339, '1972-09-29 00:00:00', '2011-11-07 23:14:20', 420, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852516, '2006-02-11 05:00:00', '2011-08-29 12:13:18.197183', 4.69999981, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554259391, '2015-09-09 07:00:00', '2015-09-09 07:30:02.252077', 9.59000015, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625972, '1974-08-17 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191984, '1991-04-13 00:00:00', '2011-08-29 12:13:18.197183', 20.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383669340, '2000-02-29 23:59:59', '2012-03-28 17:16:30.939488', -9.07191563, 557, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381368, '1974-06-01 00:00:00', '2011-10-28 20:03:47', 9, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523383, '1981-07-08 00:00:00', '2011-10-28 23:23:47', 4, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383668119, '2000-01-31 23:59:59', '2012-03-28 17:15:48.592565', -15.2494583, 557, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424213, '1990-06-24 00:00:00', '2011-08-29 12:13:18.197183', 16.3999996, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985730, '1975-10-29 00:00:00', '2011-11-07 23:30:01', 630, 526, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945310, '1969-11-27 00:00:00', '2011-11-07 23:21:21', 1570, 526, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383656035, '2000-01-31 23:59:59', '2012-03-28 17:02:36.273667', -6.74444294, 556, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380883289, '1975-09-25 00:00:00', '2011-11-07 23:06:30', 190, 526, 5316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383685133, '2000-06-30 23:59:59', '2012-03-28 21:07:14.342204', 11.1000004, 558, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554370976, '2015-09-10 21:00:00', '2015-09-10 21:30:03.080638', 13.1000004, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383659107, '2000-04-30 23:59:59', '2012-03-28 17:04:46.909109', 8.84557438, 556, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559790825, '2015-09-24 12:00:00', '2015-09-24 12:30:03.478752', 59.2099991, 437, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277916, '1957-10-28 00:00:00', '2011-08-29 12:13:18.197183', 12.1999998, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980215, '1978-10-24 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821065, '1975-07-07 00:00:00', '2011-10-28 23:50:29', 3.9000001, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975916, '2006-09-19 00:00:00', '2011-08-29 12:13:18.197183', 18, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487137768, '2013-08-22 05:00:00', '2013-09-04 15:39:33.442132', 63, 552, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191990, '1991-04-19 00:00:00', '2011-08-29 12:13:18.197183', 23, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689702, '1990-09-10 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625949, '1974-07-25 00:00:00', '2011-08-29 12:13:18.197183', 0.300000012, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975940, '2006-10-13 00:00:00', '2011-08-29 12:13:18.197183', 17.9444008, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265176, '1989-07-27 00:00:00', '2011-10-28 21:36:17', 20.2000008, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383682428, '2000-03-31 23:59:59', '2012-03-28 17:24:22.91549', 0.931010246, 558, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358205, '2015-01-15 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874089, '1976-09-01 00:00:00', '2011-11-07 23:04:35', 1190, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625965, '1974-08-10 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (57943748, '1980-11-04 00:00:00', '2011-08-29 12:13:18.197183', 14.5, 428, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702684, '1959-07-31 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975931, '2006-10-04 00:00:00', '2011-08-29 12:13:18.197183', 15.7222004, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951130, '1969-07-31 00:00:00', '2011-11-07 23:22:45', 330, 527, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945317, '1970-09-28 00:00:00', '2011-11-07 23:21:21', 970, 527, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383706580, '2000-12-31 23:59:59', '2012-03-28 17:39:37.971164', 151.71077, 559, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554376742, '2015-09-10 23:00:00', '2015-09-10 23:30:03.257308', 12.6099997, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027790, '1972-02-26 00:00:00', '2011-10-28 19:25:56', -6.30000019, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980222, '1980-04-29 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383684578, '2000-05-31 23:59:59', '2012-03-28 17:25:41.202948', 12.4771109, 558, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493111, '1983-12-06 00:00:00', '2011-08-29 12:13:18.197183', 0, 430, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265215, '1989-09-04 00:00:00', '2011-10-28 21:36:17', 7.30000019, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493094, '1984-01-20 00:00:00', '2011-08-29 12:13:18.197183', 2.79999995, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951112, '1969-06-30 00:00:00', '2011-11-07 23:22:45', 1810, 526, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975952, '2006-10-25 00:00:00', '2011-08-29 12:13:18.197183', 10.5, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915353, '1975-07-28 00:00:00', '2011-11-07 23:14:20', 470, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277908, '1957-10-20 00:00:00', '2011-08-29 12:13:18.197183', 16.7000008, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081756, '1990-12-23 00:00:00', '2011-08-29 12:13:18.197183', -29.3999996, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689658, '1990-07-28 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898619, '1976-01-12 00:00:00', '2011-11-07 23:11:09', 105, 528, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898624, '1976-10-29 00:00:00', '2011-11-07 23:11:09', 3, 528, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383666079, '2000-11-30 23:59:59', '2012-03-28 17:13:08.47834', 0.316380978, 556, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554382930, '2015-09-11 01:00:00', '2015-09-11 01:30:02.891123', 11.8800001, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027789, '1972-02-25 00:00:00', '2011-10-28 19:25:56', -7.30000019, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (57943750, '1980-11-06 00:00:00', '2011-08-29 12:13:18.197183', 6, 428, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852545, '2006-02-12 10:00:00', '2011-08-29 12:13:18.197183', 6.5999999, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383694588, '2000-04-30 23:59:59', '2012-03-28 17:31:59.472672', 43.4008217, 559, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383690194, '2000-11-30 23:59:59', '2012-03-28 17:29:04.365581', -2.95275974, 558, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702695, '1959-08-11 00:00:00', '2011-08-29 12:13:18.197183', 2, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689669, '1990-08-08 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380996492, '1981-11-10 13:25:00', '2011-11-07 23:32:08', 2, 528, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081753, '1990-12-22 21:00:00', '2011-08-29 12:13:18.197183', -29.3999996, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383679047, '2000-12-31 23:59:59', '2012-03-28 21:12:51.394663', -0.800000012, 557, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689699, '1990-09-07 00:00:00', '2011-10-28 20:38:54', 1.5, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493072, '1983-12-29 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383699623, '2000-07-31 23:59:59', '2012-03-28 17:35:16.425454', 54.3662682, 559, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (390551869, '2012-09-16 06:00:00', '2012-09-17 00:00:04.208308', 13, 545, 8516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625977, '1974-08-22 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559799913, '2015-09-24 15:00:00', '2015-09-24 15:30:02.895857', 11.3699999, 446, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380922320, '1969-08-30 00:00:00', '2011-11-07 23:15:58', 420, 526, 6116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380929114, '1978-03-07 00:00:00', '2011-11-07 23:17:34', 30, 528, 6316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277928, '1957-12-10 00:00:00', '2011-08-29 12:13:18.197183', 8.89999962, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915358, '1976-07-14 00:00:00', '2011-11-07 23:14:20', 1190, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963578, '1972-04-29 00:00:00', '2011-11-07 23:25:31', 50, 527, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383652716, '2000-01-31 23:59:59', '2012-03-28 14:35:19.469748', 80.1303177, 559, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383682560, '2000-03-31 23:59:59', '2012-03-28 17:24:27.56986', 2.89808106, 558, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027807, '1972-03-14 00:00:00', '2011-10-28 19:25:56', -1.20000005, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702667, '1959-07-13 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (387140865, '2005-02-22 00:00:00', '2012-07-20 15:46:22.161744', -1, 427, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383675354, '2000-08-31 23:59:59', '2012-03-28 17:20:03.470761', 6.3576932, 557, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381353, '1974-05-17 00:00:00', '2011-10-28 20:03:47', 2, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783791, '2004-08-28 13:00:00', '2011-08-29 12:13:18.197183', 61.2400017, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380922331, '1970-08-29 00:00:00', '2011-11-07 23:15:58', 160, 527, 6116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265209, '1989-08-29 00:00:00', '2011-10-28 21:36:17', 7.5999999, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980171, '1980-09-16 00:00:00', '2011-11-07 23:28:58', 460, 526, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383656806, '2000-02-29 23:59:59', '2012-03-28 17:03:23.233983', 8.67028046, 556, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554265314, '2015-09-09 09:00:00', '2015-09-09 09:30:03.108867', 9.82999992, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (57943755, '1980-11-11 00:00:00', '2011-08-29 12:13:18.197183', 5, 428, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380883283, '1973-10-28 00:00:00', '2011-11-07 23:06:30', 2810, 526, 5316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889645, '1975-04-02 00:00:00', '2011-11-07 23:09:20', 800, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963553, '1971-05-28 00:00:00', '2011-11-07 23:25:31', 200, 526, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383672448, '2000-05-31 23:59:59', '2012-03-28 17:18:22.000259', 3.30092812, 557, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523393, '1981-07-18 00:00:00', '2011-10-28 23:23:47', 15.6000004, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383673383, '2000-06-30 23:59:59', '2012-03-28 17:18:54.436639', 4.95531797, 557, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027764, '1972-01-31 00:00:00', '2011-10-28 19:25:56', -11.1000004, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383683573, '2000-04-30 23:59:59', '2012-03-28 17:25:03.862394', 7.90519667, 558, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493095, '1984-01-21 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689664, '1990-08-03 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383681538, '2000-02-29 23:59:59', '2012-03-28 17:23:50.975975', -1.16000736, 558, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383661179, '2000-06-30 23:59:59', '2012-03-28 17:10:11.292403', 19.8840027, 556, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975933, '2006-10-06 00:00:00', '2011-08-29 12:13:18.197183', 20.3889999, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915356, '1975-10-28 00:00:00', '2011-11-07 23:14:20', 400, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383671954, '2000-05-31 23:59:59', '2012-03-28 17:18:04.823165', 7.50206423, 557, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625948, '1974-07-24 00:00:00', '2011-08-29 12:13:18.197183', 1.5, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191987, '1991-04-16 00:00:00', '2011-08-29 12:13:18.197183', 20, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383705597, '2000-11-30 23:59:59', '2012-03-28 17:39:02.976538', 53.9754333, 559, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487137027, '2013-08-22 04:00:00', '2013-09-04 15:39:28.123839', -0.0599999987, 555, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942209, '1969-06-28 00:00:00', '2011-11-07 23:20:33', 610, 526, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947902, '1969-12-30 00:00:00', '2011-11-07 23:22:02', 10, 528, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559793905, '2015-09-24 13:00:00', '2015-09-24 13:30:02.704658', 174.800003, 447, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383702977, '2000-09-30 23:59:59', '2012-03-28 17:37:19.126721', 55.8465767, 559, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (32566552, '1997-06-02 00:00:00', '2011-08-29 12:13:18.197183', 22, 428, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985728, '1975-08-29 00:00:00', '2011-11-07 23:30:01', 720, 526, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191983, '1991-04-12 00:00:00', '2011-08-29 12:13:18.197183', 19, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963582, '1972-09-29 00:00:00', '2011-11-07 23:25:31', 400, 527, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493064, '1983-12-21 00:00:00', '2011-08-29 12:13:18.197183', 1.20000005, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889646, '1975-04-29 00:00:00', '2011-11-07 23:09:20', 370, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702673, '1959-07-19 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383657388, '2000-02-29 23:59:59', '2012-03-28 17:03:44.409', 2.47708678, 556, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942212, '1969-09-28 00:00:00', '2011-11-07 23:20:33', 270, 526, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903933, '1977-02-28 00:00:00', '2011-11-07 23:12:13', 81, 528, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487139204, '2013-08-22 07:00:00', '2013-09-04 15:39:44.265985', 63, 552, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493105, '1984-01-31 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027778, '1972-02-14 00:00:00', '2011-10-28 19:25:56', -8.19999981, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424192, '1989-10-04 00:00:00', '2011-08-29 12:13:18.197183', 12.6000004, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559793904, '2015-09-24 13:00:00', '2015-09-24 13:30:02.704658', 9.59000015, 446, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383691833, '2000-12-31 23:59:59', '2012-03-28 17:30:03.458412', -9.86550617, 563, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380996490, '1981-09-08 12:50:00', '2011-11-07 23:32:08', 0, 528, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027776, '1972-02-12 00:00:00', '2011-10-28 19:25:56', -8.30000019, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689674, '1990-08-13 00:00:00', '2011-10-28 20:38:54', 2, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277923, '1957-12-05 00:00:00', '2011-08-29 12:13:18.197183', 1.10000002, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383690579, '2000-11-30 23:59:59', '2012-03-28 17:29:18.216503', -4.12049723, 558, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424203, '1989-10-15 00:00:00', '2011-08-29 12:13:18.197183', 5.69999981, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874115, '1978-03-15 00:00:00', '2011-11-07 23:04:35', 2705, 527, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523396, '1981-07-21 00:00:00', '2011-10-28 23:23:47', 10.1999998, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383684865, '2000-05-31 23:59:59', '2012-03-28 17:25:52.008677', -0.515900552, 563, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852541, '2006-02-12 06:00:00', '2011-08-29 12:13:18.197183', 5.19999981, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081758, '1990-12-23 02:00:00', '2011-08-29 12:13:18.197183', -29.3999996, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523397, '1981-07-22 00:00:00', '2011-10-28 23:23:47', 9.39999962, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942227, '1970-07-29 00:00:00', '2011-11-07 23:20:33', 30, 527, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975922, '2006-09-25 00:00:00', '2011-08-29 12:13:18.197183', 23.7220001, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951120, '1970-08-31 00:00:00', '2011-11-07 23:22:45', 220, 526, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554324026, '2015-09-10 05:00:00', '2015-09-10 05:30:03.200235', 9.14999962, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951136, '1966-06-29 00:00:00', '2011-11-14 15:45:05.745204', 360, 527, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980207, '1978-01-19 00:00:00', '2011-11-07 23:28:58', 37, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625971, '1974-08-16 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487141324, '2013-08-22 10:00:00', '2013-09-04 15:39:59.910492', 11.3000002, 551, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383663281, '2000-08-31 23:59:59', '2012-03-28 17:11:27.290629', 25.6200027, 556, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898616, '1975-04-29 00:00:00', '2011-11-07 23:11:09', 44, 528, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265175, '1989-07-26 00:00:00', '2011-10-28 21:36:17', 11.1999998, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625945, '1974-07-21 00:00:00', '2011-08-29 12:13:18.197183', 4.5999999, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383681276, '2000-02-29 23:59:59', '2012-03-28 17:23:41.554617', 7.71897316, 558, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980156, '1977-08-23 00:00:00', '2011-11-07 23:28:58', 310, 526, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702679, '1959-07-25 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915349, '1974-08-31 00:00:00', '2011-11-07 23:14:20', 70, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383676028, '2000-09-30 23:59:59', '2012-03-28 21:10:13.427441', 7.5999999, 557, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487140617, '2013-08-22 09:00:00', '2013-09-04 15:39:54.76078', 0.00999999978, 555, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425210, '1989-05-07 00:00:00', '2011-08-29 12:13:18.197183', 18.7999992, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358183, '2015-03-24 00:00:00', '2015-09-23 00:00:22.705906', 3.5999999, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383674247, '2000-07-31 23:59:59', '2012-03-28 17:19:24.853112', 16.5244999, 557, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915335, '1972-05-30 00:00:00', '2011-11-07 23:14:20', 40, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425211, '1989-05-08 00:00:00', '2011-08-29 12:13:18.197183', 16.6000004, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852512, '2006-02-11 01:00:00', '2011-08-29 12:13:18.197183', 4.4000001, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898609, '1976-09-03 00:00:00', '2011-11-07 23:11:09', 740, 527, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277907, '1957-10-19 00:00:00', '2011-08-29 12:13:18.197183', 16.7000008, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852504, '2006-02-10 17:00:00', '2011-08-29 12:13:18.197183', 6.9000001, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903917, '1977-10-11 00:00:00', '2011-11-07 23:12:13', 880, 527, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554288820, '2015-09-09 17:00:00', '2015-09-09 17:30:03.294884', 11.8299999, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903913, '1977-05-16 00:00:00', '2011-11-07 23:12:13', 90, 527, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383684014, '2000-05-31 23:59:59', '2012-03-28 17:25:19.813002', 10.8288565, 558, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358164, '2015-03-05 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783787, '2004-08-28 09:00:00', '2011-08-29 12:13:18.197183', 72.0999985, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081748, '1990-12-22 05:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963580, '1972-07-30 00:00:00', '2011-11-07 23:25:31', 370, 527, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081751, '1990-12-22 19:00:00', '2011-08-29 12:13:18.197183', -29.5, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874091, '1976-11-25 00:00:00', '2011-11-07 23:04:35', 3210, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985735, '1972-07-30 00:00:00', '2011-11-07 23:30:01', 960, 527, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383692633, '2000-02-29 23:59:59', '2012-03-28 17:30:33.222416', 51.6058273, 559, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383666706, '2000-11-30 23:59:59', '2012-03-28 17:13:31.46532', -3.4947176, 561, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380922326, '1970-09-28 00:00:00', '2011-11-07 23:15:58', 240, 526, 6116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358169, '2015-03-10 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874083, '1976-03-09 00:00:00', '2011-11-07 23:04:35', 2010, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945319, '1969-11-27 00:00:00', '2011-11-07 23:21:21', 20, 528, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383676407, '2000-09-30 23:59:59', '2012-03-28 17:20:40.760742', 5.07313395, 557, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689655, '1990-07-25 00:00:00', '2011-10-28 20:38:54', 2, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277926, '1957-12-08 00:00:00', '2011-08-29 12:13:18.197183', 10, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874081, '1976-01-13 00:00:00', '2011-11-07 23:04:35', 2180, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424205, '1989-10-17 00:00:00', '2011-08-29 12:13:18.197183', 12.8999996, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381375, '1974-06-08 00:00:00', '2011-10-28 20:03:47', 7.80000019, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554309507, '2015-09-10 00:00:00', '2015-09-10 00:30:02.877139', 9.64000034, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783803, '2004-08-29 01:00:00', '2011-08-29 12:13:18.197183', 95.4000015, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383696591, '2000-05-31 23:59:59', '2012-03-28 17:33:15.277337', 63.3670311, 559, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383678775, '2000-11-30 23:59:59', '2012-03-28 17:22:04.885224', -8.96627617, 562, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559793909, '2015-09-24 13:00:00', '2015-09-24 13:30:02.704658', -0.100000001, 442, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554315248, '2015-09-10 02:00:00', '2015-09-10 02:30:02.474321', 9.64999962, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380922328, '1969-09-29 00:00:00', '2011-11-07 23:15:58', 410, 527, 6116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559784814, '2015-09-24 10:00:00', '2015-09-24 10:30:02.529049', -0.100000001, 442, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383696661, '2000-05-31 23:59:59', '2012-03-28 17:33:17.991244', 56.8048706, 559, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (57943751, '1980-11-07 00:00:00', '2011-08-29 12:13:18.197183', 4.5, 428, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383659492, '2000-04-30 23:59:59', '2012-03-28 17:05:00.727011', 9.68670082, 556, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383705788, '2000-11-30 23:59:59', '2012-03-28 17:39:09.499399', 56.5922165, 559, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523408, '1981-08-02 00:00:00', '2011-10-28 23:23:47', 8.19999981, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027767, '1972-02-03 00:00:00', '2011-10-28 19:25:56', -4.4000001, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191981, '1991-04-10 00:00:00', '2011-08-29 12:13:18.197183', 10.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487139205, '2013-08-22 07:00:00', '2013-09-04 15:39:44.265985', 18.5, 542, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (387140866, '2005-02-23 00:00:00', '2012-07-20 15:46:22.161744', -4, 427, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975921, '2006-09-24 00:00:00', '2011-08-29 12:13:18.197183', 21.7779999, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903930, '1976-11-29 00:00:00', '2011-11-07 23:12:13', 20, 528, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523378, '1981-07-03 00:00:00', '2011-10-28 23:23:47', 10.6999998, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523371, '1981-06-26 00:00:00', '2011-10-28 23:23:47', 3.0999999, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554285795, '2015-09-09 16:00:00', '2015-09-09 16:30:03.201589', 11.71, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898601, '1974-08-31 00:00:00', '2011-11-07 23:11:09', 30, 527, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277893, '1957-10-05 00:00:00', '2011-08-29 12:13:18.197183', 14.5, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027801, '1972-03-08 00:00:00', '2011-10-28 19:25:56', -7.30000019, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980165, '1979-09-18 00:00:00', '2011-11-07 23:28:58', 590, 526, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383697717, '2000-06-30 23:59:59', '2012-03-28 21:07:41.33098', 123.699997, 559, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689667, '1990-08-06 00:00:00', '2011-10-28 20:38:54', 1, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383664820, '2000-10-31 23:59:59', '2012-03-28 17:12:22.616634', 12.8666983, 556, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821056, '1975-06-28 00:00:00', '2011-10-28 23:50:29', 5.30000019, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383705341, '2000-11-30 23:59:59', '2012-03-28 17:38:54.097073', 206.491623, 559, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898630, '1977-04-29 00:00:00', '2011-11-07 23:11:09', 14, 528, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381364, '1974-05-28 00:00:00', '2011-10-28 20:03:47', 7.30000019, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (384567492, '2012-05-15 06:00:00', '2012-05-16 00:00:04.327942', 26.5, 544, 8416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027806, '1972-03-13 00:00:00', '2011-10-28 19:25:56', -0.400000006, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380929104, '1977-09-21 00:00:00', '2011-11-07 23:17:34', 570, 526, 6316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985731, '1977-08-25 00:00:00', '2011-11-07 23:30:01', 720, 526, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358157, '2015-02-26 00:00:00', '2015-09-23 00:00:22.705906', 3.20000005, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559796863, '2015-09-24 14:00:00', '2015-09-24 14:30:03.973543', 4, 438, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081735, '1990-12-21 16:00:00', '2011-08-29 12:13:18.197183', -29.5, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852501, '2006-02-10 14:00:00', '2011-08-29 12:13:18.197183', 9.60000038, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383660867, '2000-06-30 23:59:59', '2012-03-28 17:10:00.052432', 15.1933937, 556, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383667485, '2000-12-31 23:59:59', '2012-03-28 17:13:59.690421', -4.67991877, 556, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874097, '1977-07-06 00:00:00', '2011-11-07 23:04:35', 1880, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192009, '1991-05-08 00:00:00', '2011-08-29 12:13:18.197183', 11, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358184, '2015-03-25 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898608, '1976-07-28 00:00:00', '2011-11-07 23:11:09', 510, 527, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487142031, '2013-08-22 11:00:00', '2013-09-04 15:40:05.111065', 10.8000002, 551, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358206, '2015-01-16 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493110, '1983-12-05 00:00:00', '2011-08-29 12:13:18.197183', 0, 430, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951121, '1970-09-30 00:00:00', '2011-11-07 23:22:45', 1310, 526, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493090, '1984-01-16 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358194, '2015-01-04 00:00:00', '2015-09-23 00:00:22.705906', 15, 429, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970960, '1973-07-29 00:00:00', '2011-11-07 23:27:12', 620, 526, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903896, '1976-10-26 00:00:00', '2011-11-07 23:12:13', 730, 526, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963577, '1971-11-01 00:00:00', '2011-11-07 23:25:31', 160, 527, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (57943742, '1980-10-29 00:00:00', '2011-08-29 12:13:18.197183', 6.5, 428, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975957, '2006-10-30 00:00:00', '2011-08-29 12:13:18.197183', 1.5, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852521, '2006-02-11 10:00:00', '2011-08-29 12:13:18.197183', 6.80000019, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383681092, '2000-02-29 23:59:59', '2012-03-28 21:02:42.447669', 2.5, 558, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493070, '1983-12-27 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383671192, '2000-04-30 23:59:59', '2012-03-28 17:17:37.203097', -3.76009965, 557, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383702700, '2000-09-30 23:59:59', '2012-03-28 17:37:09.143168', 62.3479996, 559, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821045, '1975-06-17 00:00:00', '2011-10-28 23:50:29', 2.4000001, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383657971, '2000-03-31 23:59:59', '2012-03-28 21:04:16.728923', 7.4000001, 556, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821076, '1975-07-24 00:00:00', '2011-10-28 23:50:29', 7.30000019, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702663, '1959-07-09 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559796862, '2015-09-24 14:00:00', '2015-09-24 14:30:03.973543', 21.1000004, 434, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702661, '1959-07-07 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951124, '1966-06-29 00:00:00', '2011-11-14 15:45:05.745204', 390, 526, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493068, '1983-12-25 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945313, '1970-08-29 00:00:00', '2011-11-07 23:21:21', 180, 526, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493092, '1984-01-18 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383697840, '2000-06-30 23:59:59', '2012-03-28 17:34:08.372108', 52.8542557, 559, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975949, '2006-10-22 00:00:00', '2011-08-29 12:13:18.197183', 11.4443998, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383677144, '2000-10-31 23:59:59', '2012-03-28 17:21:06.984077', -1.06024015, 557, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265195, '1989-08-15 00:00:00', '2011-10-28 21:36:17', 8.60000038, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383676543, '2000-09-30 23:59:59', '2012-03-28 17:20:45.606184', 3.99026942, 557, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358162, '2015-03-03 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821052, '1975-06-24 00:00:00', '2011-10-28 23:50:29', 2.4000001, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358188, '2015-03-29 00:00:00', '2015-09-23 00:00:22.705906', 2.20000005, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821048, '1975-06-20 00:00:00', '2011-10-28 23:50:29', 4.19999981, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898602, '1974-09-30 00:00:00', '2011-11-07 23:11:09', 50, 527, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947898, '1970-07-29 00:00:00', '2011-11-07 23:22:02', 490, 527, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277905, '1957-10-17 00:00:00', '2011-08-29 12:13:18.197183', 12.8000002, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380929107, '1977-08-04 00:00:00', '2011-11-07 23:17:34', 540, 527, 6316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381373, '1974-06-06 00:00:00', '2011-10-28 20:03:47', 6.69999981, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191996, '1991-04-25 00:00:00', '2011-08-29 12:13:18.197183', 13.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380919684, '1982-10-18 15:00:00', '2011-11-07 23:15:14', 232, 527, 6016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963567, '1973-06-29 00:00:00', '2011-11-07 23:25:31', 250, 526, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027808, '1972-03-15 00:00:00', '2011-10-28 19:25:56', -0.300000012, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689675, '1990-08-14 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265191, '1989-08-11 00:00:00', '2011-10-28 21:36:17', 9.60000038, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963591, '1972-01-04 00:00:00', '2011-11-07 23:25:31', 54, 528, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975960, '2006-11-02 00:00:00', '2011-08-29 12:13:18.197183', 2.05559993, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424180, '1989-09-22 00:00:00', '2011-08-29 12:13:18.197183', 22.3999996, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951118, '1970-06-30 00:00:00', '2011-11-07 23:22:45', 220, 526, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702672, '1959-07-18 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702703, '1959-08-19 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277934, '1957-12-16 00:00:00', '2011-08-29 12:13:18.197183', 4.4000001, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383674571, '2000-07-31 23:59:59', '2012-03-28 17:19:35.894943', 7.83941221, 557, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852539, '2006-02-12 04:00:00', '2011-08-29 12:13:18.197183', 4.80000019, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265222, '1989-09-12 00:00:00', '2011-10-28 21:36:17', 5.5, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783805, '2004-08-29 03:00:00', '2011-08-29 12:13:18.197183', 95.3000031, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783815, '2004-08-29 13:00:00', '2011-08-29 12:13:18.197183', 59.8100014, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381363, '1974-05-27 00:00:00', '2011-10-28 20:03:47', 4.5999999, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383652201, '2000-01-31 23:59:59', '2012-03-28 14:34:46.226178', 194.023132, 559, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424179, '1989-09-21 00:00:00', '2011-08-29 12:13:18.197183', 18.3999996, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947905, '1970-03-30 00:00:00', '2011-11-07 23:22:02', 13, 528, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975923, '2006-09-26 00:00:00', '2011-08-29 12:13:18.197183', 22.7222004, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947892, '1970-10-29 00:00:00', '2011-11-07 23:22:02', 360, 526, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903927, '1976-03-01 00:00:00', '2011-11-07 23:12:13', 183, 528, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383687283, '2000-08-31 23:59:59', '2012-03-28 17:27:19.026953', 19.5333271, 558, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821074, '1975-07-22 00:00:00', '2011-10-28 23:50:29', 4.19999981, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702656, '1959-07-02 00:00:00', '2011-08-29 12:13:18.197183', 6.9000001, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383671254, '2000-04-30 23:59:59', '2012-03-28 17:17:39.406835', 8.7220602, 557, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191994, '1991-04-23 00:00:00', '2011-08-29 12:13:18.197183', 22, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381354, '1974-05-18 00:00:00', '2011-10-28 20:03:47', 1.89999998, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380919680, '1983-07-05 14:00:00', '2011-11-07 23:15:14', 813, 526, 6016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192016, '1991-05-15 00:00:00', '2011-08-29 12:13:18.197183', 22, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874079, '1975-10-22 00:00:00', '2011-11-07 23:04:35', 3050, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424183, '1989-09-25 00:00:00', '2011-08-29 12:13:18.197183', 20.8999996, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554247863, '2015-09-09 03:00:00', '2015-09-09 03:30:02.551117', 8.73999977, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265177, '1989-07-28 00:00:00', '2011-10-28 21:36:17', 14.1999998, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383699826, '2000-07-31 23:59:59', '2012-03-28 17:35:23.822198', 96.3007126, 559, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970971, '1975-09-02 00:00:00', '2011-11-07 23:27:12', 1590, 526, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975953, '2006-10-26 00:00:00', '2011-08-29 12:13:18.197183', 11.7222004, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191988, '1991-04-17 00:00:00', '2011-08-29 12:13:18.197183', 21.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383678211, '2000-11-30 23:59:59', '2012-03-28 17:21:44.953037', 7.19443035, 557, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277920, '1957-12-02 00:00:00', '2011-08-29 12:13:18.197183', 8.30000019, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942219, '1970-09-28 00:00:00', '2011-11-07 23:20:33', 120, 526, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265193, '1989-08-13 00:00:00', '2011-10-28 21:36:17', 13.1000004, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383659429, '2000-04-30 23:59:59', '2012-03-28 17:04:58.469752', 14.1659794, 556, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191985, '1991-04-14 00:00:00', '2011-08-29 12:13:18.197183', 20, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903886, '1975-05-28 00:00:00', '2011-11-07 23:12:13', 80, 526, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383699304, '2000-07-31 23:59:59', '2012-03-28 21:08:39.955666', 114.300003, 559, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081747, '1990-12-22 04:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980225, '1980-07-22 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874077, '1975-08-27 00:00:00', '2011-11-07 23:04:35', 1480, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425191, '1989-04-18 00:00:00', '2011-08-29 12:13:18.197183', 12.8999996, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487137765, '2013-08-22 05:00:00', '2013-09-04 15:39:33.442132', 101.5, 549, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970965, '1974-08-30 00:00:00', '2011-11-07 23:27:12', 210, 526, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358197, '2015-01-07 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559796859, '2015-09-24 14:00:00', '2015-09-24 14:30:03.973543', 9.38000011, 446, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980189, '1977-10-20 00:00:00', '2011-11-07 23:28:58', 480, 527, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783793, '2004-08-28 15:00:00', '2011-08-29 12:13:18.197183', 61.3300018, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821085, '1975-08-02 00:00:00', '2011-10-28 23:50:29', 3, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980155, '1977-07-19 00:00:00', '2011-11-07 23:28:58', 780, 526, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702691, '1959-08-07 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821041, '1975-06-13 00:00:00', '2011-10-28 23:50:29', 3.5999999, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689681, '1990-08-20 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383697456, '2000-06-30 23:59:59', '2012-03-28 17:33:54.383131', 58.7020187, 559, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277913, '1957-10-25 00:00:00', '2011-08-29 12:13:18.197183', 11.6999998, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358179, '2015-03-20 00:00:00', '2015-09-23 00:00:22.705906', 3.20000005, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358175, '2015-03-16 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493069, '1983-12-26 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915346, '1974-06-04 00:00:00', '2011-11-07 23:14:20', 290, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523369, '1981-06-24 00:00:00', '2011-10-28 23:23:47', 10.1999998, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383694712, '2000-04-30 23:59:59', '2012-03-28 17:32:04.100941', 81.1039124, 559, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383668448, '2000-01-31 23:59:59', '2012-03-28 17:15:59.787044', -6.77285337, 557, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081738, '1990-12-21 19:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523405, '1981-07-30 00:00:00', '2011-10-28 23:23:47', 5.80000019, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425183, '1989-04-10 00:00:00', '2011-08-29 12:13:18.197183', 19.2000008, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898599, '1974-06-30 00:00:00', '2011-11-07 23:11:09', 180, 527, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625961, '1974-08-06 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191973, '1991-04-02 00:00:00', '2011-08-29 12:13:18.197183', 14.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027798, '1972-03-05 00:00:00', '2011-10-28 19:25:56', -6.9000001, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425208, '1989-05-05 00:00:00', '2011-08-29 12:13:18.197183', 18.8999996, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383677530, '2000-10-31 23:59:59', '2012-03-28 17:21:20.631814', -0.641471922, 557, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559787927, '2015-09-24 11:00:00', '2015-09-24 11:30:02.616552', 971, 439, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277936, '1957-12-18 00:00:00', '2011-08-29 12:13:18.197183', 4.4000001, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381376, '1974-06-09 00:00:00', '2011-10-28 20:03:47', 7.5999999, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947878, '1969-05-02 00:00:00', '2011-11-07 23:22:02', 830, 526, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383664406, '2000-09-30 23:59:59', '2012-03-28 17:12:07.632257', 19.555212, 556, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265184, '1989-08-04 00:00:00', '2011-10-28 21:36:17', 11.1000004, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980219, '1979-08-21 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821062, '1975-07-04 00:00:00', '2011-10-28 23:50:29', 11.1999998, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383665322, '2000-10-31 23:59:59', '2012-03-28 17:12:40.617544', 11.7392778, 556, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265179, '1989-07-30 00:00:00', '2011-10-28 21:36:17', 11.6999998, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383652458, '2000-01-31 23:59:59', '2012-03-28 14:35:02.301473', 48.6945152, 559, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487139201, '2013-08-22 07:00:00', '2013-09-04 15:39:44.265985', 101.5, 549, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559796861, '2015-09-24 14:00:00', '2015-09-24 14:30:03.973543', 60.1800003, 448, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (384567490, '2012-05-15 06:00:00', '2012-05-16 00:00:04.327942', 0, 546, 8416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027795, '1972-03-02 00:00:00', '2011-10-28 19:25:56', -7.0999999, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554312415, '2015-09-10 01:00:00', '2015-09-10 01:30:02.296732', 9.64999962, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985725, '1974-08-29 00:00:00', '2011-11-07 23:30:01', 290, 526, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947910, '1971-03-30 00:00:00', '2011-11-07 23:22:02', 25, 528, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358165, '2015-03-06 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903921, '1975-02-27 00:00:00', '2011-11-07 23:12:13', 163, 528, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852542, '2006-02-12 07:00:00', '2011-08-29 12:13:18.197183', 4.80000019, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975926, '2006-09-29 00:00:00', '2011-08-29 12:13:18.197183', 25.6110992, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081745, '1990-12-22 02:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493085, '1984-01-11 00:00:00', '2011-08-29 12:13:18.197183', 0.200000003, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975945, '2006-10-18 00:00:00', '2011-08-29 12:13:18.197183', 9.72220039, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874082, '1976-02-10 00:00:00', '2011-11-07 23:04:35', 1310, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625973, '1974-08-18 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383681845, '2000-02-29 23:59:59', '2012-03-28 17:24:01.947391', -7.69476604, 563, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980163, '1979-07-24 00:00:00', '2011-11-07 23:28:58', 1245, 526, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277937, '1957-12-19 00:00:00', '2011-08-29 12:13:18.197183', 3.9000001, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424173, '1989-09-15 00:00:00', '2011-08-29 12:13:18.197183', 15.1000004, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783806, '2004-08-29 04:00:00', '2011-08-29 12:13:18.197183', 97.3000031, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951122, '1970-10-31 00:00:00', '2011-11-07 23:22:45', 520, 526, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383698103, '2000-06-30 23:59:59', '2012-03-28 17:34:17.993845', 71.0593948, 559, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383695034, '2000-04-30 23:59:59', '2012-03-28 17:32:15.51682', 105.392593, 559, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383690444, '2000-11-30 23:59:59', '2012-03-28 17:29:13.337913', -0.406603992, 558, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985726, '1975-06-27 00:00:00', '2011-11-07 23:30:01', 560, 526, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487140615, '2013-08-22 09:00:00', '2013-09-04 15:39:54.76078', 64, 552, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915384, '1969-10-01 00:00:00', '2011-11-07 23:14:20', 890, 527, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945324, '1970-11-28 00:00:00', '2011-11-07 23:21:21', 25, 528, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783794, '2004-08-28 16:00:00', '2011-08-29 12:13:18.197183', 68.5899963, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898586, '1974-07-31 00:00:00', '2011-11-07 23:11:09', 460, 526, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523398, '1981-07-23 00:00:00', '2011-10-28 23:23:47', 5.5999999, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702660, '1959-07-06 00:00:00', '2011-08-29 12:13:18.197183', 5.5999999, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383679418, '2000-12-31 23:59:59', '2012-03-28 17:22:27.08271', -8.25311756, 557, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380919682, '1982-08-18 12:10:00', '2011-11-07 23:15:14', 1272, 527, 6016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559787934, '2015-09-24 11:00:00', '2015-09-24 11:30:02.616552', 67.7099991, 437, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383689251, '2000-10-31 23:59:59', '2012-03-28 17:28:30.339632', 12.6615477, 558, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852528, '2006-02-11 17:00:00', '2011-08-29 12:13:18.197183', 6.30000019, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383663478, '2000-08-31 23:59:59', '2012-03-28 17:11:34.347071', 20.7269955, 556, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874090, '1976-09-29 00:00:00', '2011-11-07 23:04:35', 670, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915381, '1969-06-27 00:00:00', '2011-11-07 23:14:20', 230, 527, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947889, '1970-07-29 00:00:00', '2011-11-07 23:22:02', 500, 526, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985732, '1977-10-20 00:00:00', '2011-11-07 23:30:01', 890, 526, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947890, '1970-08-29 00:00:00', '2011-11-07 23:22:02', 150, 526, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852532, '2006-02-11 21:00:00', '2011-08-29 12:13:18.197183', 4.4000001, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874098, '1977-08-04 00:00:00', '2011-11-07 23:04:35', 340, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963570, '1973-09-29 00:00:00', '2011-11-07 23:25:31', 190, 526, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383658414, '2000-03-31 23:59:59', '2012-03-28 17:04:21.879588', 7.64416409, 556, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487138485, '2013-08-22 06:00:00', '2013-09-04 15:39:39.002254', 101.400002, 549, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027800, '1972-03-07 00:00:00', '2011-10-28 19:25:56', -9.19999981, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383692566, '2000-02-29 23:59:59', '2012-03-28 17:30:30.865224', 34.4872932, 559, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915352, '1975-06-25 00:00:00', '2011-11-07 23:14:20', 310, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980204, '1977-03-14 00:00:00', '2011-11-07 23:28:58', 3, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963565, '1972-10-30 00:00:00', '2011-11-07 23:25:31', 200, 526, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383690818, '2000-11-30 23:59:59', '2012-03-28 17:29:26.878742', -6.23049688, 563, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358158, '2015-02-27 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951110, '1969-05-11 00:00:00', '2011-11-07 23:22:45', 610, 526, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554268183, '2015-09-09 10:00:00', '2015-09-09 10:30:03.656099', 10.1599998, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383707269, '2000-12-31 23:59:59', '2012-03-28 17:40:02.936813', 79.6229782, 559, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625967, '1974-08-12 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523389, '1981-07-14 00:00:00', '2011-10-28 23:23:47', 7.19999981, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874092, '1976-12-16 00:00:00', '2011-11-07 23:04:35', 1610, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689661, '1990-07-31 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081755, '1990-12-22 23:00:00', '2011-08-29 12:13:18.197183', -29.3999996, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852508, '2006-02-10 21:00:00', '2011-08-29 12:13:18.197183', 4.19999981, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277892, '1957-10-04 00:00:00', '2011-08-29 12:13:18.197183', 11.1000004, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383674185, '2000-07-31 23:59:59', '2012-03-28 17:19:22.729429', 6.90626192, 557, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821075, '1975-07-23 00:00:00', '2011-10-28 23:50:29', 7.30000019, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383684259, '2000-05-31 23:59:59', '2012-03-28 17:25:29.26256', 7.13296127, 558, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383687223, '2000-08-31 23:59:59', '2012-03-28 17:27:16.846975', 12.8524265, 558, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383675229, '2000-08-31 23:59:59', '2012-03-28 17:19:58.950963', 16.9850693, 557, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (57943754, '1980-11-10 00:00:00', '2011-08-29 12:13:18.197183', 1, 428, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383691990, '2000-02-29 23:59:59', '2012-03-28 17:30:09.134978', 74.0017471, 559, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383686566, '2000-07-31 23:59:59', '2012-03-28 17:26:53.200292', 18.5829182, 558, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383669403, '2000-02-29 23:59:59', '2012-03-28 17:16:33.222406', -7.63896894, 557, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (57943749, '1980-11-05 00:00:00', '2011-08-29 12:13:18.197183', 16, 428, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945323, '1970-03-29 00:00:00', '2011-11-07 23:21:21', 23, 528, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424172, '1989-09-14 00:00:00', '2011-08-29 12:13:18.197183', 20.5, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702664, '1959-07-10 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265198, '1989-08-18 00:00:00', '2011-10-28 21:36:17', 8.69999981, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265206, '1989-08-26 00:00:00', '2011-10-28 21:36:17', 10.8999996, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192012, '1991-05-11 00:00:00', '2011-08-29 12:13:18.197183', 26, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380996491, '1981-10-13 14:47:00', '2011-11-07 23:32:08', 10, 528, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821063, '1975-07-05 00:00:00', '2011-10-28 23:50:29', 3, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559802838, '2015-09-24 16:00:00', '2015-09-24 16:30:03.045685', 35.5800018, 437, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559793906, '2015-09-24 13:00:00', '2015-09-24 13:30:02.704658', 62.0200005, 448, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277904, '1957-10-16 00:00:00', '2011-08-29 12:13:18.197183', 12.1999998, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689684, '1990-08-23 00:00:00', '2011-10-28 20:38:54', 2, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963566, '1973-05-29 00:00:00', '2011-11-07 23:25:31', 340, 526, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424190, '1989-10-02 00:00:00', '2011-08-29 12:13:18.197183', 13, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277924, '1957-12-06 00:00:00', '2011-08-29 12:13:18.197183', 4.4000001, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383655916, '2000-01-31 23:59:59', '2012-03-28 20:34:09.2376', 4.5999999, 556, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783772, '2004-08-27 18:00:00', '2011-08-29 12:13:18.197183', 93.4000015, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821071, '1975-07-13 00:00:00', '2011-10-28 23:50:29', 1.89999998, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381362, '1974-05-26 00:00:00', '2011-10-28 20:03:47', 4.5999999, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625946, '1974-07-22 00:00:00', '2011-08-29 12:13:18.197183', 3.29999995, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277906, '1957-10-18 00:00:00', '2011-08-29 12:13:18.197183', 15.6000004, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915323, '1969-06-27 00:00:00', '2011-11-07 23:14:20', 230, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425182, '1989-04-09 00:00:00', '2011-08-29 12:13:18.197183', 15.6999998, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702662, '1959-07-08 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942217, '1970-07-29 00:00:00', '2011-11-07 23:20:33', 70, 526, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970980, '1975-07-01 00:00:00', '2011-11-07 23:27:12', 710, 527, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493106, '1983-12-01 00:00:00', '2011-08-29 12:13:18.197183', 0, 430, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (57943753, '1980-11-09 00:00:00', '2011-08-29 12:13:18.197183', 7.5, 428, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554274139, '2015-09-09 12:00:00', '2015-09-09 12:30:02.618494', 11.04, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380922321, '1969-09-29 00:00:00', '2011-11-07 23:15:58', 420, 526, 6116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523406, '1981-07-31 00:00:00', '2011-10-28 23:23:47', 8, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383662845, '2000-08-31 23:59:59', '2012-03-28 17:11:11.585177', 17.8733521, 556, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383679229, '2000-12-31 23:59:59', '2012-03-28 17:22:20.66162', 4.61040163, 557, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383678474, '2000-11-30 23:59:59', '2012-03-28 17:21:54.232232', -1.12903357, 557, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027765, '1972-02-01 00:00:00', '2011-10-28 19:25:56', -12, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383669783, '2000-02-29 23:59:59', '2012-03-28 17:16:46.807929', -10.7710485, 562, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554380071, '2015-09-11 00:00:00', '2015-09-11 00:30:02.860588', 11.9799995, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874112, '1974-04-18 00:00:00', '2011-11-07 23:04:35', 1970, 527, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (5449827, '1974-03-07 00:00:00', '2011-08-29 12:13:18.197183', 4.4000001, 428, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383699168, '2000-07-31 23:59:59', '2012-03-28 17:34:59.817284', 26.4609032, 559, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383665394, '2000-10-31 23:59:59', '2012-03-28 17:12:43.225366', 12.0021696, 556, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783781, '2004-08-28 03:00:00', '2011-08-29 12:13:18.197183', 98, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383702903, '2000-09-30 23:59:59', '2012-03-28 17:37:16.497774', 39.7596436, 559, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383686626, '2000-07-31 23:59:59', '2012-03-28 17:26:55.326182', 14.7097797, 558, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487137026, '2013-08-22 04:00:00', '2013-09-04 15:39:28.123839', 20.1000004, 542, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947888, '1970-06-28 00:00:00', '2011-11-07 23:22:02', 630, 526, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821080, '1975-07-28 00:00:00', '2011-10-28 23:50:29', 1.60000002, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625955, '1974-07-31 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487139206, '2013-08-22 07:00:00', '2013-09-04 15:39:44.265985', -0.0199999996, 555, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383667723, '2000-12-31 23:59:59', '2012-03-28 17:14:08.161622', -7.17625904, 561, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425193, '1989-04-20 00:00:00', '2011-08-29 12:13:18.197183', 8.5, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027797, '1972-03-04 00:00:00', '2011-10-28 19:25:56', -9.10000038, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945327, '1971-02-26 00:00:00', '2011-11-07 23:21:21', 119, 528, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265201, '1989-08-21 00:00:00', '2011-10-28 21:36:17', 12.3999996, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425201, '1989-04-28 00:00:00', '2011-08-29 12:13:18.197183', 20, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783773, '2004-08-27 19:00:00', '2011-08-29 12:13:18.197183', 92.6999969, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383666331, '2000-11-30 23:59:59', '2012-03-28 17:13:17.500222', 2.76843357, 556, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493099, '1984-01-25 00:00:00', '2011-08-29 12:13:18.197183', 6.4000001, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277898, '1957-10-10 00:00:00', '2011-08-29 12:13:18.197183', 21.1000004, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783778, '2004-08-28 00:00:00', '2011-08-29 12:13:18.197183', 96.9000015, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (32566551, '1997-06-01 00:00:00', '2011-08-29 12:13:18.197183', 18, 428, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898625, '1976-12-03 00:00:00', '2011-11-07 23:11:09', 22, 528, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554362070, '2015-09-10 18:00:00', '2015-09-10 18:30:03.512038', 13.6599998, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081734, '1990-12-21 15:00:00', '2011-08-29 12:13:18.197183', -29.5, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821070, '1975-07-12 00:00:00', '2011-10-28 23:50:29', 5.30000019, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383672384, '2000-05-31 23:59:59', '2012-03-28 17:18:19.815216', 2.0889883, 557, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383692109, '2000-02-29 23:59:59', '2012-03-28 17:30:14.383155', 154.316147, 559, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975935, '2006-10-08 00:00:00', '2011-08-29 12:13:18.197183', 15.6111002, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425189, '1989-04-16 00:00:00', '2011-08-29 12:13:18.197183', 10.1999998, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380922319, '1969-07-30 00:00:00', '2011-11-07 23:15:58', 570, 526, 6116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702704, '1959-08-20 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425190, '1989-04-17 00:00:00', '2011-08-29 12:13:18.197183', 17.3999996, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358174, '2015-03-15 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383656100, '2000-01-31 23:59:59', '2012-03-28 17:02:40.189474', 8.61642933, 556, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487138484, '2013-08-22 06:00:00', '2013-09-04 15:39:39.002254', 4, 550, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381374, '1974-06-07 00:00:00', '2011-10-28 20:03:47', 7.30000019, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689666, '1990-08-05 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554332691, '2015-09-10 08:00:00', '2015-09-10 08:30:02.49132', 8.89999962, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903931, '1977-01-04 00:00:00', '2011-11-07 23:12:13', 75, 528, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554373856, '2015-09-10 22:00:00', '2015-09-10 22:30:02.358271', 13.0200005, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383698035, '2000-06-30 23:59:59', '2012-03-28 17:34:15.541', 71.1206512, 559, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383704524, '2000-10-31 23:59:59', '2012-03-28 17:38:24.261208', 62.1915245, 559, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947882, '1969-08-27 00:00:00', '2011-11-07 23:22:02', 90, 526, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191978, '1991-04-07 00:00:00', '2011-08-29 12:13:18.197183', 12.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383696781, '2000-05-31 23:59:59', '2012-03-28 17:33:23.732964', 176.67926, 592, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985739, '1975-06-27 00:00:00', '2011-11-07 23:30:01', 560, 527, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852510, '2006-02-10 23:00:00', '2011-08-29 12:13:18.197183', 4.19999981, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783797, '2004-08-28 19:00:00', '2011-08-29 12:13:18.197183', 86.4000015, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689694, '1990-09-02 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783771, '2004-08-27 17:00:00', '2011-08-29 12:13:18.197183', 89.6999969, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383680517, '2000-01-31 23:59:59', '2012-03-28 17:23:14.172052', -3.83847499, 558, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903915, '1977-07-14 00:00:00', '2011-11-07 23:12:13', 560, 527, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383656228, '2000-01-31 23:59:59', '2012-03-28 17:02:48.175644', -2.29952478, 556, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383665257, '2000-10-31 23:59:59', '2012-03-28 17:12:38.298026', 12.6802397, 556, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383656939, '2000-02-29 23:59:59', '2012-03-28 21:02:29.568732', 5.9000001, 556, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383690074, '2000-11-30 23:59:59', '2012-03-28 21:11:46.388061', 4.0999999, 558, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424189, '1989-10-01 00:00:00', '2011-08-29 12:13:18.197183', 7.5999999, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425185, '1989-04-12 00:00:00', '2011-08-29 12:13:18.197183', 18, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903911, '1976-09-28 00:00:00', '2011-11-07 23:12:13', 560, 527, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192011, '1991-05-10 00:00:00', '2011-08-29 12:13:18.197183', 20.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702701, '1959-08-17 00:00:00', '2011-08-29 12:13:18.197183', 1.29999995, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783810, '2004-08-29 08:00:00', '2011-08-29 12:13:18.197183', 84.9000015, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559802834, '2015-09-24 16:00:00', '2015-09-24 16:30:03.045685', 45.7700005, 448, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424200, '1989-10-12 00:00:00', '2011-08-29 12:13:18.197183', 7.5, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903926, '1976-02-02 00:00:00', '2011-11-07 23:12:13', 178, 528, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493097, '1984-01-23 00:00:00', '2011-08-29 12:13:18.197183', 4, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783770, '2004-08-27 16:00:00', '2011-08-29 12:13:18.197183', 88.5999985, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380942233, '1970-02-24 00:00:00', '2011-11-07 23:20:33', 3, 528, 6716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424214, '1990-06-25 00:00:00', '2011-08-29 12:13:18.197183', 15.6999998, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027785, '1972-02-21 00:00:00', '2011-10-28 19:25:56', -7.5999999, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383694849, '2000-04-30 23:59:59', '2012-03-28 21:05:54.368331', 178.699997, 559, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383669541, '2000-02-29 23:59:59', '2012-03-28 17:16:38.291716', -13.6407452, 557, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383705660, '2000-11-30 23:59:59', '2012-03-28 17:39:05.10099', 205.761536, 559, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821054, '1975-06-26 00:00:00', '2011-10-28 23:50:29', 3.9000001, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947886, '1970-04-28 00:00:00', '2011-11-07 23:22:02', 290, 526, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689665, '1990-08-04 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970973, '1973-07-29 00:00:00', '2011-11-07 23:27:12', 610, 527, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425187, '1989-04-14 00:00:00', '2011-08-29 12:13:18.197183', 15.8999996, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (384567491, '2012-05-15 06:00:00', '2012-05-16 00:00:04.327942', 0, 548, 8416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380883291, '1974-10-01 00:00:00', '2011-11-07 23:06:31', 610, 527, 5316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383701889, '2000-08-31 23:59:59', '2012-03-28 17:36:39.387798', 24.5573177, 592, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383652651, '2000-01-31 23:59:59', '2012-03-28 14:35:15.208608', 52.4885178, 559, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383702246, '2000-09-30 23:59:59', '2012-03-28 17:36:52.737727', 107.245644, 559, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380929115, '1978-04-13 00:00:00', '2011-11-07 23:17:34', 0, 528, 6316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915329, '1971-07-01 00:00:00', '2011-11-07 23:14:20', 410, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383674374, '2000-07-31 23:59:59', '2012-03-28 17:19:29.133697', 6.60627794, 557, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783775, '2004-08-27 21:00:00', '2011-08-29 12:13:18.197183', 95.0999985, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383677395, '2000-10-31 23:59:59', '2012-03-28 17:21:15.870767', 0.856782377, 557, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554321069, '2015-09-10 04:00:00', '2015-09-10 04:30:03.091275', 9.18000031, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975956, '2006-10-29 00:00:00', '2011-08-29 12:13:18.197183', 12.4443998, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383663096, '2000-08-31 23:59:59', '2012-03-28 17:11:20.665428', 19.9959049, 556, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383704068, '2000-10-31 23:59:59', '2012-03-28 21:11:20.210759', 379.200012, 559, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852533, '2006-02-11 22:00:00', '2011-08-29 12:13:18.197183', 3.70000005, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951123, '1966-05-30 00:00:00', '2011-11-14 15:45:05.745204', 90, 526, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554306165, '2015-09-09 23:00:00', '2015-09-09 23:30:02.911604', 9.69999981, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945328, '1971-03-30 00:00:00', '2011-11-07 23:21:21', 124, 528, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980212, '1978-06-06 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081739, '1990-12-21 20:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625959, '1974-08-04 00:00:00', '2011-08-29 12:13:18.197183', 0.300000012, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559790820, '2015-09-24 12:00:00', '2015-09-24 12:30:03.478752', 192.5, 447, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487141323, '2013-08-22 10:00:00', '2013-09-04 15:39:59.910492', 101.400002, 549, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903932, '1977-01-30 00:00:00', '2011-11-07 23:12:13', 91, 528, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523410, '1981-08-04 00:00:00', '2011-10-28 23:23:47', 9.80000019, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383700638, '2000-08-31 23:59:59', '2012-03-28 17:35:53.943926', 64.6594086, 559, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381365, '1974-05-29 00:00:00', '2011-10-28 20:03:47', 7.0999999, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945325, '1971-01-03 00:00:00', '2011-11-07 23:21:21', 81, 528, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625950, '1974-07-26 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383696331, '2000-05-31 23:59:59', '2012-03-28 17:33:05.159057', 40.1731033, 559, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970964, '1974-07-31 00:00:00', '2011-11-07 23:27:12', 870, 526, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383669474, '2000-02-29 23:59:59', '2012-03-28 17:16:35.883908', -4.7971015, 557, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383699690, '2000-07-31 23:59:59', '2012-03-28 17:35:18.829892', 40.5775185, 559, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380947895, '1969-06-27 00:00:00', '2011-11-07 23:22:02', 580, 527, 6916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487140614, '2013-08-22 09:00:00', '2013-09-04 15:39:54.76078', 10.8000002, 551, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523394, '1981-07-19 00:00:00', '2011-10-28 23:23:47', 10.3000002, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383707010, '2000-12-31 23:59:59', '2012-03-28 17:39:53.373731', 188.664001, 559, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487141322, '2013-08-22 10:00:00', '2013-09-04 15:39:59.910492', 0, 550, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424209, '1989-10-21 00:00:00', '2011-08-29 12:13:18.197183', 0, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963568, '1973-07-30 00:00:00', '2011-11-07 23:25:31', 230, 526, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945306, '1969-07-27 00:00:00', '2011-11-07 23:21:21', 590, 526, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898592, '1975-10-03 00:00:00', '2011-11-07 23:11:09', 170, 526, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380919678, '1982-09-22 09:00:00', '2011-11-07 23:15:14', 597, 526, 6016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383657455, '2000-02-29 23:59:59', '2012-03-28 17:03:46.923905', -2.95274425, 556, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975915, '2006-09-18 00:00:00', '2011-08-29 12:13:18.197183', 15.5, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783796, '2004-08-28 18:00:00', '2011-08-29 12:13:18.197183', 72.6999969, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898622, '1976-04-06 00:00:00', '2011-11-07 23:11:09', 113, 528, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523390, '1981-07-15 00:00:00', '2011-10-28 23:23:47', 7, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689668, '1990-08-07 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493066, '1983-12-23 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963569, '1973-08-30 00:00:00', '2011-11-07 23:25:31', 50, 526, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783789, '2004-08-28 11:00:00', '2011-08-29 12:13:18.197183', 68.5500031, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889655, '1976-04-08 00:00:00', '2011-11-07 23:09:20', 1330, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383684141, '2000-05-31 23:59:59', '2012-03-28 21:06:20.922854', 8.69999981, 558, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889654, '1976-03-09 00:00:00', '2011-11-07 23:09:20', 850, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378381371, '1974-06-04 00:00:00', '2011-10-28 20:03:47', 7.19999981, 517, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493102, '1984-01-28 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383688527, '2000-09-30 23:59:59', '2012-03-28 17:28:04.020829', 13.2097902, 558, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985724, '1974-07-30 00:00:00', '2011-11-07 23:30:01', 670, 526, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554297516, '2015-09-09 20:00:00', '2015-09-09 20:30:02.613521', 10.0799999, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889643, '1975-01-14 00:00:00', '2011-11-07 23:09:20', 1830, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383661371, '2000-06-30 23:59:59', '2012-03-28 17:10:18.154302', 21.2102928, 556, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523387, '1981-07-12 00:00:00', '2011-10-28 23:23:47', 11.8999996, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383671442, '2000-04-30 23:59:59', '2012-03-28 17:17:46.123486', -0.870677054, 557, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874093, '1977-02-10 00:00:00', '2011-11-07 23:04:35', 2170, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852509, '2006-02-10 22:00:00', '2011-08-29 12:13:18.197183', 4.19999981, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380919681, '1983-08-22 15:00:00', '2011-11-07 23:15:14', 966, 526, 6016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852500, '2006-02-10 13:00:00', '2011-08-29 12:13:18.197183', 9.39999962, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821082, '1975-07-30 00:00:00', '2011-10-28 23:50:29', 5.5999999, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915328, '1971-06-01 00:00:00', '2011-11-07 23:14:20', 180, 526, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487139914, '2013-08-22 08:00:00', '2013-09-04 15:39:49.53403', 0.0199999996, 555, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358182, '2015-03-23 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898607, '1975-10-31 00:00:00', '2011-11-07 23:11:09', 540, 527, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963581, '1972-08-31 00:00:00', '2011-11-07 23:25:31', 250, 527, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383665959, '2000-11-30 23:59:59', '2012-03-28 21:11:33.776307', 7.0999999, 556, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702689, '1959-08-05 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963560, '1972-05-29 00:00:00', '2011-11-07 23:25:31', 340, 526, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027783, '1972-02-19 00:00:00', '2011-10-28 19:25:56', -5.4000001, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (2702702, '1959-08-18 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493108, '1983-12-03 00:00:00', '2011-08-29 12:13:18.197183', 0, 430, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383666267, '2000-11-30 23:59:59', '2012-03-28 17:13:15.129216', 2.81871343, 556, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380883279, '1973-05-31 00:00:00', '2011-11-07 23:06:30', 920, 526, 5316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963592, '1972-10-30 00:00:00', '2011-11-07 23:25:31', 0, 528, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951131, '1969-08-31 00:00:00', '2011-11-07 23:22:45', 40, 527, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (209783777, '2004-08-27 23:00:00', '2011-08-29 12:13:18.197183', 96.6999969, 474, 3016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380889649, '1975-07-30 00:00:00', '2011-11-07 23:09:20', 190, 526, 5416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380898604, '1975-07-31 00:00:00', '2011-11-07 23:11:09', 460, 527, 5616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383693991, '2000-03-31 23:59:59', '2012-03-28 17:31:36.443693', 43.8966103, 559, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380919686, '1983-08-22 15:00:00', '2011-11-07 23:15:14', 974, 527, 6016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (57943746, '1980-11-02 00:00:00', '2011-08-29 12:13:18.197183', 10.5, 428, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980224, '1980-06-24 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380996495, '1983-05-16 09:57:00', '2011-11-07 23:32:08', 15, 528, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559787933, '2015-09-24 11:00:00', '2015-09-24 11:30:02.616552', -0.100000001, 442, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380821057, '1975-06-29 00:00:00', '2011-10-28 23:50:29', 9.60000038, 517, 8216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689689, '1990-08-28 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874121, '1974-03-19 00:00:00', '2011-11-07 23:04:35', 0, 528, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358159, '2015-02-28 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383674067, '2000-07-31 23:59:59', '2012-03-28 21:08:25.701961', 10.1000004, 557, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39192021, '1991-05-20 00:00:00', '2011-08-29 12:13:18.197183', 25.5, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383659294, '2000-04-30 23:59:59', '2012-03-28 17:04:53.608196', 13.3358717, 556, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383675900, '2000-09-30 23:59:59', '2012-03-28 17:20:22.932648', 9.71381569, 557, 816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559802832, '2015-09-24 16:00:00', '2015-09-24 16:30:03.045685', 10.5, 446, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903929, '1976-04-27 00:00:00', '2011-11-07 23:12:13', 104, 528, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380945309, '1969-10-27 00:00:00', '2011-11-07 23:21:21', 1100, 526, 6816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523388, '1981-07-13 00:00:00', '2011-10-28 23:23:47', 8.80000019, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559796864, '2015-09-24 14:00:00', '2015-09-24 14:30:03.973543', -0.5, 442, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903909, '1976-07-27 00:00:00', '2011-11-07 23:12:13', 1010, 527, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383679166, '2000-12-31 23:59:59', '2012-03-28 17:22:18.543793', -12.1158361, 557, 1216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493081, '1984-01-07 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (185424201, '1989-10-13 00:00:00', '2011-08-29 12:13:18.197183', 7.19999981, 497, 2516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689703, '1990-09-11 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559790823, '2015-09-24 12:00:00', '2015-09-24 12:30:03.478752', 9, 438, 3416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383652339, '2000-01-31 23:59:59', '2012-03-28 20:58:35.004102', 256.899994, 559, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380963574, '1971-07-30 00:00:00', '2011-11-07 23:25:31', 250, 527, 7316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383660500, '2000-05-31 23:59:59', '2012-03-28 17:05:37.226869', 15.9388971, 556, 1816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (197975927, '2006-09-30 00:00:00', '2011-08-29 12:13:18.197183', 24.5555992, 494, 1916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380903919, '1974-12-30 00:00:00', '2011-11-07 23:12:13', 80, 528, 5716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625960, '1974-08-05 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383663417, '2000-08-31 23:59:59', '2012-03-28 17:11:32.154709', 25.5138836, 556, 1716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027793, '1972-02-29 00:00:00', '2011-10-28 19:25:56', -8.60000038, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554347355, '2015-09-10 13:00:00', '2015-09-10 13:30:02.658145', 14.1899996, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (554256513, '2015-09-09 06:00:00', '2015-09-09 06:30:02.597585', 9.23999977, 434, 3616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277910, '1957-10-22 00:00:00', '2011-08-29 12:13:18.197183', 10, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380883292, '1975-09-25 00:00:00', '2011-11-07 23:06:31', 1020, 527, 5316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383700901, '2000-08-31 23:59:59', '2012-03-28 21:09:34.637795', 155.399994, 559, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (280081759, '1990-12-23 03:00:00', '2011-08-29 12:13:18.197183', -29.3999996, 433, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (487139913, '2013-08-22 08:00:00', '2013-09-04 15:39:49.53403', 17.7999992, 542, 8316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951139, '1966-09-28 00:00:00', '2011-11-14 15:45:05.745204', 40, 527, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852526, '2006-02-11 15:00:00', '2011-08-29 12:13:18.197183', 8.69999981, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380980217, '1979-06-25 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (21625954, '1974-07-30 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277933, '1957-12-15 00:00:00', '2011-08-29 12:13:18.197183', 4.4000001, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383690381, '2000-11-30 23:59:59', '2012-03-28 17:29:11.012254', -1.76678574, 558, 1516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378027779, '1972-02-15 00:00:00', '2011-10-28 19:25:56', -6.19999981, 517, 5216); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (379265185, '1989-08-05 00:00:00', '2011-10-28 21:36:17', 11.1000004, 517, 6516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380523402, '1981-07-27 00:00:00', '2011-10-28 23:23:47', 11, 517, 8016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383672260, '2000-05-31 23:59:59', '2012-03-28 17:18:15.586591', 11.5914593, 557, 1316); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (194852540, '2006-02-12 05:00:00', '2011-08-29 12:13:18.197183', 4.9000001, 497, 2716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383667350, '2000-12-31 23:59:59', '2012-03-28 17:13:54.835247', -1.55405152, 556, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380951138, '1966-08-30 00:00:00', '2011-11-14 15:45:05.745204', 300, 527, 7016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383693546, '2000-03-31 23:59:59', '2012-03-28 21:04:59.871403', 191.600006, 559, 1016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985727, '1975-07-30 00:00:00', '2011-11-07 23:30:01', 540, 526, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277921, '1957-12-03 00:00:00', '2011-08-29 12:13:18.197183', 5.5999999, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (12277929, '1957-12-11 00:00:00', '2011-08-29 12:13:18.197183', 8.30000019, 428, 916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (39191977, '1991-04-06 00:00:00', '2011-08-29 12:13:18.197183', 13, 428, 1416); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383682862, '2000-03-31 23:59:59', '2012-03-28 17:24:38.352971', -5.45659447, 563, 3516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874109, '1974-01-17 00:00:00', '2011-11-07 23:04:35', 0, 527, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380970962, '1973-09-29 00:00:00', '2011-11-07 23:27:12', 460, 526, 7516); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874080, '1975-12-15 00:00:00', '2011-11-07 23:04:35', 1830, 526, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380985737, '1974-07-30 00:00:00', '2011-11-07 23:30:01', 670, 527, 7816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874106, '1973-09-19 00:00:00', '2011-11-07 23:04:35', 230, 527, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (59493093, '1984-01-19 00:00:00', '2011-08-29 12:13:18.197183', 1.39999998, 429, 716); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (66425176, '1989-04-03 00:00:00', '2011-08-29 12:13:18.197183', 3.70000005, 497, 2016); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689686, '1990-08-25 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380874105, '1973-08-17 00:00:00', '2011-11-07 23:04:35', 220, 527, 5116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (559358168, '2015-03-09 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (378689701, '1990-09-09 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383675419, '2000-08-31 23:59:59', '2012-03-28 17:20:05.765127', 9.19560623, 557, 1616); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (380915387, '1971-08-01 00:00:00', '2011-11-07 23:14:20', 760, 527, 5916); -INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) VALUES (383693659, '2000-03-31 23:59:59', '2012-03-28 17:31:24.446278', 27.4063168, 559, 1216); -SELECT setval('obs_raw_obs_raw_id_seq'::regclass, max(obs_raw_id)) FROM obs_raw; - - --- --- Data for Name: obs_raw_native_flags; Type: TABLE DATA; Schema: subset; Owner: - --- - -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027796, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874106, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689675, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942232, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889653, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265217, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523395, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945312, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821073, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821067, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523373, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523379, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380922322, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380929112, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945314, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523405, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380922321, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265175, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265177, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942214, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265202, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874104, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380929103, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689698, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380922319, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821054, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381376, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970966, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821047, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942217, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265195, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027764, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380929114, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689688, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874074, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874092, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821080, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523394, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381363, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970981, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523397, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265216, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523390, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381359, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523387, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889647, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942212, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942208, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027794, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874111, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874096, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874108, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874103, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821078, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821075, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027769, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970973, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265218, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970967, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523374, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265173, 47); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027790, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381362, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381369, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380929115, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380929102, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380922324, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380922318, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265186, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689656, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265209, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821062, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821053, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380929111, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381372, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265181, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874093, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889658, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523381, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265206, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821050, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970980, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381370, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874080, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945327, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265213, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689674, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942231, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523393, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821041, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874078, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889650, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381366, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889659, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689682, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874120, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689683, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027803, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689669, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381365, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027792, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523392, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821039, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945323, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942215, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381374, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821055, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523400, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523378, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523389, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821049, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942220, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942209, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265191, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945315, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970975, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381361, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265207, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523409, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689704, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889638, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874088, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874105, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265201, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027793, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821056, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027810, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821077, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821085, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689672, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821070, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380922331, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381360, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027781, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265211, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874094, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381358, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689687, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945328, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970958, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381368, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381354, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874116, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874117, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381371, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689699, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874076, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (59493068, 20); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970963, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821072, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970977, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027808, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821071, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821084, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265183, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970970, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889660, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (381005535, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821040, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523407, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027799, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970983, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942226, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942218, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380929104, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027770, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874119, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523376, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689671, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265221, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027802, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523403, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381377, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821068, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027777, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945324, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381375, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689681, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380929106, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381355, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874097, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689703, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945321, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265210, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874118, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523399, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523385, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942223, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265192, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889654, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689660, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945309, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889655, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945306, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523380, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523382, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874087, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523398, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942229, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265176, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380922327, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874095, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821043, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689686, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942234, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945307, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821083, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380929101, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874084, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381364, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874102, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889656, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874101, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689668, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874110, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689665, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689655, 47); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380929113, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821064, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027787, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874109, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027791, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689685, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027795, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889646, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027772, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381367, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265199, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523401, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523375, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523410, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821063, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821045, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689693, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970974, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265174, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942211, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942222, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523383, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689684, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027780, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689677, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027765, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889637, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821038, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821058, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945305, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942207, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942225, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380929109, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874100, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689664, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380922325, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523391, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265193, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689670, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (381005536, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874089, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874107, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945326, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523388, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874098, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821042, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380929108, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889649, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689662, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874115, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027785, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874077, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689694, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689663, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689701, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265185, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821046, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945318, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027788, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970968, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027800, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970978, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821057, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265182, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970979, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027805, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945325, 42); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689657, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942213, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380922328, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821074, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874073, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942210, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027801, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523371, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381353, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265198, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970960, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265215, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889643, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265180, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945308, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874112, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689673, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945319, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821044, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874090, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821059, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380929100, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821079, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027807, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689676, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523384, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821061, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523377, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689689, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265208, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027804, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380922329, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889645, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265204, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970961, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889651, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945310, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265205, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027806, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889642, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821060, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027784, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265203, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945313, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027774, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889639, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689691, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942236, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874081, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027768, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689702, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265222, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874083, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874082, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874114, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889648, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821076, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523404, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689692, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889640, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027782, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265188, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381373, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689667, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265178, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380922330, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821081, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381356, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689666, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970976, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945311, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378381357, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265187, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523370, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689697, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265189, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380929110, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265194, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523386, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889641, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689700, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874086, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265200, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265214, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874121, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889657, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523372, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689696, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689695, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874079, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380922320, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821066, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380929105, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821082, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874085, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380922323, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027809, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942228, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821052, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945316, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265197, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523406, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523369, 47); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027767, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942235, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265196, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689658, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027778, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970964, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523411, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874113, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970972, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889652, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027763, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945317, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523402, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874122, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027786, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942227, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265184, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942224, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945320, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027779, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970982, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689680, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027797, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889644, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874091, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265219, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523408, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027783, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265179, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027762, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027761, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970959, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265190, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689690, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027771, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380523396, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380945322, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970971, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970965, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821048, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027773, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265220, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821051, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380889636, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689679, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027766, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380922326, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821065, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874075, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970962, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (379265212, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689659, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942233, 42); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380929107, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027776, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027789, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689661, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378689678, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027775, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380970969, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942219, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942216, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (378027798, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380874099, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942221, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (59493084, 20); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380942230, 40); -INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) VALUES (380821069, 40); - - --- --- Data for Name: obs_raw_pcic_flags; Type: TABLE DATA; Schema: subset; Owner: - --- - - --- --- PostgreSQL database dump complete --- - diff --git a/pycds/data/data_758be4f4ce0f.sql b/pycds/data/data_758be4f4ce0f.sql new file mode 100644 index 00000000..7a950fea --- /dev/null +++ b/pycds/data/data_758be4f4ce0f.sql @@ -0,0 +1,23 @@ + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SET check_function_bodies = false; +SET client_min_messages = warning; + + +INSERT INTO climo_period (climo_period_id, start_date, end_date) +VALUES (1, '2020-01-01', '2020-12-31'); +SELECT setval('climo_period_climo_period_id_seq'::regclass, max(climo_period_id)) FROM climo_period; + +INSERT INTO climo_variable (climo_variable_id, duration, unit, standard_name, display_name, short_name, cell_methods, net_var_name) +VALUES (1, 'annual', 'mm', 'snowfall_amount', 'Snowfall Amount', 'snowfall_amt', 'time: sum', 'snowfall_amt'); +SELECT setval('climo_variable_climo_variable_id_seq'::regclass, max(climo_variable_id)) FROM climo_variable; + +INSERT INTO climo_station (climo_station_id, type, basin_id, comments, climo_period_id) +VALUES (1, 'long-record', NULL, 'Station with long record', 1); +SELECT setval('climo_station_climo_station_id_seq'::regclass, max(climo_station_id)) FROM climo_station; + +INSERT INTO climo_stn_x_hist (climo_station_id, history_id, role) +VALUES (1, 13216, 'base'); \ No newline at end of file diff --git a/pycds/data/data_base.sql b/pycds/data/data_base.sql new file mode 100644 index 00000000..0ae61110 --- /dev/null +++ b/pycds/data/data_base.sql @@ -0,0 +1,5358 @@ +-- +-- PostgreSQL database dump +-- + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SET check_function_bodies = false; +SET client_min_messages = warning; + + +-- +-- Data for Name: meta_network; Type: TABLE DATA; Schema: subset; Owner: - +-- + +INSERT INTO meta_network (network_id, network_name, description, virtual, publish, col_hex, contact_id) + VALUES (1, 'EC', 'Environment Canada (Canadian Daily Climate Data 2007)', NULL, true, '#FF0000', NULL); +INSERT INTO meta_network (network_id, network_name, description, virtual, publish, col_hex, contact_id) + VALUES (5, 'BCH', 'BC Hydro', NULL, true, '#0010A5', NULL); +INSERT INTO meta_network (network_id, network_name, description, virtual, publish, col_hex, contact_id) + VALUES (17, 'ARDA', 'Agricultural and Rural Development Act Network', NULL, true, '#5791D9', NULL); +INSERT INTO meta_network (network_id, network_name, description, virtual, publish, col_hex, contact_id) + VALUES (19, 'EC_raw', 'Environment Canada (raw observations from "Climate Data Online")', NULL, true, '#FF0000', NULL); +INSERT INTO meta_network (network_id, network_name, description, virtual, publish, col_hex, contact_id) + VALUES (12, 'FLNRO-WMB', 'BC Ministry of Forests, Lands, and Natural Resource Operations - Wild Fire Managment Branch', NULL, true, '#0C6600', NULL); +INSERT INTO meta_network (network_id, network_name, description, virtual, publish, col_hex, contact_id) + VALUES (10, 'AGRI', 'BC Ministry of Agriculture', NULL, true, '#801899', NULL); +INSERT INTO meta_network (network_id, network_name, description, virtual, publish, col_hex, contact_id) + VALUES (9, 'ENV-AQN', 'BC Ministry of Environment - Air Quality Network', NULL, true, '#B03060', NULL); +INSERT INTO meta_network (network_id, network_name, description, virtual, publish, col_hex, contact_id) + VALUES (2, 'MoTIe', 'Ministry of Transportation and Infrastructure (electronic)', NULL, true, '#37ea00', NULL); +SELECT setval('meta_network_network_id_seq'::regclass, max(network_id)) FROM meta_network; + +-- +-- Data for Name: meta_station; Type: TABLE DATA; Schema: subset; Owner: - +-- + +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (4137, 17, '109011', '1990-07-25 00:00:00', '1990-10-30 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (1213, 1, '1155236', '1972-06-21 00:00:00', '1978-03-31 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (2313, 12, '932', '2006-02-10 13:00:00', '2006-06-06 12:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (1313, 1, '1167276', '1979-11-06 00:00:00', '1994-10-31 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (5136, 17, '114081', '1969-06-27 00:00:00', '1971-03-30 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (5634, 17, '116155', '1971-05-28 00:00:00', '1973-10-26 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (5833, 17, '116609', '1973-06-04 00:00:00', '1975-10-01 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (3438, 17, '102037', '1973-07-18 00:00:00', '1978-11-20 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (2613, 9, 'M107005', '1994-11-21 16:00:00', '2009-06-30 23:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (1513, 10, 'de107', '2006-09-15 00:00:00', '2010-09-14 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (3937, 17, '107212', '1974-06-30 00:00:00', '1977-04-29 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (2673, 2, '15124', '1996-12-31 14:00:00', '2011-04-06 11:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (813, 1, '1097970', '1962-11-01 00:00:00', '1991-05-31 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (4836, 17, '112020', '1989-07-24 00:00:00', '1991-03-15 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (313, 1, '1195ABR', '1983-12-01 00:00:00', '1984-01-31 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (4437, 17, '109522', '1969-06-29 00:00:00', '1970-09-28 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (3538, 17, '103123', '1972-01-27 00:00:00', '1972-06-15 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (5235, 17, '114194', '1969-05-02 00:00:00', '1971-03-30 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (2113, 12, '661', '1989-09-13 00:00:00', '1992-09-29 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (5036, 17, '113031', '1969-05-04 00:00:00', '1971-01-29 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (3737, 17, '106101', '1974-05-16 00:00:00', '1976-05-06 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (6332, 17, '118561', '1981-06-24 00:00:00', '1983-09-28 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (613, 1, '1066481', '1962-05-01 00:00:00', '2005-01-20 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (6628, 19, '1106200', '2011-05-31 06:00:00', '2012-02-14 21:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (413, 1, '1017570', '1974-03-05 00:00:00', '1977-11-30 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (5335, 17, '115084', '1966-05-30 00:00:00', '1970-10-31 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (113, 1, '1070154', '1974-07-17 00:00:00', '1985-08-31 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (4636, 17, '109824', '1977-06-24 00:00:00', '1978-04-13 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (713, 1, '1085835', '1956-12-01 00:00:00', '2004-10-31 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (1113, 1, '1131615', '1972-06-19 00:00:00', '1985-04-30 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (4037, 17, '107335', '1974-08-12 00:00:00', '1977-11-14 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (3837, 17, '107095', NULL, NULL, true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (1613, 12, '13', '1989-03-31 00:00:00', '1994-10-13 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (6631, 19, '1046332', '2011-05-31 06:00:00', '2012-02-08 03:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (913, 1, '1106200', '1968-01-01 00:00:00', '2004-10-31 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (3277, 9, '770708', NULL, NULL, true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (6033, 17, '118105', '1967-05-30 00:00:00', '1980-09-16 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (2873, 2, '47121', NULL, NULL, true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (1413, 1, '1184716', '1980-10-29 00:00:00', '1985-10-31 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (3638, 17, '104314', '1973-05-31 00:00:00', '1975-10-23 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (2773, 2, '34129', '1990-09-19 11:00:00', '2011-04-05 16:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (6626, 19, '1126150', '2011-05-31 06:00:00', '2012-02-14 21:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (6532, 17, '120123', '1975-06-09 00:00:00', '1975-12-11 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (13, 1, '1012052', '1959-07-02 00:00:00', '1962-09-30 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (4337, 17, '109329', '1982-07-15 14:00:00', '1983-08-22 15:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (6132, 17, '118224', '1971-07-30 00:00:00', '1977-10-20 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (513, 1, '1034725', '1957-07-01 00:00:00', '1958-10-31 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (1013, 1, '1120486', '1991-04-01 00:00:00', '1992-09-30 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (4237, 17, '109147', '1967-05-28 00:00:00', '1977-12-12 00:00:00', true); +INSERT INTO meta_station (station_id, network_id, native_id, min_obs_time, max_obs_time, publish) + VALUES (11046, 5, 'TAT', NULL, NULL, true); +SELECT setval('meta_station_station_id_seq'::regclass, max(station_id)) FROM meta_station; + + +-- +-- Data for Name: meta_history; Type: TABLE DATA; Schema: subset; Owner: - +-- + +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (13216, 11046, 'TIE', -124.9778, 51.3528, 1432, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E6100000D8817346943E5FC0B003E78C28AD4940', NULL, '1-hourly'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (8516, 6628, 'Point Atkinson', -123.26472222222222, 49.33027777777778, NULL, '2012-09-16', '2012-09-16', NULL, 'BC', NULL, NULL, '0101000020E610000002BE7935F1D05EC05813CF8A46AA4840', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (1516, 1113, 'CHRISTIAN VALLEY', -118.75, 49.65, 805, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E61000000000000000B05DC03333333333D34840', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (1816, 1413, 'LONE PRAIRIE', -121.233333, 55.566667, 750, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E6100000F70489EDEE4E5EC0795C548B88C84B40', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (7516, 5833, 'AQUANAUT', -119.164444444444, 52.4305555555556, 725, '1973-05-16', '1975-10-01', NULL, 'BC', NULL, NULL, '0101000020E610000056B9FD4186CA5DC0781CC7711C374A40', NULL, 'irregular'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (8416, 6626, 'Penticton Airport', -119.60222222222222, 49.463055555555556, NULL, '2012-05-15', '2012-05-15', NULL, 'BC', NULL, NULL, '0101000020E61000009C5713CF8AE65DC0CEAB896745BB4840', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (6716, 5036, 'MIDWAY P', -118.766111111111, 49.0083333333333, 579, '1969-04-09', '1971-01-29', NULL, 'BC', NULL, NULL, '0101000020E6100000BCD4E5F607B15DC00C11111111814840', NULL, 'irregular'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (5416, 3737, 'GILFORD IS', -126.562777777778, 50.6536111111111, 40, '1974-05-16', '1976-05-06', NULL, 'BC', NULL, NULL, '0101000020E6100000369E158D04A45FC01F436587A9534940', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (5816, 4137, 'WELLS', -121.578611111111, 53.0983333333333, 1207, '1990-07-25', '1990-10-30', NULL, 'BC', NULL, NULL, '0101000020E6100000BCD4E5F607655EC0F862C92F968C4A40', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (5216, 3538, 'CB MT TOP B', -123.194444444444, 49.41, 1411, '1972-01-27', '1972-06-15', NULL, 'BC', NULL, NULL, '0101000020E6100000A8711CC771CC5EC014AE47E17AB44840', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (6516, 4836, 'THOM', -119.469444444444, 49.0125, 328, '1989-07-24', '1991-03-15', NULL, 'BC', NULL, NULL, '0101000020E6100000410BB6600BDE5DC09A99999999814840', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (2516, 2113, 'ZZ TASEKO', -123.6, 51.3, 14, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E61000006666666666E65EC06666666666A64940', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (2016, 1613, 'ZZ KLANAWA', -124.8, 48.8, 2, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E61000003333333333335FC06666666666664840', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (5716, 4037, 'GLEASON', -129.081944444444, 55.9402777777778, 646, '1974-08-12', '1980-10-09', NULL, 'BC', NULL, NULL, '0101000020E61000003A9FF4499F2260C0095BB0055BF84B40', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (5916, 4237, 'AIRPORT', -123.999722222222, 54.0563888888889, 686, '1967-05-06', '1977-12-12', NULL, 'BC', NULL, NULL, '0101000020E6100000CA61EA72FBFF5EC05BD148C037074B40', NULL, 'irregular'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (1316, 913, 'POINT ATKINSON', -123.2647, 49.33028, 35.000, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E610000014D044D8F0D05EC0EE42739D46AA4840', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (6916, 5235, 'KUSKANAX', -117.811944444444, 50.2613888888889, 503, '1969-04-16', '1971-03-30', NULL, 'BC', NULL, NULL, '0101000020E610000093C3D4E5F6735DC066A8EC3075214940', NULL, 'irregular'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (1216, 813, 'TAKLA LANDING', -125.966667, 55.466667, 854, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E6100000D6C743DFDD7D5FC0AC8F87BEBBBB4B40', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (7716, 6033, 'MCWATERS', -120.045, 55.6619444444444, 686, '1967-04-29', '1980-09-16', NULL, 'BC', NULL, NULL, '0101000020E61000007B14AE47E1025EC02C547698BAD44B40', NULL, 'irregular'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (5316, 3638, 'HORSE SHOE', -124.210555555556, 49.9347222222222, 854, '1973-05-01', '1975-10-23', NULL, 'BC', NULL, NULL, '0101000020E6100000AA4602BE790D5FC0F7A44FFAA4F74840', NULL, 'irregular'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (1416, 1013, 'ARMSTRONG OTTER LAKE', -119.25, 50.4, 342, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E61000000000000000D05DC03333333333334940', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (5616, 3937, 'HOLLAND', -126.625, 55.2486111111111, 898, '1974-06-13', '1977-04-29', NULL, 'BC', NULL, NULL, '0101000020E61000000000000000A85FC07CD2277DD29F4B40', NULL, 'irregular'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (8216, 6532, 'EAGLENEST', -129.483333333333, 57.6166666666667, 853, '1975-06-09', '1976-05-21', NULL, 'BC', NULL, NULL, '0101000020E61000006C777777772F60C0F4EEEEEEEECE4C40', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (1016, 613, 'PRINCE RUPERT A', -130.4447, 54.29250, 35.400, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E610000000917EFB3A4E60C03D0AD7A370254B40', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (516, 113, 'AIYANSH 2SE', -129.05, 55.183333, 213, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E61000009A999999992160C087A3AB7477974B40', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (5516, 3837, 'SUNDAY', -127.694444444444, 55.4138888888889, 251, '1967-04-23', '1969-10-30', NULL, 'BC', NULL, NULL, '0101000020E6100000A8711CC771EC5FC051FAA44FFAB44B40', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (6316, 4636, 'NAVAHO', -119.816666666667, 53.15, 775, '1977-04-30', '1978-04-13', NULL, 'BC', NULL, NULL, '0101000020E61000005C44444444F45DC03333333333934A40', NULL, 'irregular'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (416, 13, 'COWICHAN LAKE NITINAT', -124.483333, 48.933333, 189, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E6100000F70489EDEE1E5FC087A3AB7477774840', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (3416, 2673, 'Jackass', -121.5475, 50.07611, 350, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E6100000D7A3703D0A635EC00473F4F8BD094940', NULL, '1-hourly'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (7316, 5634, 'WHITEWOOD KAM', -120.241666666667, 51.0625, 467, '1971-05-14', '1973-10-26', NULL, 'BC', NULL, NULL, '0101000020E61000008F777777770F5EC00000000000884940', NULL, 'irregular'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (6116, 4437, 'CONTOUR', -123.772222222222, 51.9958333333333, 884, '1969-05-31', '1970-09-28', NULL, 'BC', NULL, NULL, '0101000020E6100000076CC1166CF15EC07377777777FF4940', NULL, 'irregular'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (8016, 6332, 'PETRO UPER 2', -120.75, 54.7527777777778, 1593, '1981-06-24', '1983-09-28', NULL, 'BC', NULL, NULL, '0101000020E61000000000000000305EC0095BB0055B604B40', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (1616, 1213, 'MOYIE', -115.833333, 49.283333, 945, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E61000005D6BEF5355F55CC05470784144A44840', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (1116, 713, 'OOTSA L SKINS L SPILLWAY', -125.9966, 53.77217, 861.100, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E610000064CC5D4BC87F5FC0E6797077D6E24A40', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (816, 413, 'SOOKE OTTER POINT', -123.816667, 48.366667, 40, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E61000003C2EAA4544F45EC0DFC2BAF1EE2E4840', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (1716, 1313, 'SICAMOUS 2', -118.983333, 50.85, 355, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E6100000F70489EDEEBE5DC0CDCCCCCCCC6C4940', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (716, 313, 'MILE 371 ALASKA HWY', -124.133333, 58.65, 758, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E6100000909E228788085FC03333333333534D40', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (3616, 2873, 'Bella Coola', -126.77178, 52.35569, 1160, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E61000003EEDF0D764B15FC0D3C1FA3F872D4A40', NULL, NULL); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (3016, 2613, 'Smithers St Josephs', -127.1775, 54.78305556, 481, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E61000008FC2F5285CCB5FC05393222A3B644B40', NULL, '1-hourly'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (6816, 5136, 'DUPONT 2', -118.021666666667, 50.7416666666667, 602, '1969-05-30', '1971-03-30', NULL, 'BC', NULL, NULL, '0101000020E6100000E12F96FC62815DC0F4EEEEEEEE5E4940', NULL, 'irregular'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (4116, 3277, 'Taylor Townsite', -120.6861111, 56.15083333, 480, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E61000000CFB873EE92B5EC096BFAD814E134C40', NULL, NULL); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (2716, 2313, 'ZZ GYPSY 2', -124.0147, 49.2283, 156, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E610000014D044D8F0005FC0A1D634EF389D4840', NULL, '1-hourly'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (8316, 6631, 'Port Mellon', -123.48333333333333, 49.516666666666666, NULL, '2011-05-31', '2013-08-27', NULL, 'BC', NULL, NULL, '0101000020E6100000EFEEEEEEEEDE5EC02222222222C24840', NULL, '1-hourly'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (1916, 1513, 'Deep Creek', -119.1942667, 50.6276, 517, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E6100000EBCC98DD6ECC5DC01C7C613255504940', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (6016, 4337, 'SMALL RIVER', -119.506666666667, 53.1088888888889, 980, '1982-06-23', '1983-08-22', NULL, 'BC', NULL, NULL, '0101000020E6100000B8D3063A6DE05DC07A563412F08D4A40', NULL, 'irregular'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (5116, 3438, 'WEST THURLOW', -125.694166666667, 50.4005555555556, 125, '1973-07-18', '1978-11-20', NULL, 'BC', NULL, NULL, '0101000020E6100000B8D3063A6D6C5FC0D4AB896745334940', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (3516, 2773, 'London Ridge High', -117.22867, 50.04931, 2160, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E6100000E2E47E87A24E5DC0D1AE42CA4F064940', NULL, '1-hourly'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (7816, 6132, 'MCDOUGAL', -123.588888888889, 54.8291666666667, 984, '1971-06-30', '1977-10-20', NULL, 'BC', NULL, NULL, '0101000020E610000063B0055BB0E55EC027222222226A4B40', NULL, 'irregular'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (916, 513, 'LOWRY LAKE', -125.133333, 49.433333, 305, NULL, NULL, NULL, 'BC', NULL, NULL, '0101000020E6100000909E228788485FC087A3AB7477B74840', NULL, 'daily'); +INSERT INTO meta_history (history_id, station_id, station_name, lon, lat, elev, sdate, edate, tz_offset, province, country, comments, the_geom, sensor_id, freq) + VALUES (7016, 5335, 'REDDING', -116.337777777778, 49.6638888888889, 1059, '1966-05-13', '1970-10-31', NULL, 'BC', NULL, NULL, '0101000020E6100000D037AF269E155DC051FAA44FFAD44840', NULL, 'irregular'); +SELECT setval('meta_history_history_id_seq'::regclass, max(history_id)) FROM meta_history; + + +-- +-- Data for Name: meta_native_flag; Type: TABLE DATA; Schema: subset; Owner: - +-- + +INSERT INTO meta_native_flag (native_flag_id, flag_name, description, network_id, value, discard) + VALUES (47, 'MoE_AP_9', NULL, 17, '9', NULL); +INSERT INTO meta_native_flag (native_flag_id, flag_name, description, network_id, value, discard) + VALUES (40, 'MoE_AP_1', NULL, 17, '1', NULL); +INSERT INTO meta_native_flag (native_flag_id, flag_name, description, network_id, value, discard) + VALUES (20, 'EC_trace', 'A trace occured; recorded value is 0 (code T)', 1, 'T', true); +INSERT INTO meta_native_flag (native_flag_id, flag_name, description, network_id, value, discard) + VALUES (42, 'MoE_AP_3', 'This appears to indicate that temperature data is not available', 17, '3', NULL); +SELECT setval('meta_native_flag_native_flag_id_seq'::regclass, max(native_flag_id)) FROM meta_native_flag; + + +-- +-- Data for Name: meta_pcic_flag; Type: TABLE DATA; Schema: subset; Owner: - +-- + + + +-- +-- Data for Name: meta_sensor; Type: TABLE DATA; Schema: subset; Owner: - +-- + + + +-- +-- Data for Name: meta_vars; Type: TABLE DATA; Schema: subset; Owner: - +-- + +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (517, 17, 'celsius', NULL, 'air_temperature', 'time: minimum', 'Minimum daily temperature', 'MINTMP', 'Temperature (Min.)', 'air_temperature_minimum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (519, 17, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 'time: sum', 'Daily Precipitation', 'PPT', 'Precipitation Amount', 'lwe_thickness_of_precipitation_amount_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (518, 17, 'celsius', NULL, 'air_temperature', 'time: maximum', 'Maximum daily temperature', 'MAXTMP', 'Temperature (Max.)', 'air_temperature_maximum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (542, 19, 'Celsius', NULL, 'air_temperature', 'time: point', 'Hourly air temperature', 'air_temperature', 'Temperature (Point)', 'air_temperature_point'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (543, 19, 'km/h', NULL, 'wind_speed_of_gust', 'time: maximum', 'Maximum speed of wind gust', 'wind_gust_speed', 'Wind Gust (Max.)', 'wind_speed_of_gust_maximum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (440, 2, 'mm', NULL, 'lwe_thickness_of_precipitation', 'time: sum', NULL, 'PRECIPITATION_GAUGE_TOTAL', 'Precipitation (Cumulative)', 'lwe_thickness_of_precipitation_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (443, 2, '1', NULL, 'foo_bar', 'time: mean', NULL, 'PRECIP_DETECTOR_RATIO', 'Rainfall Amount', NULL); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (497, 12, 'celsius', NULL, 'air_temperature', 'time: point', NULL, 'temperature', 'Temperature (Point)', 'air_temperature_point'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (496, 12, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 'time: sum', 'depth of water-equivalent rain', 'precipitation', 'Precipitation Amount', 'lwe_thickness_of_precipitation_amount_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (579, 9, 'celsius', NULL, 'air_temperature', 't: mean within days t: mean within months t: mean over years', 'Climatological mean of monthly mean of mean daily temperature', 'T_mean_Climatology', 'Temperature Climatology (Mean)', 'air_temperaturet: mean within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (545, 19, 'Celsius', NULL, 'air_temperature', 'time: minimum', 'Minimum daily air temperature', 'air_temperature_yesterday_low', 'Temperature (Min.)', 'air_temperature_minimum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (544, 19, 'Celsius', NULL, 'air_temperature', 'time: maximum', 'Maximum daily air temperature', 'air_temperature_yesterday_high', 'Temperature (Max.)', 'air_temperature_maximum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (429, 1, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 'time: sum', 'Daily precipitation', 'ONE_DAY_PRECIPITATION', 'Precipitation Amount', 'lwe_thickness_of_precipitation_amount_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (551, 19, 'Celsius', NULL, 'dew_point_temperature', 'time: point', 'Dew point', 'dew_point', 'Dew Point Temperature (Point)', 'dew_point_temperature_point'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (550, 19, 'km/h', NULL, 'wind_speed', 'time: point', 'Instantaneous wind speed', 'wind_speed', 'Wind Speed (Point)', 'wind_speed_point'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (548, 19, 'cm', NULL, 'thickness_of_snowfall_amount', 'time: sum', 'Daily snowfall', 'snow_amount', 'Snowfall Amount', 'thickness_of_snowfall_amount_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (549, 19, 'kPa', NULL, 'mean_sea_level', 'time: point', 'Hourly mean sea level', 'mean_sea_level', 'Mean Sea Level', 'mean_sea_level_point'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (552, 19, 'percent', NULL, 'relative_humidity', 'time: point', 'Relative humidity', 'relative_humidity', 'Relative Humidity (Point)', 'relative_humidity_point'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (435, 2, 'celsius', NULL, 'air_temperature', 'time: minimum', NULL, 'MINIMUM_AIR_TEMPERATURE', 'Temperature (Min.)', 'air_temperature_minimum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (450, 2, 'cm', NULL, 'surface_snow_thickness', 'time: point', NULL, 'HEIGHT_OF_SNOW', 'Surface Snow Depth (Point)', 'surface_snow_thickness_point'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (556, 1, 'celsius', NULL, 'air_temperature', 't: maximum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean maximum daily temperature', 'Tx_Climatology', 'Temperature Climatology (Max.)', 'air_temperaturet: maximum within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (449, 2, 'km h-1', NULL, 'wind_speed', 'time: maximum', NULL, 'MAXIMUM_MEASURED_WIND_SPEED1', 'Wind Speed (Max.)', 'wind_speed_maximum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (442, 2, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 'time: sum', NULL, 'HOURLY_PRECIPITATION', 'Precipitation Amount', 'lwe_thickness_of_precipitation_amount_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (444, 2, NULL, NULL, 'wind_speed', 'time: point', NULL, 'ACTUAL_WIND_SPEED', 'Wind Speed (Point)', 'wind_speed_point'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (526, 17, 'mm', NULL, 'lwe_thickness_of_precipitation', 'time: sum', 'Accumulated Precipitation Monthly', 'ACCPPT1', 'Precipitation (Cumulative)', 'lwe_thickness_of_precipitation_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (527, 17, 'mm', NULL, 'lwe_thickness_of_precipitation', 'time: sum', 'Accumulated Precipiation ~Monthly', 'ACCPPT2', 'Precipitation (Cumulative)', 'lwe_thickness_of_precipitation_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (528, 17, 'cm', NULL, 'surface_snow_thickness', 'time: point', 'Accumulated Snow Depth', 'SNOWDEPTH', 'Surface Snow Depth (Point)', 'surface_snow_thickness_point'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (521, 17, '%', NULL, 'relative_humidity', 'time: mean', 'Relative humidity 2', 'HUM2', 'Relative Humidity (Mean)', 'relative_humidity_mean'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (522, 17, '%', NULL, 'relative_humidity', 'time: mean', 'Relative humidity 3', 'HUM3', 'Relative Humidity (Mean)', 'relative_humidity_mean'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (477, 9, NULL, NULL, 'wind_speed', 'time: point', NULL, 'WSPD_SCLR', 'Wind Speed (Point)', 'wind_speed_point'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (437, 2, '%', NULL, 'relative_humidity', 'time: mean', NULL, 'RELATIVE_HUMIDITY1', 'Relative Humidity (Mean)', 'relative_humidity_mean'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (523, 17, '%', NULL, 'relative_humidity', 'time: mean', 'Relative humidity 4', 'HUM4', 'Relative Humidity (Mean)', 'relative_humidity_mean'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (524, 17, NULL, NULL, 'relative_humidity', 'time: mean', 'Humidity 1300', 'HUM1300', 'Relative Humidity (Mean)', 'relative_humidity_mean'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (547, 19, 'mm', NULL, 'thickness_of_rainfall_amount', 'time: sum', 'Daily rainfall amount', 'total_rain', 'Rainfall Amount', 'thickness_of_rainfall_amount_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (434, 2, 'celsius', NULL, 'air_temperature', 'time: point', NULL, 'CURRENT_AIR_TEMPERATURE1', 'Temperature (Point)', 'air_temperature_point'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (447, 2, 'degrees', NULL, 'wind_from_direction', 'time: mean', NULL, 'MEASURED_WIND_DIRECTION1', 'Wind Direction (Mean)', 'wind_from_direction_mean'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (451, 2, 'cm', NULL, 'thickness_of_snowfall_amount', 'time: sum', NULL, 'STANDARD_SNOW', 'Snowfall Amount', 'thickness_of_snowfall_amount_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (569, 5, 'celsius', NULL, 'air_temperature', 't: maximum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean maximum daily temperature', 'Tx_Climatology', 'Temperature Climatology (Max.)', 'air_temperaturet: maximum within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (438, 2, 'celsius', NULL, 'dew_point_temperature', 'time: mean', NULL, 'DEW_POINT', 'Dew Point Temperature (Mean)', 'dew_point_temperature_mean'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (499, 12, 'm s-1', NULL, 'wind_speed', 'time: mean', NULL, 'wind_speed', 'Wind Speed (Mean)', 'wind_speed_mean'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (445, 2, 'degrees', NULL, 'wind_from_direction', 'time: point', NULL, 'ACTUAL_WIND_DIRECTION', 'Wind Direction (Point)', 'wind_from_direction_point'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (441, 2, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 'time: sum', NULL, 'PRECIPITATION_NEW', 'Precipitation Amount', 'lwe_thickness_of_precipitation_amount_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (436, 2, 'celsius', NULL, 'air_temperature', 'time: point', NULL, 'CURRENT_AIR_TEMPERATURE2', 'Temperature (Point)', 'air_temperature_point'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (427, 1, 'celsius', NULL, 'air_temperature', 'time: minimum', 'Minimum daily temperature', 'MIN_TEMP', 'Temperature (Min.)', 'air_temperature_minimum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (448, 2, 'degrees', NULL, 'wind_from_direction', 'time: standard_deviation', NULL, 'WIND_DIRECTION_STD_DEVIATION1', 'Wind Direction (Std Dev)', 'wind_from_direction_standard_deviation'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (557, 1, 'celsius', NULL, 'air_temperature', 't: minimum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean minimum daily temperature', 'Tn_Climatology', 'Temperature Climatology (Min.)', 'air_temperaturet: minimum within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (472, 9, 'celsius', NULL, 'air_temperature', 'time: mean', 'Present temperature', 'TEMP_MEAN', 'Temperature (Mean)', 'air_temperature_mean'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (431, 1, 'cm', NULL, 'thickness_of_snowfall_amount', 'time: sum', 'Daily snow accumulation', 'ONE_DAY_SNOW', 'Snowfall Amount', 'thickness_of_snowfall_amount_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (562, 2, 'celsius', NULL, 'air_temperature', 't: minimum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean minimum daily temperature', 'Tn_Climatology', 'Temperature Climatology (Min.)', 'air_temperaturet: minimum within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (446, 2, 'km h-1', NULL, 'wind_speed', 'time: mean', NULL, 'MEASURED_WIND_SPEED1', 'Wind Speed (Mean)', 'wind_speed_mean'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (428, 1, 'celsius', NULL, 'air_temperature', 'time: maximum', 'Maximum daily temperature', 'MAX_TEMP', 'Temperature (Max.)', 'air_temperature_maximum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (433, 2, 'celsius', NULL, 'air_temperature', 'time: maximum', NULL, 'MAXIMUM_AIR_TEMPERATURE', 'Temperature (Max.)', 'air_temperature_maximum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (430, 1, 'mm', NULL, 'thickness_of_rainfall_amount', 'time: sum', 'Daily rainfall', 'ONE_DAY_RAIN', 'Rainfall Amount', 'thickness_of_rainfall_amount_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (495, 10, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 'time: sum', 'Accumulated precipitation', 'Prec', 'Precipitation Amount', 'lwe_thickness_of_precipitation_amount_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (475, 9, 'millibar', NULL, 'air_pressure', 'time: point', 'Atmospheric pressure', 'BAR_PRESS_HOUR', 'Air Pressure (Point)', 'air_pressure_point'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (476, 9, 'degree', NULL, 'wind_from_direction', 'time: point', NULL, 'WDIR_UVEC', 'Wind Direction (Point)', 'wind_from_direction_point'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (473, 9, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 'time: sum', 'Hourly precipitation', 'PRECIP_TOTAL', 'Precipitation Amount', 'lwe_thickness_of_precipitation_amount_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (525, 17, 's', NULL, 'duration_of_sunshine', 'time: sum', NULL, 'SHOURS', 'Sunshine Duration', 'duration_of_sunshine_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (561, 2, 'celsius', NULL, 'air_temperature', 't: maximum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean maximum daily temperature', 'Tx_Climatology', 'Temperature Climatology (Max.)', 'air_temperaturet: maximum within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (563, 2, 'celsius', NULL, 'air_temperature', 't: mean within days t: mean within months t: mean over years', 'Climatological mean of monthly mean of mean daily temperature', 'T_mean_Climatology', 'Temperature Climatology (Mean)', 'air_temperaturet: mean within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (474, 9, '%', NULL, 'relative_humidity', 'time: point', 'Relative humidity', 'HUMIDITY', 'Relative Humidity (Point)', 'relative_humidity_point'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (564, 2, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 't: sum within months t: mean over years', 'Climatological mean of monthly total precipitation', 'Precip_Climatology', 'Precipitation Climatology', 'lwe_thickness_of_precipitation_amountt: sum within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (572, 5, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 't: sum within months t: mean over years', 'Climatological mean of monthly total precipitation', 'Precip_Climatology', 'Precipitation Climatology', 'lwe_thickness_of_precipitation_amountt: sum within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (493, 10, 'celsius', NULL, 'air_temperature', 'time: minimum', 'Minimum temperature', 'TMin', 'Temperature (Min.)', 'air_temperature_minimum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (494, 10, 'celsius', NULL, 'air_temperature', 'time: maximum', 'Maximum temperature', 'TMax', 'Temperature (Max.)', 'air_temperature_maximum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (583, 10, 'celsius', NULL, 'air_temperature', 't: mean within days t: mean within months t: mean over years', 'Climatological mean of monthly mean of mean daily temperature', 'T_mean_Climatology', 'Temperature Climatology (Mean)', 'air_temperaturet: mean within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (463, 5, 'celsius', NULL, 'air_temperature', 'time: minimum', 'Minimum daily temperature', 'MIN_TEMP', 'Temperature (Min.)', 'air_temperature_minimum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (432, 1, 'cm', NULL, 'surface_snow_thickness', 'time: point', 'Amount of snow on the ground', 'SNOW_ON_THE_GROUND', 'Surface Snow Depth (Point)', 'surface_snow_thickness_point'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (468, 5, 'cm', NULL, 'surface_snow_thickness', 'time: point', 'Amount of snow on the ground', 'SNOW_ON_THE_GROUND', 'Surface Snow Depth (Point)', 'surface_snow_thickness_point'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (467, 5, 'cm', NULL, 'thickness_of_snowfall_amount', 'time: sum', 'Daily snow accumulation', 'ONE_DAY_SNOW', 'Snowfall Amount', 'thickness_of_snowfall_amount_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (465, 5, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 'time: sum', 'Daily precipitation', 'ONE_DAY_PRECIPITATION', 'Precipitation Amount', 'lwe_thickness_of_precipitation_amount_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (570, 5, 'celsius', NULL, 'air_temperature', 't: minimum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean minimum daily temperature', 'Tn_Climatology', 'Temperature Climatology (Min.)', 'air_temperaturet: minimum within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (464, 5, 'celsius', NULL, 'air_temperature', 'time: maximum', 'Maximum daily temperature', 'MAX_TEMP', 'Temperature (Max.)', 'air_temperature_maximum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (466, 5, 'mm', NULL, 'thickness_of_rainfall_amount', 'time: sum', 'Daily rainfall', 'ONE_DAY_RAIN', 'Rainfall Amount', 'thickness_of_rainfall_amount_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (581, 10, 'celsius', NULL, 'air_temperature', 't: maximum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean maximum daily temperature', 'Tx_Climatology', 'Temperature Climatology (Max.)', 'air_temperaturet: maximum within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (580, 9, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 't: sum within months t: mean over years', 'Climatological mean of monthly total precipitation', 'Precip_Climatology', 'Precipitation Climatology', 'lwe_thickness_of_precipitation_amountt: sum within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (500, 12, 'degree', NULL, 'wind_from_direction', 'time: mean', NULL, 'wind_direction', 'Wind Direction (Mean)', 'wind_from_direction_mean'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (590, 12, 'celsius', NULL, 'air_temperature', 't: minimum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean minimum daily temperature', 'Tn_Climatology', 'Temperature Climatology (Min.)', 'air_temperaturet: minimum within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (498, 12, '%', NULL, 'relative_humidity', 'time: mean', NULL, 'relative_humidity', 'Relative Humidity (Mean)', 'relative_humidity_mean'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (582, 10, 'celsius', NULL, 'air_temperature', 't: minimum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean minimum daily temperature', 'Tn_Climatology', 'Temperature Climatology (Min.)', 'air_temperaturet: minimum within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (578, 9, 'celsius', NULL, 'air_temperature', 't: minimum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean minimum daily temperature', 'Tn_Climatology', 'Temperature Climatology (Min.)', 'air_temperaturet: minimum within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (589, 12, 'celsius', NULL, 'air_temperature', 't: maximum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean maximum daily temperature', 'Tx_Climatology', 'Temperature Climatology (Max.)', 'air_temperaturet: maximum within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (558, 1, 'celsius', NULL, 'air_temperature', 't: mean within days t: mean within months t: mean over years', 'Climatological mean of monthly mean of mean daily temperature', 'T_mean_Climatology', 'Temperature Climatology (Mean)', 'air_temperaturet: mean within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (571, 5, 'celsius', NULL, 'air_temperature', 't: mean within days t: mean within months t: mean over years', 'Climatological mean of monthly mean of mean daily temperature', 'T_mean_Climatology', 'Temperature Climatology (Mean)', 'air_temperaturet: mean within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (609, 17, 'celsius', NULL, 'air_temperature', 't: maximum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean maximum daily temperature', 'Tx_Climatology', 'Temperature Climatology (Max.)', 'air_temperaturet: maximum within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (613, 19, 'celsius', NULL, 'air_temperature', 't: maximum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean maximum daily temperature', 'Tx_Climatology', 'Temperature Climatology (Max.)', 'air_temperaturet: maximum within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (555, 19, 'kPa s-1', NULL, 'tendency_of_air_pressure', 'time: sum', 'Air pressure tendency', 'tendency_amount', 'Air Pressure Tendency', 'tendency_of_air_pressure_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (439, 2, 'millibar', NULL, 'air_pressure', 'time: point', NULL, 'ATMOSPHERIC_PRESSURE', 'Air Pressure (Point)', 'air_pressure_point'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (553, 19, 'degree', NULL, 'wind_from_direction', 'time: mean', 'Wind direction octants', 'wind_direction', 'Wind Direction (Mean)', 'wind_from_direction_mean'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (554, 19, 'percent', NULL, 'cloud_area_fraction', 'time: point', 'Total cloud cover', 'total_cloud_cover', 'Cloud Cover Fraction', 'cloud_area_fraction_point'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (546, 19, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 'time: sum', 'Daily precipitation amount', 'total_precipitation', 'Precipitation Amount', 'lwe_thickness_of_precipitation_amount_sum'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (610, 17, 'celsius', NULL, 'air_temperature', 't: minimum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean minimum daily temperature', 'Tn_Climatology', 'Temperature Climatology (Min.)', 'air_temperaturet: minimum within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (614, 19, 'celsius', NULL, 'air_temperature', 't: minimum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean minimum daily temperature', 'Tn_Climatology', 'Temperature Climatology (Min.)', 'air_temperaturet: minimum within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (577, 9, 'celsius', NULL, 'air_temperature', 't: maximum within days t: mean within months t: mean over years', 'Climatological mean of monthly mean maximum daily temperature', 'Tx_Climatology', 'Temperature Climatology (Max.)', 'air_temperaturet: maximum within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (520, 17, '%', NULL, 'relative_humidity', 'time: mean', 'Relative humidity 1', 'HUM1', 'Relative Humidity (Mean)', 'relative_humidity_mean'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (591, 12, 'celsius', NULL, 'air_temperature', 't: mean within days t: mean within months t: mean over years', 'Climatological mean of monthly mean of mean daily temperature', 'T_mean_Climatology', 'Temperature Climatology (Mean)', 'air_temperaturet: mean within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (584, 10, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 't: sum within months t: mean over years', 'Climatological mean of monthly total precipitation', 'Precip_Climatology', 'Precipitation Climatology', 'lwe_thickness_of_precipitation_amountt: sum within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (592, 12, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 't: sum within months t: mean over years', 'Climatological mean of monthly total precipitation', 'Precip_Climatology', 'Precipitation Climatology', 'lwe_thickness_of_precipitation_amountt: sum within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (611, 17, 'celsius', NULL, 'air_temperature', 't: mean within days t: mean within months t: mean over years', 'Climatological mean of monthly mean of mean daily temperature', 'T_mean_Climatology', 'Temperature Climatology (Mean)', 'air_temperaturet: mean within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (615, 19, 'celsius', NULL, 'air_temperature', 't: mean within days t: mean within months t: mean over years', 'Climatological mean of monthly mean of mean daily temperature', 'T_mean_Climatology', 'Temperature Climatology (Mean)', 'air_temperaturet: mean within days t: mean within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (559, 1, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 't: sum within months t: mean over years', 'Climatological mean of monthly total precipitation', 'Precip_Climatology', 'Precipitation Climatology', 'lwe_thickness_of_precipitation_amountt: sum within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (612, 17, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 't: sum within months t: mean over years', 'Climatological mean of monthly total precipitation', 'Precip_Climatology', 'Precipitation Climatology', 'lwe_thickness_of_precipitation_amountt: sum within months t: mean over years'); +INSERT INTO meta_vars (vars_id, network_id, unit, "precision", standard_name, cell_method, long_description, net_var_name, display_name, short_name) + VALUES (616, 19, 'mm', NULL, 'lwe_thickness_of_precipitation_amount', 't: sum within months t: mean over years', 'Climatological mean of monthly total precipitation', 'Precip_Climatology', 'Precipitation Climatology', 'lwe_thickness_of_precipitation_amountt: sum within months t: mean over years'); +SELECT setval('meta_vars_vars_id_seq'::regclass, max(vars_id)) FROM meta_vars; + + +-- +-- Data for Name: obs_raw; Type: TABLE DATA; Schema: subset; Owner: - +-- + +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947887, '1970-05-29 00:00:00', '2011-11-07 23:22:02', 280, 526, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951137, '1966-07-30 00:00:00', '2011-11-14 15:45:05.745204', 360, 527, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383661117, '2000-06-30 23:59:59', '2012-03-28 17:10:09.083401', 17.7288609, 556, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383699895, '2000-07-31 23:59:59', '2012-03-28 17:35:26.295016', 92.8996887, 592, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985743, '1972-08-30 00:00:00', '2011-11-07 23:30:01', 1, 528, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (27795091, '1985-09-02 00:00:00', '2011-08-29 12:13:18.197183', 18.5, 428, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383701369, '2000-08-31 23:59:59', '2012-03-28 17:36:20.575582', 53.262455, 559, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898613, '1975-01-31 00:00:00', '2011-11-07 23:11:09', 84, 528, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383658280, '2000-03-31 23:59:59', '2012-03-28 17:04:16.901053', 7.49910307, 556, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915386, '1971-07-01 00:00:00', '2011-11-07 23:14:20', 400, 527, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702705, '1959-08-21 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985720, '1972-08-30 00:00:00', '2011-11-07 23:30:01', 190, 526, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277897, '1957-10-09 00:00:00', '2011-08-29 12:13:18.197183', 20, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192005, '1991-05-04 00:00:00', '2011-08-29 12:13:18.197183', 14, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383696721, '2000-05-31 23:59:59', '2012-03-28 17:33:20.208574', 48.6818352, 559, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702696, '1959-08-12 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975941, '2006-10-14 00:00:00', '2011-08-29 12:13:18.197183', 13.2777996, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383700766, '2000-08-31 23:59:59', '2012-03-28 17:35:58.670505', 34.885025, 559, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383690517, '2000-11-30 23:59:59', '2012-03-28 17:29:16.002013', 1.65273547, 558, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702665, '1959-07-11 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493079, '1984-01-05 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559787929, '2015-09-24 11:00:00', '2015-09-24 11:30:02.616552', 178.300003, 447, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915347, '1974-07-01 00:00:00', '2011-11-07 23:14:20', 110, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493109, '1983-12-04 00:00:00', '2011-08-29 12:13:18.197183', 0, 430, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383689575, '2000-10-31 23:59:59', '2012-03-28 17:28:41.800291', 4.7278471, 558, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554291567, '2015-09-09 18:00:00', '2015-09-09 18:30:02.590861', 11.54, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027805, '1972-03-12 00:00:00', '2011-10-28 19:25:56', 0.200000003, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523376, '1981-07-01 00:00:00', '2011-10-28 23:23:47', 5.19999981, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821042, '1975-06-14 00:00:00', '2011-10-28 23:50:29', 3, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493087, '1984-01-13 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947883, '1969-09-26 00:00:00', '2011-11-07 23:22:02', 640, 526, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554329813, '2015-09-10 07:00:00', '2015-09-10 07:30:02.527375', 8.56000042, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191989, '1991-04-18 00:00:00', '2011-08-29 12:13:18.197183', 22.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277922, '1957-12-04 00:00:00', '2011-08-29 12:13:18.197183', 4.4000001, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975942, '2006-10-15 00:00:00', '2011-08-29 12:13:18.197183', 13.1667004, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383666979, '2000-12-31 23:59:59', '2012-03-28 21:12:26.155705', 5.0999999, 556, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559802831, '2015-09-24 16:00:00', '2015-09-24 16:30:03.045685', 969, 439, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383677205, '2000-10-31 23:59:59', '2012-03-28 17:21:09.229395', 10.2744818, 557, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523411, '1981-08-05 00:00:00', '2011-10-28 23:23:47', 9.69999981, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493083, '1984-01-09 00:00:00', '2011-08-29 12:13:18.197183', 2.4000001, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783780, '2004-08-28 02:00:00', '2011-08-29 12:13:18.197183', 95.9000015, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424199, '1989-10-11 00:00:00', '2011-08-29 12:13:18.197183', 9.39999962, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702688, '1959-08-04 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523400, '1981-07-25 00:00:00', '2011-10-28 23:23:47', 8.5, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358199, '2015-01-09 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027780, '1972-02-16 00:00:00', '2011-10-28 19:25:56', -5.69999981, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425178, '1989-04-05 00:00:00', '2011-08-29 12:13:18.197183', 8.5, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (44478648, '1972-06-20 00:00:00', '2011-08-29 12:13:18.197183', 17.2000008, 428, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493091, '1984-01-17 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383689376, '2000-10-31 23:59:59', '2012-03-28 17:28:34.734476', 5.53430557, 558, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852530, '2006-02-11 19:00:00', '2011-08-29 12:13:18.197183', 5.19999981, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424195, '1989-10-07 00:00:00', '2011-08-29 12:13:18.197183', 13.6000004, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081733, '1990-12-21 14:00:00', '2011-08-29 12:13:18.197183', -29.5, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277931, '1957-12-13 00:00:00', '2011-08-29 12:13:18.197183', 3.9000001, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559790824, '2015-09-24 12:00:00', '2015-09-24 12:30:03.478752', -0.200000003, 442, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380996493, '1983-01-17 12:04:00', '2011-11-07 23:32:08', 0, 528, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358195, '2015-01-05 00:00:00', '2015-09-23 00:00:22.705906', 19, 429, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383679491, '2000-12-31 23:59:59', '2012-03-28 17:22:29.55237', -5.09820843, 557, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898627, '1977-02-06 00:00:00', '2011-11-07 23:11:09', 70, 528, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783782, '2004-08-28 04:00:00', '2011-08-29 12:13:18.197183', 98, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487137767, '2013-08-22 05:00:00', '2013-09-04 15:39:33.442132', 315, 553, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425184, '1989-04-11 00:00:00', '2011-08-29 12:13:18.197183', 17.7000008, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915344, '1973-09-01 00:00:00', '2011-11-07 23:14:20', 210, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383678920, '2000-12-31 23:59:59', '2012-03-28 17:22:10.072003', 2.49889112, 557, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821060, '1975-07-02 00:00:00', '2011-10-28 23:50:29', 10.3999996, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702698, '1959-08-14 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192015, '1991-05-14 00:00:00', '2011-08-29 12:13:18.197183', 20.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487140612, '2013-08-22 09:00:00', '2013-09-04 15:39:54.76078', 1, 550, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689679, '1990-08-18 00:00:00', '2011-10-28 20:38:54', 1, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559793908, '2015-09-24 13:00:00', '2015-09-24 13:30:02.704658', 5, 438, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963573, '1971-06-29 00:00:00', '2011-11-07 23:25:31', 780, 527, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945308, '1969-09-26 00:00:00', '2011-11-07 23:21:21', 900, 526, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689656, '1990-07-26 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947901, '1970-10-29 00:00:00', '2011-11-07 23:22:02', 350, 527, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (49967254, '1972-06-21 00:00:00', '2011-08-29 12:13:18.197183', 18.2999992, 428, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903892, '1976-06-28 00:00:00', '2011-11-07 23:12:13', 490, 526, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277918, '1957-10-30 00:00:00', '2011-08-29 12:13:18.197183', 12.1999998, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358201, '2015-01-11 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383691399, '2000-12-31 23:59:59', '2012-03-28 17:29:47.905528', -7.02201509, 558, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821064, '1975-07-06 00:00:00', '2011-10-28 23:50:29', 7.80000019, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702692, '1959-08-08 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980210, '1978-04-11 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523372, '1981-06-27 00:00:00', '2011-10-28 23:23:47', 4.80000019, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903897, '1977-05-16 00:00:00', '2011-11-07 23:12:13', 90, 526, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (5449826, '1974-03-06 00:00:00', '2011-08-29 12:13:18.197183', 5.5999999, 428, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980214, '1978-08-28 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487137022, '2013-08-22 04:00:00', '2013-09-04 15:39:28.123839', 101.5, 549, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903905, '1975-05-28 00:00:00', '2011-11-07 23:12:13', 70, 527, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874104, '1978-09-28 00:00:00', '2011-11-07 23:04:35', 4360, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383683252, '2000-04-30 23:59:59', '2012-03-28 17:24:52.397788', 2.54273725, 558, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783792, '2004-08-28 14:00:00', '2011-08-29 12:13:18.197183', 61.0299988, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915334, '1972-04-30 00:00:00', '2011-11-07 23:14:20', 170, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898605, '1975-09-04 00:00:00', '2011-11-07 23:11:09', 830, 527, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380922318, '1969-06-29 00:00:00', '2011-11-07 23:15:58', 620, 526, 6116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903885, '1974-10-30 00:00:00', '2011-11-07 23:12:13', 2770, 526, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380929106, '1977-07-06 00:00:00', '2011-11-07 23:17:34', 500, 527, 6316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383704251, '2000-10-31 23:59:59', '2012-03-28 17:38:14.130467', 124.715393, 559, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970975, '1974-06-29 00:00:00', '2011-11-07 23:27:12', 630, 527, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898588, '1974-09-30 00:00:00', '2011-11-07 23:11:09', 910, 526, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425216, '1989-05-13 00:00:00', '2011-08-29 12:13:18.197183', 17.7999992, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625957, '1974-08-02 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963583, '1973-05-29 00:00:00', '2011-11-07 23:25:31', 310, 527, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980223, '1980-05-27 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424193, '1989-10-05 00:00:00', '2011-08-29 12:13:18.197183', 12.6999998, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898614, '1975-02-28 00:00:00', '2011-11-07 23:11:09', 88, 528, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383689441, '2000-10-31 23:59:59', '2012-03-28 17:28:37.02681', 6.29803038, 558, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493077, '1984-01-03 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942213, '1969-10-29 00:00:00', '2011-11-07 23:20:33', 270, 526, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975961, '2006-11-03 00:00:00', '2011-08-29 12:13:18.197183', 0.777800024, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783783, '2004-08-28 05:00:00', '2011-08-29 12:13:18.197183', 98.6999969, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970972, '1975-10-01 00:00:00', '2011-11-07 23:27:12', 150, 526, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383699042, '2000-07-31 23:59:59', '2012-03-28 17:34:55.188736', 56.5051918, 559, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689687, '1990-08-26 00:00:00', '2011-10-28 20:38:54', 3, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192014, '1991-05-13 00:00:00', '2011-08-29 12:13:18.197183', 20.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915332, '1971-10-01 00:00:00', '2011-11-07 23:14:20', 410, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942221, '1969-05-04 00:00:00', '2011-11-07 23:20:33', 520, 527, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383661444, '2000-06-30 23:59:59', '2012-03-28 17:10:20.785491', 22.5443516, 556, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424171, '1989-09-13 00:00:00', '2011-08-29 12:13:18.197183', 0, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383705478, '2000-11-30 23:59:59', '2012-03-28 21:12:12.997287', 304.399994, 559, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523395, '1981-07-20 00:00:00', '2011-10-28 23:23:47', 11.5, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942207, '1969-05-04 00:00:00', '2011-11-07 23:20:33', 540, 526, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424185, '1989-09-27 00:00:00', '2011-08-29 12:13:18.197183', 18.1000004, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383662364, '2000-07-31 23:59:59', '2012-03-28 17:10:54.107115', 25.0943699, 556, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381366, '1974-05-30 00:00:00', '2011-10-28 20:03:47', 4.19999981, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903902, '1977-10-11 00:00:00', '2011-11-07 23:12:13', 1510, 526, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689678, '1990-08-17 00:00:00', '2011-10-28 20:38:54', 3, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027802, '1972-03-09 00:00:00', '2011-10-28 19:25:56', -0.100000001, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265217, '1989-09-06 00:00:00', '2011-10-28 21:36:17', 13.1999998, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970978, '1974-10-29 00:00:00', '2011-11-07 23:27:12', 460, 527, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383684639, '2000-05-31 23:59:59', '2012-03-28 17:25:43.487702', 8.85673332, 558, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903884, '1974-08-28 00:00:00', '2011-11-07 23:12:13', 150, 526, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903889, '1975-08-25 00:00:00', '2011-11-07 23:12:13', 400, 526, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821055, '1975-06-27 00:00:00', '2011-10-28 23:50:29', 2.20000005, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424212, '1990-06-23 00:00:00', '2011-08-29 12:13:18.197183', 18.1000004, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523407, '1981-08-01 00:00:00', '2011-10-28 23:23:47', 6.5, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381359, '1974-05-23 00:00:00', '2011-10-28 20:03:47', 5.30000019, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383662973, '2000-08-31 23:59:59', '2012-03-28 21:08:53.891331', 16.7000008, 556, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874114, '1974-06-28 00:00:00', '2011-11-07 23:04:35', 1030, 527, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383664080, '2000-09-30 23:59:59', '2012-03-28 17:11:55.971391', 14.7585726, 556, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903898, '1977-06-14 00:00:00', '2011-11-07 23:12:13', 550, 526, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383669212, '2000-02-29 23:59:59', '2012-03-28 17:16:26.430466', 5.53630686, 557, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980167, '1980-05-27 00:00:00', '2011-11-07 23:28:58', 335, 526, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380883287, '1975-07-31 00:00:00', '2011-11-07 23:06:30', 330, 526, 5316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852517, '2006-02-11 06:00:00', '2011-08-29 12:13:18.197183', 4.5999999, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852502, '2006-02-10 15:00:00', '2011-08-29 12:13:18.197183', 9.69999981, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265212, '1989-09-01 00:00:00', '2011-10-28 21:36:17', 10.6000004, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559802833, '2015-09-24 16:00:00', '2015-09-24 16:30:03.045685', 216.5, 447, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980227, '1980-09-16 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265203, '1989-08-23 00:00:00', '2011-10-28 21:36:17', 9.19999981, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425207, '1989-05-04 00:00:00', '2011-08-29 12:13:18.197183', 21.7000008, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980161, '1979-05-26 00:00:00', '2011-11-07 23:28:58', 96, 526, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874122, '1975-01-14 00:00:00', '2011-11-07 23:04:35', 71, 528, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383678031, '2000-11-30 23:59:59', '2012-03-28 21:11:58.946038', 0.899999976, 557, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783768, '2004-08-27 14:00:00', '2011-08-29 12:13:18.197183', 78.1999969, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625969, '1974-08-14 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523404, '1981-07-29 00:00:00', '2011-10-28 23:23:47', 7.0999999, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783812, '2004-08-29 10:00:00', '2011-08-29 12:13:18.197183', 72.6999969, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889653, '1976-02-10 00:00:00', '2011-11-07 23:09:20', 1930, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689690, '1990-08-29 00:00:00', '2011-10-28 20:38:54', 19, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265173, '1989-07-24 00:00:00', '2011-10-28 21:36:17', 25.7000008, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265199, '1989-08-19 00:00:00', '2011-10-28 21:36:17', 12.5, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383674511, '2000-07-31 23:59:59', '2012-03-28 17:19:33.855103', 11.4580956, 557, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915327, '1969-10-28 00:00:00', '2011-11-07 23:14:20', 290, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942211, '1969-08-28 00:00:00', '2011-11-07 23:20:33', 30, 526, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702682, '1959-07-29 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951132, '1969-09-30 00:00:00', '2011-11-07 23:22:45', 590, 527, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081744, '1990-12-22 01:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942229, '1970-09-28 00:00:00', '2011-11-07 23:20:33', 110, 527, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898595, '1976-07-28 00:00:00', '2011-11-07 23:11:09', 510, 526, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487138489, '2013-08-22 06:00:00', '2013-09-04 15:39:39.002254', 18.7999992, 542, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487137021, '2013-08-22 04:00:00', '2013-09-04 15:39:28.123839', 2, 550, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383671074, '2000-04-30 23:59:59', '2012-03-28 21:05:40.060912', 2.0999999, 557, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383687408, '2000-08-31 23:59:59', '2012-03-28 17:27:23.588621', 15.9888477, 558, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493080, '1984-01-06 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554279762, '2015-09-09 14:00:00', '2015-09-09 14:30:03.08718', 11.79, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945321, '1970-01-30 00:00:00', '2011-11-07 23:21:21', 76, 528, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903904, '1974-08-28 00:00:00', '2011-11-07 23:12:13', 130, 527, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970979, '1975-05-29 00:00:00', '2011-11-07 23:27:12', 530, 527, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975934, '2006-10-07 00:00:00', '2011-08-29 12:13:18.197183', 15, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081750, '1990-12-22 07:00:00', '2011-08-29 12:13:18.197183', -31.2999992, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702678, '1959-07-24 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523373, '1981-06-28 00:00:00', '2011-10-28 23:23:47', 4.80000019, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702677, '1959-07-23 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081754, '1990-12-22 22:00:00', '2011-08-29 12:13:18.197183', -29.3999996, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783788, '2004-08-28 10:00:00', '2011-08-29 12:13:18.197183', 64.6699982, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874075, '1975-06-25 00:00:00', '2011-11-07 23:04:35', 680, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559793907, '2015-09-24 13:00:00', '2015-09-24 13:30:02.704658', 21.1100006, 434, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381355, '1974-05-19 00:00:00', '2011-10-28 20:03:47', 4.5999999, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487138487, '2013-08-22 06:00:00', '2013-09-04 15:39:39.002254', 315, 553, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493088, '1984-01-14 00:00:00', '2011-08-29 12:13:18.197183', 3.79999995, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942216, '1970-05-29 00:00:00', '2011-11-07 23:20:33', 100, 526, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625968, '1974-08-13 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383666466, '2000-11-30 23:59:59', '2012-03-28 17:13:22.275058', 0.343257606, 556, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821059, '1975-07-01 00:00:00', '2011-10-28 23:50:29', 4.4000001, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027762, '1972-01-29 00:00:00', '2011-10-28 19:25:56', -12.3000002, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380883281, '1973-07-29 00:00:00', '2011-11-07 23:06:30', 970, 526, 5316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821039, '1975-06-11 00:00:00', '2011-10-28 23:50:29', 1.60000002, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383689513, '2000-10-31 23:59:59', '2012-03-28 17:28:39.607355', 7.43541956, 558, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380883284, '1974-07-31 00:00:00', '2011-11-07 23:06:30', 1030, 526, 5316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383672082, '2000-05-31 23:59:59', '2012-03-28 21:06:34.12102', 5, 557, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903914, '1977-06-14 00:00:00', '2011-11-07 23:12:13', 520, 527, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985740, '1975-08-29 00:00:00', '2011-11-07 23:30:01', 710, 527, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383664142, '2000-09-30 23:59:59', '2012-03-28 17:11:58.168647', 19.3824272, 556, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915345, '1973-09-25 00:00:00', '2011-11-07 23:14:20', 340, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942224, '1969-07-28 00:00:00', '2011-11-07 23:20:33', 380, 527, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963589, '1971-11-27 00:00:00', '2011-11-07 23:25:31', 0, 528, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852518, '2006-02-11 07:00:00', '2011-08-29 12:13:18.197183', 4.0999999, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874107, '1973-10-17 00:00:00', '2011-11-07 23:04:35', 730, 527, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689691, '1990-08-30 00:00:00', '2011-10-28 20:38:54', 9, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265183, '1989-08-03 00:00:00', '2011-10-28 21:36:17', 11.1999998, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383672200, '2000-05-31 23:59:59', '2012-03-28 17:18:13.566709', 0.205573216, 557, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383682119, '2000-03-31 23:59:59', '2012-03-28 21:04:30.756322', 3.9000001, 558, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380883285, '1974-10-01 00:00:00', '2011-11-07 23:06:30', 530, 526, 5316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383688078, '2000-09-30 23:59:59', '2012-03-28 21:10:00.477419', 11.3000002, 558, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424186, '1989-09-28 00:00:00', '2011-08-29 12:13:18.197183', 19.7000008, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951135, '1966-05-30 00:00:00', '2011-11-14 15:45:05.745204', 90, 527, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559800337, '2015-09-24 15:00:00', '2015-09-24 15:30:02.895857', 3.96199989, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915336, '1972-07-01 00:00:00', '2011-11-07 23:14:20', 1160, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380919685, '1983-07-05 14:00:00', '2011-11-07 23:15:14', 818, 527, 6016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265219, '1989-09-08 00:00:00', '2011-10-28 21:36:17', 11.1000004, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383687101, '2000-08-31 23:59:59', '2012-03-28 21:09:06.984737', 13.5, 558, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381372, '1974-06-05 00:00:00', '2011-10-28 20:03:47', 4.30000019, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898615, '1975-03-27 00:00:00', '2011-11-07 23:11:09', 104, 528, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383684506, '2000-05-31 23:59:59', '2012-03-28 17:25:38.531922', 10.4380465, 558, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689695, '1990-09-03 00:00:00', '2011-10-28 20:38:54', 0.5, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383686429, '2000-07-31 23:59:59', '2012-03-28 17:26:48.275805', 16.0342064, 558, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903888, '1975-07-28 00:00:00', '2011-11-07 23:12:13', 520, 526, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265221, '1989-09-10 00:00:00', '2011-10-28 21:36:17', 6.30000019, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975958, '2006-10-31 00:00:00', '2011-08-29 12:13:18.197183', 2.72219992, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383670242, '2000-03-31 23:59:59', '2012-03-28 17:17:03.366035', 6.28140783, 557, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425175, '1989-04-02 00:00:00', '2011-08-29 12:13:18.197183', 4.5999999, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903894, '1976-08-30 00:00:00', '2011-11-07 23:12:13', 630, 526, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383677467, '2000-10-31 23:59:59', '2012-03-28 17:21:18.411579', 2.86866951, 557, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903891, '1975-11-03 00:00:00', '2011-11-07 23:12:13', 1170, 526, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (381005535, '1975-08-05 00:00:00', '2011-11-10 19:58:42', 1260, 526, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383683636, '2000-04-30 23:59:59', '2012-03-28 17:25:06.078969', 3.74923205, 558, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783769, '2004-08-27 15:00:00', '2011-08-29 12:13:18.197183', 80.4000015, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821061, '1975-07-03 00:00:00', '2011-10-28 23:50:29', 9.80000019, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383707200, '2000-12-31 23:59:59', '2012-03-28 17:40:00.226811', 70.3898315, 559, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898593, '1975-10-31 00:00:00', '2011-11-07 23:11:09', 540, 526, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358202, '2015-01-12 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945305, '1969-06-27 00:00:00', '2011-11-07 23:21:21', 670, 526, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383660002, '2000-05-31 23:59:59', '2012-03-28 21:06:08.015982', 12.3000002, 556, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821043, '1975-06-15 00:00:00', '2011-10-28 23:50:29', -0.100000001, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383695233, '2000-04-30 23:59:59', '2012-03-28 17:32:22.66584', 49.7751045, 559, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265178, '1989-07-29 00:00:00', '2011-10-28 21:36:17', 9.39999962, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383674439, '2000-07-31 23:59:59', '2012-03-28 17:19:31.355084', 9.3838644, 557, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970967, '1974-10-29 00:00:00', '2011-11-07 23:27:12', 460, 526, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383683134, '2000-04-30 23:59:59', '2012-03-28 21:05:27.086494', 6, 558, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380922327, '1969-08-30 00:00:00', '2011-11-07 23:15:58', 420, 527, 6116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898621, '1976-03-05 00:00:00', '2011-11-07 23:11:09', 119, 528, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903899, '1977-07-14 00:00:00', '2011-11-07 23:12:13', 570, 526, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985717, '1971-08-30 00:00:00', '2011-11-07 23:30:01', 410, 526, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381356, '1974-05-20 00:00:00', '2011-10-28 20:03:47', 6.69999981, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903910, '1976-08-30 00:00:00', '2011-11-07 23:12:13', 550, 527, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689673, '1990-08-12 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383668000, '2000-01-31 23:59:59', '2012-03-28 20:34:34.772801', -2.0999999, 557, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358172, '2015-03-13 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554318235, '2015-09-10 03:00:00', '2015-09-10 03:30:02.686051', 9.55000019, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559790822, '2015-09-24 12:00:00', '2015-09-24 12:30:03.478752', 16.6200008, 434, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383680817, '2000-01-31 23:59:59', '2012-03-28 17:23:24.833174', -9.19758415, 563, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380929113, '1978-02-06 00:00:00', '2011-11-07 23:17:34', 41, 528, 6316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985722, '1973-07-31 00:00:00', '2011-11-07 23:30:01', 330, 526, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383685253, '2000-06-30 23:59:59', '2012-03-28 17:26:06.026285', 11.2034016, 558, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265174, '1989-07-25 00:00:00', '2011-10-28 21:36:17', 12.8000002, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383698176, '2000-06-30 23:59:59', '2012-03-28 17:34:20.649333', 61.9755478, 559, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689683, '1990-08-22 00:00:00', '2011-10-28 20:38:54', 1, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383676213, '2000-09-30 23:59:59', '2012-03-28 17:20:33.95276', 14.3518648, 557, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383687543, '2000-08-31 23:59:59', '2012-03-28 17:27:28.39498', 18.2192879, 558, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821066, '1975-07-08 00:00:00', '2011-10-28 23:50:29', 8.10000038, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963563, '1972-08-31 00:00:00', '2011-11-07 23:25:31', 260, 526, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192010, '1991-05-09 00:00:00', '2011-08-29 12:13:18.197183', 9.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424207, '1989-10-19 00:00:00', '2011-08-29 12:13:18.197183', 9.10000038, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358167, '2015-03-08 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625952, '1974-07-28 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027771, '1972-02-07 00:00:00', '2011-10-28 19:25:56', -3.29999995, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383685578, '2000-06-30 23:59:59', '2012-03-28 17:26:17.753534', 16.0290432, 558, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702668, '1959-07-14 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942210, '1969-07-28 00:00:00', '2011-11-07 23:20:33', 410, 526, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898606, '1975-10-03 00:00:00', '2011-11-07 23:11:09', 170, 527, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424178, '1989-09-20 00:00:00', '2011-08-29 12:13:18.197183', 18, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383669026, '2000-02-29 23:59:59', '2012-03-28 21:02:55.135313', -1, 557, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383672946, '2000-06-30 23:59:59', '2012-03-28 17:18:39.472132', 9.39881611, 557, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951119, '1970-07-31 00:00:00', '2011-11-07 23:22:45', 310, 526, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970969, '1975-07-01 00:00:00', '2011-11-07 23:27:12', 710, 526, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980205, '1977-11-22 00:00:00', '2011-11-07 23:28:58', 10, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625976, '1974-08-21 00:00:00', '2011-08-29 12:13:18.197183', 0.800000012, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383675168, '2000-08-31 23:59:59', '2012-03-28 17:19:56.801228', 5.7089467, 557, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852549, '2006-02-12 14:00:00', '2011-08-29 12:13:18.197183', 8.80000019, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383681467, '2000-02-29 23:59:59', '2012-03-28 17:23:48.38072', -2.81654644, 558, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942228, '1970-08-29 00:00:00', '2011-11-07 23:20:33', 170, 527, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945322, '1970-02-26 00:00:00', '2011-11-07 23:21:21', 65, 528, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383680382, '2000-01-31 23:59:59', '2012-03-28 17:23:09.347981', -7.50592947, 558, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027809, '1972-03-16 00:00:00', '2011-10-28 19:25:56', 2.79999995, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381360, '1974-05-24 00:00:00', '2011-10-28 20:03:47', 9.30000019, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980164, '1979-08-21 00:00:00', '2011-11-07 23:28:58', 535, 526, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951133, '1969-10-30 00:00:00', '2011-11-07 23:22:45', 300, 527, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383652783, '2000-01-31 23:59:59', '2012-03-28 14:35:24.221368', 67.3981628, 559, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358166, '2015-03-07 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277919, '1957-12-01 00:00:00', '2011-08-29 12:13:18.197183', 6.69999981, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493089, '1984-01-15 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383699765, '2000-07-31 23:59:59', '2012-03-28 17:35:21.605583', 63.9945183, 559, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559796860, '2015-09-24 14:00:00', '2015-09-24 14:30:03.973543', 171.5, 447, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027804, '1972-03-11 00:00:00', '2011-10-28 19:25:56', -1, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383691461, '2000-12-31 23:59:59', '2012-03-28 17:29:50.141524', -4.90358448, 558, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970959, '1973-06-28 00:00:00', '2011-11-07 23:27:12', 730, 526, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383695951, '2000-05-31 23:59:59', '2012-03-28 17:32:51.187215', 42.65905, 559, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945318, '1970-10-29 00:00:00', '2011-11-07 23:21:21', 490, 527, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874110, '1974-02-21 00:00:00', '2011-11-07 23:04:35', 3570, 527, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277896, '1957-10-08 00:00:00', '2011-08-29 12:13:18.197183', 17.7999992, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383680070, '2000-01-31 23:59:59', '2012-03-28 20:34:21.856908', 1.29999995, 558, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191972, '1991-04-01 00:00:00', '2011-08-29 12:13:18.197183', 18.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889642, '1974-12-17 00:00:00', '2011-11-07 23:09:20', 2120, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915383, '1969-08-28 00:00:00', '2011-11-07 23:14:20', 610, 527, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493101, '1984-01-27 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358191, '2015-01-01 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975946, '2006-10-19 00:00:00', '2011-08-29 12:13:18.197183', 9.83300018, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783785, '2004-08-28 07:00:00', '2011-08-29 12:13:18.197183', 96.6999969, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980157, '1977-09-20 00:00:00', '2011-11-07 23:28:58', 300, 526, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191999, '1991-04-28 00:00:00', '2011-08-29 12:13:18.197183', 18.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380883280, '1973-06-29 00:00:00', '2011-11-07 23:06:30', 1300, 526, 5316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852505, '2006-02-10 18:00:00', '2011-08-29 12:13:18.197183', 4.80000019, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852547, '2006-02-12 12:00:00', '2011-08-29 12:13:18.197183', 9.19999981, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383656664, '2000-01-31 23:59:59', '2012-03-28 17:03:14.735635', -6.2602582, 561, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985738, '1974-08-29 00:00:00', '2011-11-07 23:30:01', 290, 527, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702674, '1959-07-20 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702669, '1959-07-15 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027763, '1972-01-30 00:00:00', '2011-10-28 19:25:56', -10.6000004, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383667288, '2000-12-31 23:59:59', '2012-03-28 17:13:52.640002', -3.08874226, 556, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559802837, '2015-09-24 16:00:00', '2015-09-24 16:30:03.045685', 0.100000001, 442, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383658479, '2000-03-31 23:59:59', '2012-03-28 17:04:24.187972', 2.04141331, 556, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383667423, '2000-12-31 23:59:59', '2012-03-28 17:13:57.396322', 0.00666410616, 556, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898611, '1974-11-28 00:00:00', '2011-11-07 23:11:09', 23, 528, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821047, '1975-06-19 00:00:00', '2011-10-28 23:50:29', 5.30000019, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277917, '1957-10-29 00:00:00', '2011-08-29 12:13:18.197183', 12.8000002, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821079, '1975-07-27 00:00:00', '2011-10-28 23:50:29', 5.30000019, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852519, '2006-02-11 08:00:00', '2011-08-29 12:13:18.197183', 4.30000019, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942214, '1969-11-28 00:00:00', '2011-11-07 23:20:33', 160, 526, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383668313, '2000-01-31 23:59:59', '2012-03-28 17:15:55.249036', -12.7123346, 557, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963564, '1972-09-29 00:00:00', '2011-11-07 23:25:31', 400, 526, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898628, '1977-02-27 00:00:00', '2011-11-07 23:11:09', 96, 528, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383673075, '2000-06-30 23:59:59', '2012-03-28 21:07:27.40493', 8, 557, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383663156, '2000-08-31 23:59:59', '2012-03-28 17:11:22.794074', 22.0815868, 556, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487142029, '2013-08-22 11:00:00', '2013-09-04 15:40:05.111065', 0, 550, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192019, '1991-05-18 00:00:00', '2011-08-29 12:13:18.197183', 25, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942236, '1971-01-29 00:00:00', '2011-11-07 23:20:33', 15, 528, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487142030, '2013-08-22 11:00:00', '2013-09-04 15:40:05.111065', 101.400002, 549, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980216, '1979-05-26 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383666851, '2000-12-31 23:59:59', '2012-03-28 17:13:36.866036', 6.80898094, 556, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383686122, '2000-07-31 23:59:59', '2012-03-28 21:08:07.884519', 13.1000004, 558, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383675046, '2000-08-31 23:59:59', '2012-03-28 21:09:20.286381', 10.3000002, 557, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192006, '1991-05-05 00:00:00', '2011-08-29 12:13:18.197183', 14, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915338, '1972-09-01 00:00:00', '2011-11-07 23:14:20', 340, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424187, '1989-09-29 00:00:00', '2011-08-29 12:13:18.197183', 19.8999996, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265208, '1989-08-28 00:00:00', '2011-10-28 21:36:17', 7, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625978, '1974-08-23 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975912, '2006-09-15 00:00:00', '2011-08-29 12:13:18.197183', 14.3888998, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874088, '1976-08-05 00:00:00', '2011-11-07 23:04:35', 470, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852506, '2006-02-10 19:00:00', '2011-08-29 12:13:18.197183', 3.5999999, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985721, '1972-10-05 00:00:00', '2011-11-07 23:30:01', 500, 526, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915330, '1971-08-01 00:00:00', '2011-11-07 23:14:20', 760, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027810, '1972-03-17 00:00:00', '2011-10-28 19:25:56', 1.10000002, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (384567489, '2012-05-15 06:00:00', '2012-05-16 00:00:04.327942', 4.9000001, 545, 8416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963587, '1973-09-29 00:00:00', '2011-11-07 23:25:31', 180, 527, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970966, '1974-09-28 00:00:00', '2011-11-07 23:27:12', 480, 526, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554250706, '2015-09-09 04:00:00', '2015-09-09 04:30:02.945516', 9.22000027, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559799914, '2015-09-24 15:00:00', '2015-09-24 15:30:02.895857', 154.5, 447, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689677, '1990-08-16 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963559, '1972-04-29 00:00:00', '2011-11-07 23:25:31', 60, 526, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383693922, '2000-03-31 23:59:59', '2012-03-28 17:31:34.017157', 55.8791924, 559, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383668376, '2000-01-31 23:59:59', '2012-03-28 17:15:57.358388', -9.95195389, 557, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942225, '1969-08-28 00:00:00', '2011-11-07 23:20:33', 30, 527, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702657, '1959-07-03 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942235, '1970-12-29 00:00:00', '2011-11-07 23:20:33', 25, 528, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383662437, '2000-07-31 23:59:59', '2012-03-28 17:10:56.790002', 25.7077389, 556, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559799912, '2015-09-24 15:00:00', '2015-09-24 15:30:02.895857', 970, 439, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942223, '1969-06-28 00:00:00', '2011-11-07 23:20:33', 610, 527, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852534, '2006-02-11 23:00:00', '2011-08-29 12:13:18.197183', 2.29999995, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942218, '1970-08-29 00:00:00', '2011-11-07 23:20:33', 180, 526, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383706944, '2000-12-31 23:59:59', '2012-03-28 17:39:51.051148', 57.3371506, 559, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951127, '1966-09-28 00:00:00', '2011-11-14 15:45:05.745204', 40, 526, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383662171, '2000-07-31 23:59:59', '2012-03-28 17:10:47.172418', 22.0515919, 556, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425203, '1989-04-30 00:00:00', '2011-08-29 12:13:18.197183', 24.8999996, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191986, '1991-04-15 00:00:00', '2011-08-29 12:13:18.197183', 19.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852543, '2006-02-12 08:00:00', '2011-08-29 12:13:18.197183', 4.69999981, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380919676, '1982-07-15 14:00:00', '2011-11-07 23:15:14', 892, 526, 6016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625963, '1974-08-08 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383705926, '2000-11-30 23:59:59', '2012-03-28 17:39:14.268086', 72.9835205, 559, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383683314, '2000-04-30 23:59:59', '2012-03-28 17:24:54.580385', 11.464138, 558, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945307, '1969-08-27 00:00:00', '2011-11-07 23:21:21', 140, 526, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975948, '2006-10-21 00:00:00', '2011-08-29 12:13:18.197183', 12.1110001, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081740, '1990-12-21 21:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915337, '1972-08-01 00:00:00', '2011-11-07 23:14:20', 630, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951115, '1969-09-30 00:00:00', '2011-11-07 23:22:45', 600, 526, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380922330, '1970-07-30 00:00:00', '2011-11-07 23:15:58', 190, 527, 6116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874095, '1977-04-21 00:00:00', '2011-11-07 23:04:35', 1350, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874111, '1974-03-19 00:00:00', '2011-11-07 23:04:35', 2360, 527, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (390551870, '2012-09-16 06:00:00', '2012-09-17 00:00:04.208308', 0, 546, 8516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493082, '1984-01-08 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383667869, '2000-01-31 23:59:59', '2012-03-28 17:15:40.035484', 2.21980524, 557, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493076, '1984-01-02 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975928, '2006-10-01 00:00:00', '2011-08-29 12:13:18.197183', 16.1110992, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424196, '1989-10-08 00:00:00', '2011-08-29 12:13:18.197183', 14.3000002, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915360, '1977-06-30 00:00:00', '2011-11-07 23:14:20', 490, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951111, '1969-06-02 00:00:00', '2011-11-07 23:22:45', 630, 526, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970976, '1974-08-30 00:00:00', '2011-11-07 23:27:12', 210, 527, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821053, '1975-06-25 00:00:00', '2011-10-28 23:50:29', 3.9000001, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192003, '1991-05-02 00:00:00', '2011-08-29 12:13:18.197183', 22, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559802836, '2015-09-24 16:00:00', '2015-09-24 16:30:03.045685', 6, 438, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689662, '1990-08-01 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702671, '1959-07-17 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383684319, '2000-05-31 23:59:59', '2012-03-28 17:25:31.485018', 14.4800615, 558, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383672807, '2000-05-31 23:59:59', '2012-03-28 17:18:34.301512', -5.74082232, 562, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975930, '2006-10-03 00:00:00', '2011-08-29 12:13:18.197183', 12.6111002, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702693, '1959-08-09 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380929101, '1977-07-06 00:00:00', '2011-11-07 23:17:34', 510, 526, 6316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192013, '1991-05-12 00:00:00', '2011-08-29 12:13:18.197183', 15, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985736, '1973-08-31 00:00:00', '2011-11-07 23:30:01', 380, 527, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358200, '2015-01-10 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425181, '1989-04-08 00:00:00', '2011-08-29 12:13:18.197183', 11.5, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425204, '1989-05-01 00:00:00', '2011-08-29 12:13:18.197183', 12.6999998, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383703471, '2000-09-30 23:59:59', '2012-03-28 17:37:37.065615', 14.4402981, 592, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383660997, '2000-06-30 23:59:59', '2012-03-28 21:07:01.706625', 14.1999998, 556, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027799, '1972-03-06 00:00:00', '2011-10-28 19:25:56', -10.1999998, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554335659, '2015-09-10 09:00:00', '2015-09-10 09:30:03.171393', 9.38000011, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493071, '1983-12-28 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898620, '1976-02-11 00:00:00', '2011-11-07 23:11:09', 116, 528, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874073, '1975-04-29 00:00:00', '2011-11-07 23:04:35', 710, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554253596, '2015-09-09 05:00:00', '2015-09-09 05:30:02.771235', 9.35000038, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975918, '2006-09-21 00:00:00', '2011-08-29 12:13:18.197183', 4.83330011, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523380, '1981-07-05 00:00:00', '2011-10-28 23:23:47', 8.10000038, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783800, '2004-08-28 22:00:00', '2011-08-29 12:13:18.197183', 90.5, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383659872, '2000-05-31 23:59:59', '2012-03-28 17:05:14.6933', 14.1556492, 556, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192001, '1991-04-30 00:00:00', '2011-08-29 12:13:18.197183', 21, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191997, '1991-04-26 00:00:00', '2011-08-29 12:13:18.197183', 14.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383691272, '2000-12-31 23:59:59', '2012-03-28 17:29:43.42427', 6.60405016, 558, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889657, '1975-01-14 00:00:00', '2011-11-07 23:09:20', 25, 528, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081743, '1990-12-22 00:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898589, '1975-06-27 00:00:00', '2011-11-07 23:11:09', 480, 526, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951129, '1969-06-30 00:00:00', '2011-11-07 23:22:45', 1780, 527, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559799916, '2015-09-24 15:00:00', '2015-09-24 15:30:02.895857', 20.9599991, 434, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424191, '1989-10-03 00:00:00', '2011-08-29 12:13:18.197183', 16.6000004, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821049, '1975-06-21 00:00:00', '2011-10-28 23:50:29', 2.4000001, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380929105, '1977-10-19 00:00:00', '2011-11-07 23:17:34', 330, 526, 6316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821073, '1975-07-21 00:00:00', '2011-10-28 23:50:29', 5.30000019, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358193, '2015-01-03 00:00:00', '2015-09-23 00:00:22.705906', 4.4000001, 429, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898626, '1977-01-03 00:00:00', '2011-11-07 23:11:09', 60, 528, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903908, '1976-06-28 00:00:00', '2011-11-07 23:12:13', 490, 527, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424175, '1989-09-17 00:00:00', '2011-08-29 12:13:18.197183', 5.4000001, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783798, '2004-08-28 20:00:00', '2011-08-29 12:13:18.197183', 85.5999985, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383670500, '2000-03-31 23:59:59', '2012-03-28 17:17:12.469479', -1.84800208, 557, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358163, '2015-03-04 00:00:00', '2015-09-23 00:00:22.705906', 1.39999998, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383697903, '2000-06-30 23:59:59', '2012-03-28 17:34:10.670842', 64.2799988, 559, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975937, '2006-10-10 00:00:00', '2011-08-29 12:13:18.197183', 14.5, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487139202, '2013-08-22 07:00:00', '2013-09-04 15:39:44.265985', 11.3999996, 551, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874076, '1975-07-30 00:00:00', '2011-11-07 23:04:35', 420, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192017, '1991-05-16 00:00:00', '2011-08-29 12:13:18.197183', 20, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265216, '1989-09-05 00:00:00', '2011-10-28 21:36:17', 13.3999996, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963572, '1971-05-28 00:00:00', '2011-11-07 23:25:31', 230, 527, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383661306, '2000-06-30 23:59:59', '2012-03-28 17:10:15.86232', 21.6419544, 556, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975943, '2006-10-16 00:00:00', '2011-08-29 12:13:18.197183', 12.3330002, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425179, '1989-04-06 00:00:00', '2011-08-29 12:13:18.197183', 9.60000038, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383677900, '2000-11-30 23:59:59', '2012-03-28 17:21:33.822458', 4.44041491, 557, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970970, '1975-07-30 00:00:00', '2011-11-07 23:27:12', 460, 526, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383701227, '2000-08-31 23:59:59', '2012-03-28 17:36:15.447494', 47.0149078, 559, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380929102, '1977-08-04 00:00:00', '2011-11-07 23:17:34', 570, 526, 6316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689670, '1990-08-09 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821058, '1975-06-30 00:00:00', '2011-10-28 23:50:29', 8.39999962, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (381005536, '1975-08-05 00:00:00', '2011-11-10 19:58:42', 1120, 527, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874102, '1978-06-08 00:00:00', '2011-11-07 23:04:35', 1085, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951117, '1970-05-31 00:00:00', '2011-11-07 23:22:45', 190, 526, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559799915, '2015-09-24 15:00:00', '2015-09-24 15:30:02.895857', 60.4799995, 448, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689696, '1990-09-04 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625964, '1974-08-09 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493103, '1984-01-29 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947891, '1970-09-28 00:00:00', '2011-11-07 23:22:02', 690, 526, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625947, '1974-07-23 00:00:00', '2011-08-29 12:13:18.197183', 2.5, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425205, '1989-05-02 00:00:00', '2011-08-29 12:13:18.197183', 13, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702685, '1959-08-01 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942234, '1970-11-26 00:00:00', '2011-11-07 23:20:33', 1, 528, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380883288, '1975-08-29 00:00:00', '2011-11-07 23:06:30', 960, 526, 5316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915325, '1969-08-28 00:00:00', '2011-11-07 23:14:20', 620, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889650, '1975-08-27 00:00:00', '2011-11-07 23:09:20', 1040, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081749, '1990-12-22 06:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424198, '1989-10-10 00:00:00', '2011-08-29 12:13:18.197183', 7.4000001, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821046, '1975-06-18 00:00:00', '2011-10-28 23:50:29', 1.89999998, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358203, '2015-01-13 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383664268, '2000-09-30 23:59:59', '2012-03-28 17:12:02.654061', 20.7172775, 556, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874108, '1973-11-15 00:00:00', '2011-11-07 23:04:35', 2640, 527, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947885, '1969-11-27 00:00:00', '2011-11-07 23:22:02', 670, 526, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963562, '1972-07-30 00:00:00', '2011-11-07 23:25:31', 400, 526, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383668893, '2000-02-29 23:59:59', '2012-03-28 17:16:15.174526', 2.82052112, 557, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783795, '2004-08-28 17:00:00', '2011-08-29 12:13:18.197183', 62.1100006, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874074, '1975-05-27 00:00:00', '2011-11-07 23:04:35', 1150, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783813, '2004-08-29 11:00:00', '2011-08-29 12:13:18.197183', 68.8300018, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980158, '1977-10-20 00:00:00', '2011-11-07 23:28:58', 490, 526, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947906, '1970-11-29 00:00:00', '2011-11-07 23:22:02', 10, 528, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383686240, '2000-07-31 23:59:59', '2012-03-28 17:26:41.624822', 13.7367783, 558, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487140613, '2013-08-22 09:00:00', '2013-09-04 15:39:54.76078', 101.5, 549, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874119, '1974-01-17 00:00:00', '2011-11-07 23:04:35', 10, 528, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383685315, '2000-06-30 23:59:59', '2012-03-28 17:26:08.231153', 17.0567799, 558, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383680254, '2000-01-31 23:59:59', '2012-03-28 17:22:56.381913', 6.44492865, 558, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425188, '1989-04-15 00:00:00', '2011-08-29 12:13:18.197183', 12.3000002, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963579, '1972-05-29 00:00:00', '2011-11-07 23:25:31', 330, 527, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963586, '1973-08-30 00:00:00', '2011-11-07 23:25:31', 40, 527, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980188, '1977-09-20 00:00:00', '2011-11-07 23:28:58', 290, 527, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874078, '1975-09-24 00:00:00', '2011-11-07 23:04:35', 1040, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898617, '1975-10-31 00:00:00', '2011-11-07 23:11:09', 8, 528, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951113, '1969-07-31 00:00:00', '2011-11-07 23:22:45', 330, 526, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559796865, '2015-09-24 14:00:00', '2015-09-24 14:30:03.973543', 32.2000008, 437, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425198, '1989-04-25 00:00:00', '2011-08-29 12:13:18.197183', 21.2999992, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265207, '1989-08-27 00:00:00', '2011-10-28 21:36:17', 7.30000019, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702670, '1959-07-16 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889651, '1975-09-24 00:00:00', '2011-11-07 23:09:20', 230, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425214, '1989-05-11 00:00:00', '2011-08-29 12:13:18.197183', 11.8000002, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523403, '1981-07-28 00:00:00', '2011-10-28 23:23:47', 7.5999999, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702700, '1959-08-16 00:00:00', '2011-08-29 12:13:18.197183', 2.5, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898598, '1976-10-29 00:00:00', '2011-11-07 23:11:09', 300, 526, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383707327, '2000-12-31 23:59:59', '2012-03-28 17:40:05.068235', 37.1695938, 559, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383684442, '2000-05-31 23:59:59', '2012-03-28 17:25:36.127217', 10.1074181, 558, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358181, '2015-03-22 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358185, '2015-03-26 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874113, '1974-05-17 00:00:00', '2011-11-07 23:04:35', 1070, 527, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383688941, '2000-10-31 23:59:59', '2012-03-28 17:28:19.137184', 9.97316647, 558, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265182, '1989-08-02 00:00:00', '2011-10-28 21:36:17', 13.3000002, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383666139, '2000-11-30 23:59:59', '2012-03-28 17:13:10.59135', 10.9472265, 556, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903903, '1977-11-14 00:00:00', '2011-11-07 23:12:13', 1520, 526, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487137764, '2013-08-22 05:00:00', '2013-09-04 15:39:33.442132', 4, 550, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783804, '2004-08-29 02:00:00', '2011-08-29 12:13:18.197183', 95.3000031, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383682303, '2000-03-31 23:59:59', '2012-03-28 17:24:18.444877', 8.87342167, 558, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915362, '1977-08-22 00:00:00', '2011-11-07 23:14:20', 240, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689680, '1990-08-19 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383685440, '2000-06-30 23:59:59', '2012-03-28 17:26:12.858641', 13.2986364, 558, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915355, '1975-09-29 00:00:00', '2011-11-07 23:14:20', 250, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783790, '2004-08-28 12:00:00', '2011-08-29 12:13:18.197183', 62.4599991, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970958, '1973-06-04 00:00:00', '2011-11-07 23:27:12', 440, 526, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898603, '1975-06-27 00:00:00', '2011-11-07 23:11:09', 480, 527, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425186, '1989-04-13 00:00:00', '2011-08-29 12:13:18.197183', 21.8999996, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192020, '1991-05-19 00:00:00', '2011-08-29 12:13:18.197183', 26.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980162, '1979-06-25 00:00:00', '2011-11-07 23:28:58', 815, 526, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383667098, '2000-12-31 23:59:59', '2012-03-28 17:13:45.805205', -4.35565042, 556, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852548, '2006-02-12 13:00:00', '2011-08-29 12:13:18.197183', 9.19999981, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975950, '2006-10-23 00:00:00', '2011-08-29 12:13:18.197183', 11.6667004, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702666, '1959-07-12 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559787928, '2015-09-24 11:00:00', '2015-09-24 11:30:02.616552', 10.6000004, 446, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821077, '1975-07-25 00:00:00', '2011-10-28 23:50:29', 5, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383691534, '2000-12-31 23:59:59', '2012-03-28 17:29:52.725324', -2.54577231, 558, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265192, '1989-08-12 00:00:00', '2011-10-28 21:36:17', 9, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821072, '1975-07-14 00:00:00', '2011-10-28 23:50:29', 4.69999981, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985716, '1971-07-30 00:00:00', '2011-11-07 23:30:01', 530, 526, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424194, '1989-10-06 00:00:00', '2011-08-29 12:13:18.197183', 16.5, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493074, '1983-12-31 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963555, '1971-07-30 00:00:00', '2011-11-07 23:25:31', 250, 526, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192008, '1991-05-07 00:00:00', '2011-08-29 12:13:18.197183', 15.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383687473, '2000-08-31 23:59:59', '2012-03-28 17:27:25.927989', 17.322176, 558, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383677024, '2000-10-31 23:59:59', '2012-03-28 21:11:06.258409', 4.69999981, 557, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963557, '1971-09-29 00:00:00', '2011-11-07 23:25:31', 330, 526, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852503, '2006-02-10 16:00:00', '2011-08-29 12:13:18.197183', 9.10000038, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783817, '2004-08-29 15:00:00', '2011-08-29 12:13:18.197183', 58.1599998, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425217, '1989-05-14 00:00:00', '2011-08-29 12:13:18.197183', 21.5, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277911, '1957-10-23 00:00:00', '2011-08-29 12:13:18.197183', 5.5999999, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625974, '1974-08-19 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383690963, '2000-12-31 23:59:59', '2012-03-28 17:29:32.147739', 4.65393591, 558, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425202, '1989-04-29 00:00:00', '2011-08-29 12:13:18.197183', 22.3999996, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358187, '2015-03-28 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942222, '1969-05-30 00:00:00', '2011-11-07 23:20:33', 230, 527, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383696526, '2000-05-31 23:59:59', '2012-03-28 17:33:12.801849', 70.8582306, 559, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383672520, '2000-05-31 23:59:59', '2012-03-28 17:18:24.444395', 5.95873594, 557, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689692, '1990-08-31 00:00:00', '2011-10-28 20:38:54', 4, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380922325, '1970-08-29 00:00:00', '2011-11-07 23:15:58', 160, 526, 6116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383685993, '2000-07-31 23:59:59', '2012-03-28 17:26:32.732472', 13.8138361, 558, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277927, '1957-12-09 00:00:00', '2011-08-29 12:13:18.197183', 10, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (57943743, '1980-10-30 00:00:00', '2011-08-29 12:13:18.197183', 6.5, 428, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898610, '1976-09-29 00:00:00', '2011-11-07 23:11:09', 370, 527, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383680582, '2000-01-31 23:59:59', '2012-03-28 17:23:16.477212', -11.0033083, 558, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963556, '1971-08-30 00:00:00', '2011-11-07 23:25:31', 90, 526, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915350, '1974-09-28 00:00:00', '2011-11-07 23:14:20', 260, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947884, '1969-10-27 00:00:00', '2011-11-07 23:22:02', 840, 526, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947881, '1969-07-27 00:00:00', '2011-11-07 23:22:02', 290, 526, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554341504, '2015-09-10 11:00:00', '2015-09-10 11:30:03.430397', 11.1300001, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493086, '1984-01-12 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383660303, '2000-05-31 23:59:59', '2012-03-28 17:05:30.119561', 18.1258469, 556, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081746, '1990-12-22 03:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942231, '1969-12-29 00:00:00', '2011-11-07 23:20:33', 5, 528, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383674919, '2000-08-31 23:59:59', '2012-03-28 17:19:47.971206', 10.5644941, 557, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380996489, '1981-08-04 12:20:00', '2011-11-07 23:32:08', 0, 528, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523386, '1981-07-11 00:00:00', '2011-10-28 23:23:47', 6.0999999, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980187, '1977-08-23 00:00:00', '2011-11-07 23:28:58', 310, 527, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425173, '1989-03-31 00:00:00', '2011-08-29 12:13:18.197183', 0, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425195, '1989-04-22 00:00:00', '2011-08-29 12:13:18.197183', 6.80000019, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383678401, '2000-11-30 23:59:59', '2012-03-28 17:21:51.6777', -3.58164144, 557, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358173, '2015-03-14 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383665132, '2000-10-31 23:59:59', '2012-03-28 17:12:33.731047', 15.0486126, 556, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903901, '1977-09-13 00:00:00', '2011-11-07 23:12:13', 640, 526, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942208, '1969-05-30 00:00:00', '2011-11-07 23:20:33', 250, 526, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383676895, '2000-10-31 23:59:59', '2012-03-28 17:20:58.191074', 7.07963419, 557, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903887, '1975-06-25 00:00:00', '2011-11-07 23:12:13', 320, 526, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383683004, '2000-04-30 23:59:59', '2012-03-28 17:24:43.452144', 8.58349228, 558, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874120, '1974-02-21 00:00:00', '2011-11-07 23:04:35', 0, 528, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625943, '1974-07-19 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027768, '1972-02-04 00:00:00', '2011-10-28 19:25:56', -4.5999999, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425213, '1989-05-10 00:00:00', '2011-08-29 12:13:18.197183', 6.80000019, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383676151, '2000-09-30 23:59:59', '2012-03-28 17:20:31.781873', 2.62304449, 557, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383668751, '2000-01-31 23:59:59', '2012-03-28 17:16:10.192041', -12.1349106, 562, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980186, '1976-08-25 00:00:00', '2011-11-07 23:28:58', 1370, 527, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383657838, '2000-03-31 23:59:59', '2012-03-28 17:04:00.970202', 10.0921049, 556, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383680445, '2000-01-31 23:59:59', '2012-03-28 17:23:11.595519', -5.88505554, 558, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265211, '1989-08-31 00:00:00', '2011-10-28 21:36:17', 9, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963590, '1972-01-01 00:00:00', '2011-11-07 23:25:31', 61, 528, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383681988, '2000-03-31 23:59:59', '2012-03-28 17:24:07.190513', 6.7265563, 558, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559796858, '2015-09-24 14:00:00', '2015-09-24 14:30:03.973543', 970, 439, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689659, '1990-07-29 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383701294, '2000-08-31 23:59:59', '2012-03-28 17:36:17.832389', 35.6125336, 559, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358189, '2015-03-30 00:00:00', '2015-09-23 00:00:22.705906', 3.5999999, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358161, '2015-03-02 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (53728782, '1979-11-06 00:00:00', '2011-08-29 12:13:18.197183', 7.5, 428, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493084, '1984-01-10 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554277038, '2015-09-09 13:00:00', '2015-09-09 13:30:03.377253', 11.04, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903912, '1976-10-26 00:00:00', '2011-11-07 23:12:13', 710, 527, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903900, '1977-08-19 00:00:00', '2011-11-07 23:12:13', 90, 526, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027772, '1972-02-08 00:00:00', '2011-10-28 19:25:56', -2.29999995, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947893, '1969-05-02 00:00:00', '2011-11-07 23:22:02', 790, 527, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963575, '1971-08-30 00:00:00', '2011-11-07 23:25:31', 100, 527, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898585, '1974-06-30 00:00:00', '2011-11-07 23:11:09', 190, 526, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821038, '1975-06-10 00:00:00', '2011-10-28 23:50:29', -0.699999988, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903918, '1974-11-27 00:00:00', '2011-11-07 23:12:13', 27, 528, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625958, '1974-08-03 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383663346, '2000-08-31 23:59:59', '2012-03-28 17:11:29.618577', 25.4487457, 556, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975947, '2006-10-20 00:00:00', '2011-08-29 12:13:18.197183', 15.7220001, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554271082, '2015-09-09 11:00:00', '2015-09-09 11:30:02.609121', 11.3100004, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702697, '1959-08-13 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277925, '1957-12-07 00:00:00', '2011-08-29 12:13:18.197183', 6.69999981, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554359233, '2015-09-10 17:00:00', '2015-09-10 17:30:03.521761', 14.2299995, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945312, '1970-07-29 00:00:00', '2011-11-07 23:21:21', 660, 526, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903923, '1975-11-03 00:00:00', '2011-11-07 23:12:13', 6, 528, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915348, '1974-07-29 00:00:00', '2011-11-07 23:14:20', 450, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963576, '1971-09-29 00:00:00', '2011-11-07 23:25:31', 350, 527, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980166, '1979-10-16 00:00:00', '2011-11-07 23:28:58', 58, 526, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702694, '1959-08-10 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951116, '1969-10-30 00:00:00', '2011-11-07 23:22:45', 310, 526, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942215, '1970-04-28 00:00:00', '2011-11-07 23:20:33', 220, 526, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081741, '1990-12-21 22:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081752, '1990-12-22 20:00:00', '2011-08-29 12:13:18.197183', -29.3999996, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191976, '1991-04-05 00:00:00', '2011-08-29 12:13:18.197183', 14, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493067, '1983-12-24 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424181, '1989-09-23 00:00:00', '2011-08-29 12:13:18.197183', 19.1000004, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (390551871, '2012-09-16 06:00:00', '2012-09-17 00:00:04.208308', 18.1000004, 544, 8516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625970, '1974-08-15 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383677330, '2000-10-31 23:59:59', '2012-03-28 17:21:13.60417', -1.61162853, 557, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980203, '1977-02-07 00:00:00', '2011-11-07 23:28:58', 24, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (57943745, '1980-11-01 00:00:00', '2011-08-29 12:13:18.197183', 13.5, 428, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383670944, '2000-04-30 23:59:59', '2012-03-28 17:17:28.351575', 5.33272839, 557, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383680189, '2000-01-31 23:59:59', '2012-03-28 17:22:54.080536', -10.9969511, 558, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874101, '1978-05-11 00:00:00', '2011-11-07 23:04:35', 882, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380922324, '1970-07-30 00:00:00', '2011-11-07 23:15:58', 190, 526, 6116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380929109, '1977-09-21 00:00:00', '2011-11-07 23:17:34', 570, 527, 6316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (57943747, '1980-11-03 00:00:00', '2011-08-29 12:13:18.197183', 10, 428, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559802835, '2015-09-24 16:00:00', '2015-09-24 16:30:03.045685', 21.3500004, 434, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383659729, '2000-04-30 23:59:59', '2012-03-28 17:05:09.484011', 3.32223058, 561, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889660, '1975-12-15 00:00:00', '2011-11-07 23:09:20', 13, 528, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915351, '1974-10-29 00:00:00', '2011-11-07 23:14:20', 380, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874100, '1977-09-28 00:00:00', '2011-11-07 23:04:35', 1529, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027781, '1972-02-17 00:00:00', '2011-10-28 19:25:56', -6.5, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980208, '1978-02-14 00:00:00', '2011-11-07 23:28:58', 33, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852529, '2006-02-11 18:00:00', '2011-08-29 12:13:18.197183', 4.9000001, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383671576, '2000-04-30 23:59:59', '2012-03-28 17:17:50.858879', -2.18823671, 557, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874094, '1977-03-16 00:00:00', '2011-11-07 23:04:35', 2770, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783774, '2004-08-27 20:00:00', '2011-08-29 12:13:18.197183', 92.0999985, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383658345, '2000-03-31 23:59:59', '2012-03-28 17:04:19.281599', 6.81380415, 556, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554353273, '2015-09-10 15:00:00', '2015-09-10 15:30:03.148264', 14.71, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383652525, '2000-01-31 23:59:59', '2012-03-28 14:35:06.585841', 170.553848, 559, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963554, '1971-06-29 00:00:00', '2011-11-07 23:25:31', 790, 526, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783814, '2004-08-29 12:00:00', '2011-08-29 12:13:18.197183', 65.4300003, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915322, '1969-05-28 00:00:00', '2011-11-07 23:14:20', 280, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493100, '1984-01-26 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424188, '1989-09-30 00:00:00', '2011-08-29 12:13:18.197183', 8.60000038, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493073, '1983-12-30 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383665827, '2000-11-30 23:59:59', '2012-03-28 17:12:58.951208', 9.44556427, 556, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380929108, '1977-08-24 00:00:00', '2011-11-07 23:17:34', 240, 527, 6316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277935, '1957-12-17 00:00:00', '2011-08-29 12:13:18.197183', 5, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915333, '1971-11-01 00:00:00', '2011-11-07 23:14:20', 390, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383658155, '2000-03-31 23:59:59', '2012-03-28 17:04:12.417562', 11.465435, 556, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383666404, '2000-11-30 23:59:59', '2012-03-28 17:13:20.061994', 4.43450451, 556, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383658090, '2000-03-31 23:59:59', '2012-03-28 17:04:09.967631', 3.2619226, 556, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380919677, '1982-08-18 12:10:00', '2011-11-07 23:15:14', 1262, 526, 6016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383661860, '2000-07-31 23:59:59', '2012-03-28 17:10:35.983553', 17.174427, 556, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358198, '2015-01-08 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383660367, '2000-05-31 23:59:59', '2012-03-28 17:05:32.381087', 17.5751648, 556, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358178, '2015-03-19 00:00:00', '2015-09-23 00:00:22.705906', 6.80000019, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975932, '2006-10-05 00:00:00', '2011-08-29 12:13:18.197183', 16.8330002, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915354, '1975-08-27 00:00:00', '2011-11-07 23:14:20', 710, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383675490, '2000-08-31 23:59:59', '2012-03-28 17:20:08.287572', 10.9246931, 557, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915363, '1977-09-19 00:00:00', '2011-11-07 23:14:20', 580, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523391, '1981-07-16 00:00:00', '2011-10-28 23:23:47', 8.19999981, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942232, '1970-01-27 00:00:00', '2011-11-07 23:20:33', 23, 528, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945314, '1970-09-28 00:00:00', '2011-11-07 23:21:21', 1000, 526, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383703110, '2000-09-30 23:59:59', '2012-03-28 17:37:23.91673', 146.804825, 592, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487137024, '2013-08-22 04:00:00', '2013-09-04 15:39:28.123839', 337.5, 553, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191998, '1991-04-27 00:00:00', '2011-08-29 12:13:18.197183', 15, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027766, '1972-02-02 00:00:00', '2011-10-28 19:25:56', -10.1000004, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383695166, '2000-04-30 23:59:59', '2012-03-28 17:32:20.268904', 35.474884, 559, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889638, '1974-08-15 00:00:00', '2011-11-07 23:09:20', 70, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559799919, '2015-09-24 15:00:00', '2015-09-24 15:30:02.895857', 32.5900002, 437, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554338632, '2015-09-10 10:00:00', '2015-09-10 10:30:02.635153', 9.43999958, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383660439, '2000-05-31 23:59:59', '2012-03-28 17:05:34.962169', 18.9954853, 556, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523385, '1981-07-10 00:00:00', '2011-10-28 23:23:47', 4.5999999, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821050, '1975-06-22 00:00:00', '2011-10-28 23:50:29', -1.20000005, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975955, '2006-10-28 00:00:00', '2011-08-29 12:13:18.197183', 12.8332996, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783816, '2004-08-29 14:00:00', '2011-08-29 12:13:18.197183', 58.7599983, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383661990, '2000-07-31 23:59:59', '2012-03-28 21:07:54.597564', 16.1000004, 556, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380929111, '1977-12-06 00:00:00', '2011-11-07 23:17:34', 22, 528, 6316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383681210, '2000-02-29 23:59:59', '2012-03-28 17:23:39.218674', -7.67143822, 558, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027773, '1972-02-09 00:00:00', '2011-10-28 19:25:56', -3.4000001, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277930, '1957-12-12 00:00:00', '2011-08-29 12:13:18.197183', 7.19999981, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358160, '2015-03-01 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277890, '1957-10-02 00:00:00', '2011-08-29 12:13:18.197183', 15.6000004, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424217, '1990-06-28 00:00:00', '2011-08-29 12:13:18.197183', 11.8999996, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852525, '2006-02-11 14:00:00', '2011-08-29 12:13:18.197183', 7.69999981, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874087, '1976-07-07 00:00:00', '2011-11-07 23:04:35', 2350, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874117, '1978-06-08 00:00:00', '2011-11-07 23:04:35', 1050, 527, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383702510, '2000-09-30 23:59:59', '2012-03-28 21:10:27.575888', 244, 559, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874096, '1977-05-11 00:00:00', '2011-11-07 23:04:35', 390, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970977, '1974-09-28 00:00:00', '2011-11-07 23:27:12', 480, 527, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383697581, '2000-06-30 23:59:59', '2012-03-28 17:33:58.922169', 43.7824707, 559, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383660728, '2000-05-31 23:59:59', '2012-03-28 17:05:45.314873', 4.70902109, 561, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963558, '1971-11-01 00:00:00', '2011-11-07 23:25:31', 160, 526, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689685, '1990-08-24 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (57943752, '1980-11-08 00:00:00', '2011-08-29 12:13:18.197183', 8, 428, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559787930, '2015-09-24 11:00:00', '2015-09-24 11:30:02.616552', 31.5599995, 448, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383658858, '2000-04-30 23:59:59', '2012-03-28 17:04:37.989884', 11.8342571, 556, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903893, '1976-07-27 00:00:00', '2011-11-07 23:12:13', 1040, 526, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898629, '1977-03-28 00:00:00', '2011-11-07 23:11:09', 103, 528, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383685004, '2000-06-30 23:59:59', '2012-03-28 17:25:57.176834', 12.2961044, 558, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783807, '2004-08-29 05:00:00', '2011-08-29 12:13:18.197183', 97.8000031, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383701495, '2000-08-31 23:59:59', '2012-03-28 17:36:25.098488', 119.54895, 592, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383693289, '2000-03-31 23:59:59', '2012-03-28 17:31:11.133058', 44.3033943, 559, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381357, '1974-05-21 00:00:00', '2011-10-28 20:03:47', 4.30000019, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821083, '1975-07-31 00:00:00', '2011-10-28 23:50:29', 5.80000019, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191980, '1991-04-09 00:00:00', '2011-08-29 12:13:18.197183', 8, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277894, '1957-10-06 00:00:00', '2011-08-29 12:13:18.197183', 11.1000004, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383682625, '2000-03-31 23:59:59', '2012-03-28 17:24:29.90395', -3.62469983, 558, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383681605, '2000-02-29 23:59:59', '2012-03-28 17:23:53.350512', -8.2967453, 558, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889656, '1976-05-06 00:00:00', '2011-11-07 23:09:20', 830, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383663828, '2000-09-30 23:59:59', '2012-03-28 17:11:46.939075', 16.972784, 556, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852520, '2006-02-11 09:00:00', '2011-08-29 12:13:18.197183', 5.19999981, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192000, '1991-04-29 00:00:00', '2011-08-29 12:13:18.197183', 20.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689657, '1990-07-27 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081737, '1990-12-21 18:00:00', '2011-08-29 12:13:18.197183', -29.3999996, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945311, '1970-06-28 00:00:00', '2011-11-07 23:21:21', 750, 526, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381370, '1974-06-03 00:00:00', '2011-10-28 20:03:47', 5.69999981, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027775, '1972-02-11 00:00:00', '2011-10-28 19:25:56', -8.30000019, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383703812, '2000-10-31 23:59:59', '2012-03-28 17:37:49.720171', 157.188705, 559, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947907, '1971-01-04 00:00:00', '2011-11-07 23:22:02', 41, 528, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027784, '1972-02-20 00:00:00', '2011-10-28 19:25:56', -7.4000001, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702676, '1959-07-22 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852514, '2006-02-11 03:00:00', '2011-08-29 12:13:18.197183', 4.9000001, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985718, '1971-10-30 00:00:00', '2011-11-07 23:30:01', 760, 526, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975925, '2006-09-28 00:00:00', '2011-08-29 12:13:18.197183', 22.7222004, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425196, '1989-04-23 00:00:00', '2011-08-29 12:13:18.197183', 12.8999996, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383686974, '2000-08-31 23:59:59', '2012-03-28 17:27:07.943848', 14.2189226, 558, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689697, '1990-09-05 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487137023, '2013-08-22 04:00:00', '2013-09-04 15:39:28.123839', 12.1999998, 551, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985719, '1972-07-30 00:00:00', '2011-11-07 23:30:01', 1010, 526, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689663, '1990-08-02 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (49967255, '1972-06-22 00:00:00', '2011-08-29 12:13:18.197183', 21.7000008, 428, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265186, '1989-08-06 00:00:00', '2011-10-28 21:36:17', 11.6999998, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487141326, '2013-08-22 10:00:00', '2013-09-04 15:39:59.910492', 16.3999996, 542, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487139200, '2013-08-22 07:00:00', '2013-09-04 15:39:44.265985', 1, 550, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383691595, '2000-12-31 23:59:59', '2012-03-28 17:29:54.970569', -9.67860508, 558, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975917, '2006-09-20 00:00:00', '2011-08-29 12:13:18.197183', 11.4443998, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027782, '1972-02-18 00:00:00', '2011-10-28 19:25:56', -4.5999999, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903906, '1975-07-28 00:00:00', '2011-11-07 23:12:13', 500, 527, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975944, '2006-10-17 00:00:00', '2011-08-29 12:13:18.197183', 9.55560017, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985723, '1973-08-31 00:00:00', '2011-11-07 23:30:01', 410, 526, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975929, '2006-10-02 00:00:00', '2011-08-29 12:13:18.197183', 15.8332996, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702681, '1959-07-28 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523374, '1981-06-29 00:00:00', '2011-10-28 23:23:47', 5.5, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970983, '1975-10-01 00:00:00', '2011-11-07 23:27:12', 150, 527, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424206, '1989-10-18 00:00:00', '2011-08-29 12:13:18.197183', 8.69999981, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383673938, '2000-07-31 23:59:59', '2012-03-28 17:19:14.267118', 10.4532442, 557, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383688263, '2000-09-30 23:59:59', '2012-03-28 17:27:54.416779', 16.8671455, 558, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554368008, '2015-09-10 20:00:00', '2015-09-10 20:30:03.559781', 13.3299999, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383664334, '2000-09-30 23:59:59', '2012-03-28 17:12:04.993287', 19.8605499, 556, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915341, '1973-05-30 00:00:00', '2011-11-07 23:14:20', 390, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027769, '1972-02-05 00:00:00', '2011-10-28 19:25:56', -4.5999999, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945326, '1971-01-30 00:00:00', '2011-11-07 23:21:21', 117, 528, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975920, '2006-09-23 00:00:00', '2011-08-29 12:13:18.197183', 4.83330011, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027774, '1972-02-10 00:00:00', '2011-10-28 19:25:56', -6.0999999, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559799918, '2015-09-24 15:00:00', '2015-09-24 15:30:02.895857', 0.100000001, 442, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383669145, '2000-02-29 23:59:59', '2012-03-28 17:16:24.056594', -12.7265434, 557, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625956, '1974-08-01 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383668184, '2000-01-31 23:59:59', '2012-03-28 17:15:50.792676', 4.27342749, 557, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383688389, '2000-09-30 23:59:59', '2012-03-28 17:27:58.873394', 11.7935143, 558, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265204, '1989-08-24 00:00:00', '2011-10-28 21:36:17', 14.1000004, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081731, '1990-12-21 12:00:00', '2011-08-29 12:13:18.197183', -30.1000004, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783811, '2004-08-29 09:00:00', '2011-08-29 12:13:18.197183', 78.5, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963584, '1973-06-29 00:00:00', '2011-11-07 23:25:31', 250, 527, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975914, '2006-09-17 00:00:00', '2011-08-29 12:13:18.197183', 18.5555992, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889644, '1975-03-04 00:00:00', '2011-11-07 23:09:20', 1810, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554344419, '2015-09-10 12:00:00', '2015-09-10 12:30:03.066476', 13.9499998, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383672581, '2000-05-31 23:59:59', '2012-03-28 17:18:26.582586', 1.77456915, 557, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985741, '1975-10-01 00:00:00', '2011-11-07 23:30:01', 140, 527, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383663957, '2000-09-30 23:59:59', '2012-03-28 21:09:47.865248', 14.8999996, 556, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383682491, '2000-03-31 23:59:59', '2012-03-28 17:24:25.136255', 1.15974295, 558, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970981, '1975-07-30 00:00:00', '2011-11-07 23:27:12', 460, 527, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689700, '1990-09-08 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081757, '1990-12-23 01:00:00', '2011-08-29 12:13:18.197183', -29.3999996, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947908, '1971-01-30 00:00:00', '2011-11-07 23:22:02', 63, 528, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425180, '1989-04-07 00:00:00', '2011-08-29 12:13:18.197183', 11.8999996, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383691209, '2000-12-31 23:59:59', '2012-03-28 17:29:41.196793', -8.23574352, 558, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554326911, '2015-09-10 06:00:00', '2015-09-10 06:30:02.506201', 8.64000034, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702699, '1959-08-15 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265187, '1989-08-07 00:00:00', '2011-10-28 21:36:17', 12.8999996, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980226, '1980-08-19 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383689190, '2000-10-31 23:59:59', '2012-03-28 17:28:28.082301', 3.39140773, 558, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383670565, '2000-03-31 23:59:59', '2012-03-28 17:17:14.767688', -9.29081249, 557, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358170, '2015-03-11 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (57943744, '1980-10-31 00:00:00', '2011-08-29 12:13:18.197183', 2, 428, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898597, '1976-09-29 00:00:00', '2011-11-07 23:11:09', 370, 526, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383702375, '2000-09-30 23:59:59', '2012-03-28 17:36:57.433205', 51.7590065, 559, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903928, '1976-03-29 00:00:00', '2011-11-07 23:12:13', 147, 528, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383678536, '2000-11-30 23:59:59', '2012-03-28 17:21:56.411004', -8.58425236, 557, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874116, '1978-05-11 00:00:00', '2011-11-07 23:04:35', 808, 527, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963585, '1973-07-30 00:00:00', '2011-11-07 23:25:31', 210, 527, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383699425, '2000-07-31 23:59:59', '2012-03-28 17:35:09.370204', 47.1351738, 559, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383668514, '2000-01-31 23:59:59', '2012-03-28 17:16:02.054358', -16.2184925, 557, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915324, '1969-07-28 00:00:00', '2011-11-07 23:14:20', 120, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915364, '1977-10-17 00:00:00', '2011-11-07 23:14:20', 520, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383657695, '2000-02-29 23:59:59', '2012-03-28 17:03:55.626804', -4.61848307, 561, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027796, '1972-03-03 00:00:00', '2011-10-28 19:25:56', -8.80000019, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523382, '1981-07-07 00:00:00', '2011-10-28 23:23:47', 3.79999995, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852544, '2006-02-12 09:00:00', '2011-08-29 12:13:18.197183', 6.5, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081736, '1990-12-21 17:00:00', '2011-08-29 12:13:18.197183', -29.3999996, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383679939, '2000-01-31 23:59:59', '2012-03-28 17:22:45.236568', 4.73587036, 558, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975913, '2006-09-16 00:00:00', '2011-08-29 12:13:18.197183', 15.2777996, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852538, '2006-02-12 03:00:00', '2011-08-29 12:13:18.197183', 4.5999999, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383679794, '2000-12-31 23:59:59', '2012-03-28 17:22:40.01475', -12.5547533, 562, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424218, '1990-06-29 00:00:00', '2011-08-29 12:13:18.197183', 11.5, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951126, '1966-08-30 00:00:00', '2011-11-14 15:45:05.745204', 310, 526, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425212, '1989-05-09 00:00:00', '2011-08-29 12:13:18.197183', 13.1999998, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265202, '1989-08-22 00:00:00', '2011-10-28 21:36:17', 14, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975939, '2006-10-12 00:00:00', '2011-08-29 12:13:18.197183', 17.5555992, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985729, '1975-10-01 00:00:00', '2011-11-07 23:30:01', 140, 526, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689688, '1990-08-27 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383703041, '2000-09-30 23:59:59', '2012-03-28 17:37:21.416725', 56.0158768, 559, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889636, '1974-06-18 00:00:00', '2011-11-07 23:09:20', 490, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383665071, '2000-10-31 23:59:59', '2012-03-28 17:12:31.550669', 7.84305573, 556, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383689070, '2000-10-31 23:59:59', '2012-03-28 21:10:53.555044', 7.9000001, 558, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625953, '1974-07-29 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383707138, '2000-12-31 23:59:59', '2012-03-28 17:39:57.965178', 66.1857681, 559, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783808, '2004-08-29 06:00:00', '2011-08-29 12:13:18.197183', 97.6999969, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980221, '1979-10-16 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380922322, '1970-04-28 00:00:00', '2011-11-07 23:15:58', 90, 526, 6116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265196, '1989-08-16 00:00:00', '2011-10-28 21:36:17', 11.8999996, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783776, '2004-08-27 22:00:00', '2011-08-29 12:13:18.197183', 96.0999985, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980169, '1980-07-22 00:00:00', '2011-11-07 23:28:58', 755, 526, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383683502, '2000-04-30 23:59:59', '2012-03-28 17:25:01.308688', 5.88726997, 558, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380929110, '1977-10-19 00:00:00', '2011-11-07 23:17:34', 310, 527, 6316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915385, '1971-06-01 00:00:00', '2011-11-07 23:14:20', 180, 527, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383670058, '2000-03-31 23:59:59', '2012-03-28 21:04:45.170453', 0.300000012, 557, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424197, '1989-10-09 00:00:00', '2011-08-29 12:13:18.197183', 13.5, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783786, '2004-08-28 08:00:00', '2011-08-29 12:13:18.197183', 87.4000015, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702659, '1959-07-05 00:00:00', '2011-08-29 12:13:18.197183', 16.7999992, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383692366, '2000-02-29 23:59:59', '2012-03-28 17:30:23.642342', 33.7782745, 559, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380929112, '1978-01-11 00:00:00', '2011-11-07 23:17:34', 51, 528, 6316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027777, '1972-02-13 00:00:00', '2011-10-28 19:25:56', -7.30000019, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383655784, '2000-01-31 23:59:59', '2012-03-28 17:02:21.12502', 7.25193548, 556, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383682238, '2000-03-31 23:59:59', '2012-03-28 17:24:16.078284', -2.78948402, 558, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554350337, '2015-09-10 14:00:00', '2015-09-10 14:30:03.702408', 13.3800001, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265189, '1989-08-09 00:00:00', '2011-10-28 21:36:17', 19.8999996, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383670367, '2000-03-31 23:59:59', '2012-03-28 17:17:07.779067', -5.63708258, 557, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625975, '1974-08-20 00:00:00', '2011-08-29 12:13:18.197183', 0.300000012, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980218, '1979-07-24 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980209, '1978-03-14 00:00:00', '2011-11-07 23:28:58', 2, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493098, '1984-01-24 00:00:00', '2011-08-29 12:13:18.197183', 2.5999999, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383702637, '2000-09-30 23:59:59', '2012-03-28 17:37:06.908331', 47.1025581, 559, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970968, '1975-05-29 00:00:00', '2011-11-07 23:27:12', 530, 526, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874118, '1978-07-31 00:00:00', '2011-11-07 23:04:35', 660, 527, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383664951, '2000-10-31 23:59:59', '2012-03-28 21:10:40.835669', 11.1000004, 556, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383656292, '2000-01-31 23:59:59', '2012-03-28 17:02:52.061715', -1.81815696, 556, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689693, '1990-09-01 00:00:00', '2011-10-28 20:38:54', 6, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980159, '1978-07-05 00:00:00', '2011-11-07 23:28:58', 350, 526, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821081, '1975-07-29 00:00:00', '2011-10-28 23:50:29', 5, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383671513, '2000-04-30 23:59:59', '2012-03-28 17:17:48.636068', 1.64441311, 557, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942230, '1970-10-29 00:00:00', '2011-11-07 23:20:33', 220, 527, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559790819, '2015-09-24 12:00:00', '2015-09-24 12:30:03.478752', 9.25, 446, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985734, '1971-08-30 00:00:00', '2011-11-07 23:30:01', 410, 527, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889641, '1974-11-15 00:00:00', '2011-11-07 23:09:20', 1310, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383673196, '2000-06-30 23:59:59', '2012-03-28 17:18:48.055167', 4.67794132, 557, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975936, '2006-10-09 00:00:00', '2011-08-29 12:13:18.197183', 14.2222004, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383660120, '2000-05-31 23:59:59', '2012-03-28 17:05:23.634519', 14.0603495, 556, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889659, '1975-12-12 00:00:00', '2011-11-07 23:09:20', 13, 528, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383701092, '2000-08-31 23:59:59', '2012-03-28 17:36:10.641702', 47.7846146, 559, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383662109, '2000-07-31 23:59:59', '2012-03-28 17:10:44.968819', 20.5672951, 556, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265194, '1989-08-14 00:00:00', '2011-10-28 21:36:17', 16.5, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192004, '1991-05-03 00:00:00', '2011-08-29 12:13:18.197183', 22.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277914, '1957-10-26 00:00:00', '2011-08-29 12:13:18.197183', 13.8999996, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554385753, '2015-09-11 02:00:00', '2015-09-11 02:30:02.608732', 12.0200005, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689672, '1990-08-11 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425192, '1989-04-19 00:00:00', '2011-08-29 12:13:18.197183', 11.3999996, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898587, '1974-08-31 00:00:00', '2011-11-07 23:11:09', 30, 526, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487138486, '2013-08-22 06:00:00', '2013-09-04 15:39:39.002254', 11.1999998, 551, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265180, '1989-07-31 00:00:00', '2011-10-28 21:36:17', 14.3999996, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821067, '1975-07-09 00:00:00', '2011-10-28 23:50:29', 8.89999962, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487139912, '2013-08-22 08:00:00', '2013-09-04 15:39:49.53403', 67, 552, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980220, '1979-09-18 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523381, '1981-07-06 00:00:00', '2011-10-28 23:23:47', 4.80000019, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898600, '1974-07-31 00:00:00', '2011-11-07 23:11:09', 410, 527, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383679356, '2000-12-31 23:59:59', '2012-03-28 17:22:24.954126', -10.9552879, 557, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383691090, '2000-12-31 23:59:59', '2012-03-28 21:12:38.778045', 2.20000005, 558, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383675550, '2000-08-31 23:59:59', '2012-03-28 17:20:10.401211', 7.00317907, 557, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487137770, '2013-08-22 05:00:00', '2013-09-04 15:39:33.442132', -0.0399999991, 555, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947880, '1969-06-27 00:00:00', '2011-11-07 23:22:02', 620, 526, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424210, '1989-10-22 00:00:00', '2011-08-29 12:13:18.197183', 0, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889647, '1975-05-27 00:00:00', '2011-11-07 23:09:20', 570, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081732, '1990-12-21 13:00:00', '2011-08-29 12:13:18.197183', -29.8999996, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383693411, '2000-03-31 23:59:59', '2012-03-28 17:31:15.619019', 118.056824, 559, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027792, '1972-02-28 00:00:00', '2011-10-28 19:25:56', -4.19999981, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951128, '1969-05-11 00:00:00', '2011-11-07 23:22:45', 610, 527, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702675, '1959-07-21 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970982, '1975-09-02 00:00:00', '2011-11-07 23:27:12', 1570, 527, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975924, '2006-09-27 00:00:00', '2011-08-29 12:13:18.197183', 22.7777996, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487137769, '2013-08-22 05:00:00', '2013-09-04 15:39:33.442132', 19.2000008, 542, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915361, '1977-07-25 00:00:00', '2011-11-07 23:14:20', 440, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487139203, '2013-08-22 07:00:00', '2013-09-04 15:39:44.265985', 247.5, 553, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383704384, '2000-10-31 23:59:59', '2012-03-28 17:38:19.035213', 41.3990593, 559, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027788, '1972-02-24 00:00:00', '2011-10-28 19:25:56', -8.30000019, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554356265, '2015-09-10 16:00:00', '2015-09-10 16:30:03.595924', 13.6099997, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191982, '1991-04-11 00:00:00', '2011-08-29 12:13:18.197183', 17, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783809, '2004-08-29 07:00:00', '2011-08-29 12:13:18.197183', 94.8000031, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383669926, '2000-03-31 23:59:59', '2012-03-28 17:16:52.052776', 3.36100745, 557, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383656364, '2000-01-31 23:59:59', '2012-03-28 17:02:56.435136', -0.904096663, 556, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821069, '1975-07-11 00:00:00', '2011-10-28 23:50:29', 8.89999962, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947896, '1970-05-29 00:00:00', '2011-11-07 23:22:02', 260, 527, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903895, '1976-09-28 00:00:00', '2011-11-07 23:12:13', 570, 526, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915357, '1976-05-19 00:00:00', '2011-11-07 23:14:20', 390, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383678151, '2000-11-30 23:59:59', '2012-03-28 17:21:42.818533', -6.22190046, 557, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702687, '1959-08-03 00:00:00', '2011-08-29 12:13:18.197183', 11.3999996, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277901, '1957-10-13 00:00:00', '2011-08-29 12:13:18.197183', 16.7000008, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277902, '1957-10-14 00:00:00', '2011-08-29 12:13:18.197183', 14.5, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493104, '1984-01-30 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559787931, '2015-09-24 11:00:00', '2015-09-24 11:30:02.616552', 13.5100002, 434, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265213, '1989-09-02 00:00:00', '2011-10-28 21:36:17', 9.19999981, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523375, '1981-06-30 00:00:00', '2011-10-28 23:23:47', 4, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915340, '1972-10-29 00:00:00', '2011-11-07 23:14:20', 330, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265220, '1989-09-09 00:00:00', '2011-10-28 21:36:17', 5, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625951, '1974-07-27 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783802, '2004-08-29 00:00:00', '2011-08-29 12:13:18.197183', 94.8000031, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898623, '1976-05-07 00:00:00', '2011-11-07 23:11:09', 29, 528, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487139909, '2013-08-22 08:00:00', '2013-09-04 15:39:49.53403', 101.5, 549, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383657058, '2000-02-29 23:59:59', '2012-03-28 17:03:32.489361', -2.61633277, 556, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915342, '1973-06-29 00:00:00', '2011-11-07 23:14:20', 700, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702658, '1959-07-04 00:00:00', '2011-08-29 12:13:18.197183', 10.8999996, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424208, '1989-10-20 00:00:00', '2011-08-29 12:13:18.197183', 3.5, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191992, '1991-04-21 00:00:00', '2011-08-29 12:13:18.197183', 27, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383690254, '2000-11-30 23:59:59', '2012-03-28 17:29:06.505795', 9.07082844, 558, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277903, '1957-10-15 00:00:00', '2011-08-29 12:13:18.197183', 12.1999998, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625966, '1974-08-11 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980211, '1978-05-09 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383701029, '2000-08-31 23:59:59', '2012-03-28 17:36:08.410671', 47.7272377, 559, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191974, '1991-04-03 00:00:00', '2011-08-29 12:13:18.197183', 9, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980154, '1976-08-25 00:00:00', '2011-11-07 23:28:58', 1460, 526, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487139908, '2013-08-22 08:00:00', '2013-09-04 15:39:49.53403', 2, 550, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383673258, '2000-06-30 23:59:59', '2012-03-28 17:18:50.148505', 14.229558, 557, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380919683, '1982-09-22 09:00:00', '2011-11-07 23:15:14', 612, 527, 6016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980206, '1977-12-20 00:00:00', '2011-11-07 23:28:58', 26, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493107, '1983-12-02 00:00:00', '2011-08-29 12:13:18.197183', 0, 430, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874103, '1978-07-31 00:00:00', '2011-11-07 23:04:35', 700, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265205, '1989-08-25 00:00:00', '2011-10-28 21:36:17', 8.80000019, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383652083, '2000-01-31 23:59:59', '2012-03-28 14:34:38.685226', 139.327164, 559, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358204, '2015-01-14 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383688455, '2000-09-30 23:59:59', '2012-03-28 17:28:01.214639', 12.4668427, 558, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358192, '2015-01-02 00:00:00', '2015-09-23 00:00:22.705906', 9.39999962, 429, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970974, '1973-08-30 00:00:00', '2011-11-07 23:27:12', 320, 527, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898596, '1976-09-03 00:00:00', '2011-11-07 23:11:09', 740, 526, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915331, '1971-09-01 00:00:00', '2011-11-07 23:14:20', 560, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874086, '1976-06-03 00:00:00', '2011-11-07 23:04:35', 1630, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985742, '1977-10-20 00:00:00', '2011-11-07 23:30:01', 290, 527, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493075, '1984-01-01 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027770, '1972-02-06 00:00:00', '2011-10-28 19:25:56', -3.29999995, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523392, '1981-07-17 00:00:00', '2011-10-28 23:23:47', 12.3999996, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383692434, '2000-02-29 23:59:59', '2012-03-28 17:30:26.013843', 138.955994, 559, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783779, '2004-08-28 01:00:00', '2011-08-29 12:13:18.197183', 96.1999969, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889658, '1975-03-04 00:00:00', '2011-11-07 23:09:20', 0, 528, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425199, '1989-04-26 00:00:00', '2011-08-29 12:13:18.197183', 9.89999962, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265190, '1989-08-10 00:00:00', '2011-10-28 21:36:17', 11.3999996, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424211, '1989-10-23 00:00:00', '2011-08-29 12:13:18.197183', 7.5999999, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383704450, '2000-10-31 23:59:59', '2012-03-28 17:38:21.497226', 48.9170341, 559, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383689944, '2000-11-30 23:59:59', '2012-03-28 17:28:55.273271', 6.94298983, 558, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383685505, '2000-06-30 23:59:59', '2012-03-28 17:26:15.130031', 14.1393528, 558, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980160, '1978-10-24 00:00:00', '2011-11-07 23:28:58', 802, 526, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852531, '2006-02-11 20:00:00', '2011-08-29 12:13:18.197183', 5.5, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889652, '1975-10-22 00:00:00', '2011-11-07 23:09:20', 920, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702686, '1959-08-02 00:00:00', '2011-08-29 12:13:18.197183', 1.5, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852535, '2006-02-12 00:00:00', '2011-08-29 12:13:18.197183', 5, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192007, '1991-05-06 00:00:00', '2011-08-29 12:13:18.197183', 15, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702690, '1959-08-06 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424216, '1990-06-27 00:00:00', '2011-08-29 12:13:18.197183', 13.1999998, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821078, '1975-07-26 00:00:00', '2011-10-28 23:50:29', 5.30000019, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383687603, '2000-08-31 23:59:59', '2012-03-28 17:27:30.559006', 13.8650885, 558, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383698302, '2000-06-30 23:59:59', '2012-03-28 17:34:25.656921', 125.92894, 592, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192002, '1991-05-01 00:00:00', '2011-08-29 12:13:18.197183', 21, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381358, '1974-05-22 00:00:00', '2011-10-28 20:03:47', 9, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554294596, '2015-09-09 19:00:00', '2015-09-09 19:30:02.830391', 10.8599997, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383656429, '2000-01-31 23:59:59', '2012-03-28 17:03:00.472964', -5.78812408, 556, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554365041, '2015-09-10 19:00:00', '2015-09-10 19:30:03.258177', 14.2799997, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903890, '1975-10-07 00:00:00', '2011-11-07 23:12:13', 910, 526, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852515, '2006-02-11 04:00:00', '2011-08-29 12:13:18.197183', 5.0999999, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277938, '1957-12-20 00:00:00', '2011-08-29 12:13:18.197183', 2.20000005, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424182, '1989-09-24 00:00:00', '2011-08-29 12:13:18.197183', 19.6000004, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358177, '2015-03-18 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523409, '1981-08-03 00:00:00', '2011-10-28 23:23:47', 9.89999962, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487139911, '2013-08-22 08:00:00', '2013-09-04 15:39:49.53403', 157.5, 553, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027803, '1972-03-10 00:00:00', '2011-10-28 19:25:56', -0.400000006, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947897, '1970-06-28 00:00:00', '2011-11-07 23:22:02', 610, 527, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970961, '1973-08-30 00:00:00', '2011-11-07 23:27:12', 320, 526, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985733, '1971-07-30 00:00:00', '2011-11-07 23:30:01', 520, 527, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970963, '1974-06-29 00:00:00', '2011-11-07 23:27:12', 660, 526, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191995, '1991-04-24 00:00:00', '2011-08-29 12:13:18.197183', 12, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852527, '2006-02-11 16:00:00', '2011-08-29 12:13:18.197183', 8, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947909, '1971-02-26 00:00:00', '2011-11-07 23:22:02', 56, 528, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383673521, '2000-06-30 23:59:59', '2012-03-28 17:18:59.10662', 9.51373577, 557, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903922, '1975-03-26 00:00:00', '2011-11-07 23:12:13', 165, 528, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383676341, '2000-09-30 23:59:59', '2012-03-28 17:20:38.452205', 2.86975098, 557, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975919, '2006-09-22 00:00:00', '2011-08-29 12:13:18.197183', 4.83330011, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383702836, '2000-09-30 23:59:59', '2012-03-28 17:37:14.033599', 37.8030434, 559, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383667161, '2000-12-31 23:59:59', '2012-03-28 17:13:48.068841', 8.59769821, 556, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783801, '2004-08-28 23:00:00', '2011-08-29 12:13:18.197183', 91.4000015, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559787932, '2015-09-24 11:00:00', '2015-09-24 11:30:02.616552', 8, 438, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523370, '1981-06-25 00:00:00', '2011-10-28 23:23:47', 5.0999999, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487138488, '2013-08-22 06:00:00', '2013-09-04 15:39:39.002254', 61, 552, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383678338, '2000-11-30 23:59:59', '2012-03-28 17:21:49.386508', -6.35228491, 557, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383652846, '2000-01-31 23:59:59', '2012-03-28 14:35:28.45312', 30.8200436, 559, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383676479, '2000-09-30 23:59:59', '2012-03-28 17:20:43.367579', 6.86436939, 557, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381367, '1974-05-31 00:00:00', '2011-10-28 20:03:47', 3.4000001, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191979, '1991-04-08 00:00:00', '2011-08-29 12:13:18.197183', 13, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424176, '1989-09-18 00:00:00', '2011-08-29 12:13:18.197183', 11.8999996, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903920, '1975-01-29 00:00:00', '2011-11-07 23:12:13', 113, 528, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380996494, '1983-04-19 10:08:00', '2011-11-07 23:32:08', 12, 528, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702680, '1959-07-26 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898590, '1975-07-31 00:00:00', '2011-11-07 23:11:09', 460, 526, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945320, '1969-12-31 00:00:00', '2011-11-07 23:21:21', 38, 528, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277891, '1957-10-03 00:00:00', '2011-08-29 12:13:18.197183', 13.3000002, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277932, '1957-12-14 00:00:00', '2011-08-29 12:13:18.197183', 3.29999995, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192018, '1991-05-17 00:00:00', '2011-08-29 12:13:18.197183', 24, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915343, '1973-08-01 00:00:00', '2011-11-07 23:14:20', 180, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358176, '2015-03-17 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383680959, '2000-02-29 23:59:59', '2012-03-28 17:23:30.152002', 5.74540091, 558, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027791, '1972-02-27 00:00:00', '2011-10-28 19:25:56', -5.80000019, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493065, '1983-12-22 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425197, '1989-04-24 00:00:00', '2011-08-29 12:13:18.197183', 19.2000008, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975951, '2006-10-24 00:00:00', '2011-08-29 12:13:18.197183', 10.6111002, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889637, '1974-07-18 00:00:00', '2011-11-07 23:09:20', 800, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381369, '1974-06-02 00:00:00', '2011-10-28 20:03:47', 7.4000001, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383705855, '2000-11-30 23:59:59', '2012-03-28 17:39:11.812473', 85.1927032, 559, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383696076, '2000-05-31 23:59:59', '2012-03-28 17:32:55.65541', 61.3123245, 559, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383657124, '2000-02-29 23:59:59', '2012-03-28 17:03:34.889976', 9.90163994, 556, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487140616, '2013-08-22 09:00:00', '2013-09-04 15:39:54.76078', 17.7000008, 542, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898612, '1974-12-31 00:00:00', '2011-11-07 23:11:09', 56, 528, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027761, '1972-01-28 00:00:00', '2011-10-28 19:25:56', -14.1999998, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493062, '1983-12-19 00:00:00', '2011-08-29 12:13:18.197183', 1.39999998, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898618, '1975-12-09 00:00:00', '2011-11-07 23:11:09', 83, 528, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380922323, '1970-05-30 00:00:00', '2011-11-07 23:15:58', 150, 526, 6116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383705224, '2000-11-30 23:59:59', '2012-03-28 17:38:50.105179', 147.210754, 559, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265200, '1989-08-20 00:00:00', '2011-10-28 21:36:17', 10.3999996, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383699489, '2000-07-31 23:59:59', '2012-03-28 17:35:11.610269', 44.3153839, 559, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852511, '2006-02-11 00:00:00', '2011-08-29 12:13:18.197183', 5.19999981, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027787, '1972-02-23 00:00:00', '2011-10-28 19:25:56', -7.5, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383693857, '2000-03-31 23:59:59', '2012-03-28 17:31:31.521039', 38.5834084, 559, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963561, '1972-06-28 00:00:00', '2011-11-07 23:25:31', 530, 526, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947894, '1969-05-29 00:00:00', '2011-11-07 23:22:02', 340, 527, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975938, '2006-10-11 00:00:00', '2011-08-29 12:13:18.197183', 17.5555992, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425177, '1989-04-04 00:00:00', '2011-08-29 12:13:18.197183', 7.19999981, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852546, '2006-02-12 11:00:00', '2011-08-29 12:13:18.197183', 8, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951125, '1966-07-30 00:00:00', '2011-11-14 15:45:05.745204', 360, 526, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487137766, '2013-08-22 05:00:00', '2013-09-04 15:39:33.442132', 12, 551, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383692248, '2000-02-29 23:59:59', '2012-03-28 21:03:09.525808', 203.899994, 559, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383657316, '2000-02-29 23:59:59', '2012-03-28 17:03:41.721422', 2.00587606, 556, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383696394, '2000-05-31 23:59:59', '2012-03-28 17:33:07.754945', 76.3730774, 559, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424184, '1989-09-26 00:00:00', '2011-08-29 12:13:18.197183', 13.3000002, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027794, '1972-03-01 00:00:00', '2011-10-28 19:25:56', -9.69999981, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852523, '2006-02-11 12:00:00', '2011-08-29 12:13:18.197183', 7.4000001, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424204, '1989-10-16 00:00:00', '2011-08-29 12:13:18.197183', 1.10000002, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380883290, '1975-10-23 00:00:00', '2011-11-07 23:06:30', 3320, 526, 5316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559803279, '2015-09-24 16:00:00', '2015-09-24 16:30:03.045685', 4.04699993, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265218, '1989-09-07 00:00:00', '2011-10-28 21:36:17', 8.5, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383687951, '2000-09-30 23:59:59', '2012-03-28 17:27:43.239125', 13.3432999, 558, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424177, '1989-09-19 00:00:00', '2011-08-29 12:13:18.197183', 13, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821044, '1975-06-16 00:00:00', '2011-10-28 23:50:29', 1, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559784815, '2015-09-24 10:00:00', '2015-09-24 10:30:02.529049', 75.8399963, 437, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191993, '1991-04-22 00:00:00', '2011-08-29 12:13:18.197183', 25, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425206, '1989-05-03 00:00:00', '2011-08-29 12:13:18.197183', 18.5, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874099, '1977-08-30 00:00:00', '2011-11-07 23:04:35', 690, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852536, '2006-02-12 01:00:00', '2011-08-29 12:13:18.197183', 4.80000019, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874085, '1976-05-06 00:00:00', '2011-11-07 23:04:35', 970, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383658716, '2000-03-31 23:59:59', '2012-03-28 17:04:32.793286', -1.70523345, 561, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625944, '1974-07-20 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (53728783, '1979-11-07 00:00:00', '2011-08-29 12:13:18.197183', 5, 428, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383665456, '2000-10-31 23:59:59', '2012-03-28 17:12:45.426595', 10.0971661, 556, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980170, '1980-08-19 00:00:00', '2011-11-07 23:28:58', 630, 526, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852537, '2006-02-12 02:00:00', '2011-08-29 12:13:18.197183', 4.5999999, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689676, '1990-08-15 00:00:00', '2011-10-28 20:38:54', 2.5, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277915, '1957-10-27 00:00:00', '2011-08-29 12:13:18.197183', 14.5, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559799917, '2015-09-24 15:00:00', '2015-09-24 15:30:02.895857', 4, 438, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874084, '1976-04-08 00:00:00', '2011-11-07 23:04:35', 2040, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915359, '1977-05-27 00:00:00', '2011-11-07 23:14:20', 370, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915382, '1969-07-28 00:00:00', '2011-11-07 23:14:20', 120, 527, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559790821, '2015-09-24 12:00:00', '2015-09-24 12:30:03.478752', 39.2700005, 448, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523401, '1981-07-26 00:00:00', '2011-10-28 23:23:47', 11, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081742, '1990-12-21 23:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383671811, '2000-04-30 23:59:59', '2012-03-28 17:17:59.237946', -5.50005341, 562, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821084, '1975-08-01 00:00:00', '2011-10-28 23:50:29', 3.9000001, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265197, '1989-08-17 00:00:00', '2011-10-28 21:36:17', 13.3999996, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903925, '1976-01-05 00:00:00', '2011-11-07 23:12:13', 142, 528, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625941, '1974-07-17 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554262350, '2015-09-09 08:00:00', '2015-09-09 08:30:02.689043', 9.93999958, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947904, '1970-02-27 00:00:00', '2011-11-07 23:22:02', 43, 528, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945315, '1970-10-29 00:00:00', '2011-11-07 23:21:21', 490, 526, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625942, '1974-07-18 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559793910, '2015-09-24 13:00:00', '2015-09-24 13:30:02.704658', 33.7000008, 437, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945316, '1970-08-29 00:00:00', '2011-11-07 23:21:21', 170, 527, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383659169, '2000-04-30 23:59:59', '2012-03-28 17:04:49.087068', 14.2062168, 556, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980168, '1980-06-24 00:00:00', '2011-11-07 23:28:58', 1130, 526, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493096, '1984-01-22 00:00:00', '2011-08-29 12:13:18.197183', 0.400000006, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425209, '1989-05-06 00:00:00', '2011-08-29 12:13:18.197183', 18.5, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915326, '1969-10-01 00:00:00', '2011-11-07 23:14:20', 900, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493078, '1984-01-04 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383683438, '2000-04-30 23:59:59', '2012-03-28 17:24:59.048892', 5.61152029, 558, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523379, '1981-07-04 00:00:00', '2011-10-28 23:23:47', 5.4000001, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554282868, '2015-09-09 15:00:00', '2015-09-09 15:30:04.846275', 10.7399998, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951114, '1969-08-31 00:00:00', '2011-11-07 23:22:45', 40, 526, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277895, '1957-10-07 00:00:00', '2011-08-29 12:13:18.197183', 10, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947903, '1970-01-30 00:00:00', '2011-11-07 23:22:02', 58, 528, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265181, '1989-08-01 00:00:00', '2011-10-28 21:36:17', 18, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383696212, '2000-05-31 23:59:59', '2012-03-28 21:06:48.500785', 139.5, 559, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852524, '2006-02-11 13:00:00', '2011-08-29 12:13:18.197183', 8.10000038, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487139910, '2013-08-22 08:00:00', '2013-09-04 15:39:49.53403', 11.6000004, 551, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487141325, '2013-08-22 10:00:00', '2013-09-04 15:39:59.910492', 72, 552, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383662298, '2000-07-31 23:59:59', '2012-03-28 17:10:51.711573', 25.4621334, 556, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383695306, '2000-04-30 23:59:59', '2012-03-28 17:32:25.26322', 38.0148659, 559, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425194, '1989-04-21 00:00:00', '2011-08-29 12:13:18.197183', 7.19999981, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424174, '1989-09-16 00:00:00', '2011-08-29 12:13:18.197183', 5.80000019, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559793903, '2015-09-24 13:00:00', '2015-09-24 13:30:02.704658', 970, 439, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277899, '1957-10-11 00:00:00', '2011-08-29 12:13:18.197183', 16.7000008, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383658989, '2000-04-30 23:59:59', '2012-03-28 21:05:13.951511', 9.89999962, 556, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383693725, '2000-03-31 23:59:59', '2012-03-28 17:31:26.848159', 125.707413, 559, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975954, '2006-10-27 00:00:00', '2011-08-29 12:13:18.197183', 13.7222004, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383660180, '2000-05-31 23:59:59', '2012-03-28 17:05:25.754175', 17.3686638, 556, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383706695, '2000-12-31 23:59:59', '2012-03-28 17:39:42.142857', 241.466461, 559, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425174, '1989-04-01 00:00:00', '2011-08-29 12:13:18.197183', 2.5, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380922329, '1970-04-28 00:00:00', '2011-11-07 23:15:58', 90, 527, 6116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903924, '1975-12-01 00:00:00', '2011-11-07 23:12:13', 51, 528, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523399, '1981-07-24 00:00:00', '2011-10-28 23:23:47', 5.5, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821068, '1975-07-10 00:00:00', '2011-10-28 23:50:29', 8.39999962, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821051, '1975-06-23 00:00:00', '2011-10-28 23:50:29', -0.100000001, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898594, '1976-07-02 00:00:00', '2011-11-07 23:11:09', 420, 526, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380883282, '1973-09-29 00:00:00', '2011-11-07 23:06:30', 1030, 526, 5316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980201, '1976-12-09 00:00:00', '2011-11-07 23:28:58', 37, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898591, '1975-09-04 00:00:00', '2011-11-07 23:11:09', 850, 526, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852507, '2006-02-10 20:00:00', '2011-08-29 12:13:18.197183', 5.19999981, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625962, '1974-08-07 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951134, '1970-05-31 00:00:00', '2011-11-07 23:22:45', 180, 527, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383670430, '2000-03-31 23:59:59', '2012-03-28 17:17:09.986354', -4.49431849, 557, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980213, '1978-07-05 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947899, '1970-08-29 00:00:00', '2011-11-07 23:22:02', 150, 527, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383683871, '2000-04-30 23:59:59', '2012-03-28 17:25:14.456366', -1.08891141, 563, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191975, '1991-04-04 00:00:00', '2011-08-29 12:13:18.197183', 15, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425215, '1989-05-12 00:00:00', '2011-08-29 12:13:18.197183', 13.8000002, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852513, '2006-02-11 02:00:00', '2011-08-29 12:13:18.197183', 5.5999999, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380883286, '1975-06-26 00:00:00', '2011-11-07 23:06:30', 560, 526, 5316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493063, '1983-12-20 00:00:00', '2011-08-29 12:13:18.197183', 2.79999995, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383706830, '2000-12-31 23:59:59', '2012-03-28 21:13:05.856371', 302, 559, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689660, '1990-07-30 00:00:00', '2011-10-28 20:38:54', 4.5, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425200, '1989-04-27 00:00:00', '2011-08-29 12:13:18.197183', 12.8000002, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383670177, '2000-03-31 23:59:59', '2012-03-28 17:17:01.002551', -8.84089088, 557, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027786, '1972-02-22 00:00:00', '2011-10-28 19:25:56', -5.69999981, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (27795090, '1985-09-01 00:00:00', '2011-08-29 12:13:18.197183', 19, 428, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383673448, '2000-06-30 23:59:59', '2012-03-28 17:18:56.635294', 7.0684123, 557, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947879, '1969-05-29 00:00:00', '2011-11-07 23:22:02', 360, 526, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383662497, '2000-07-31 23:59:59', '2012-03-28 17:10:58.917367', 21.5801468, 556, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383704189, '2000-10-31 23:59:59', '2012-03-28 17:38:03.655709', 54.1513062, 559, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380929100, '1977-06-24 00:00:00', '2011-11-07 23:17:34', 500, 526, 6316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903907, '1975-10-07 00:00:00', '2011-11-07 23:12:13', 730, 527, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383703933, '2000-10-31 23:59:59', '2012-03-28 17:37:54.126082', 115.988861, 559, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689704, '1990-09-12 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358180, '2015-03-21 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889640, '1974-10-17 00:00:00', '2011-11-07 23:09:20', 860, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942220, '1970-10-29 00:00:00', '2011-11-07 23:20:33', 230, 526, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689682, '1990-08-21 00:00:00', '2011-10-28 20:38:54', 6, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381377, '1974-06-10 00:00:00', '2011-10-28 20:03:47', 5.80000019, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702683, '1959-07-30 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383692704, '2000-02-29 23:59:59', '2012-03-28 17:30:35.724874', 46.6588478, 559, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975959, '2006-11-01 00:00:00', '2011-08-29 12:13:18.197183', 1.94439995, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963588, '1973-10-26 00:00:00', '2011-11-07 23:25:31', 170, 527, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383659358, '2000-04-30 23:59:59', '2012-03-28 17:04:55.95968', 12.6452169, 556, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889639, '1974-09-17 00:00:00', '2011-11-07 23:09:20', 610, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (44478647, '1972-06-19 00:00:00', '2011-08-29 12:13:18.197183', 22.7999992, 428, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523384, '1981-07-09 00:00:00', '2011-10-28 23:23:47', 4.19999981, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487141327, '2013-08-22 10:00:00', '2013-09-04 15:39:59.910492', -0.0199999996, 555, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383657252, '2000-02-29 23:59:59', '2012-03-28 17:03:39.437402', 2.10191727, 556, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380919679, '1982-10-18 15:00:00', '2011-11-07 23:15:14', 317, 526, 6016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358186, '2015-03-27 00:00:00', '2015-09-23 00:00:22.705906', 11.3999996, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383671378, '2000-04-30 23:59:59', '2012-03-28 17:17:43.884826', -2.11283112, 557, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383686302, '2000-07-31 23:59:59', '2012-03-28 17:26:43.802659', 19.2880459, 558, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277889, '1957-10-01 00:00:00', '2011-08-29 12:13:18.197183', 16.1000004, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889648, '1975-06-25 00:00:00', '2011-11-07 23:09:20', 770, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980202, '1977-01-11 00:00:00', '2011-11-07 23:28:58', 36, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903916, '1977-08-19 00:00:00', '2011-11-07 23:12:13', 80, 527, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265214, '1989-09-03 00:00:00', '2011-10-28 21:36:17', 6.19999981, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554303260, '2015-09-09 22:00:00', '2015-09-09 22:30:02.279697', 9.89999962, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783784, '2004-08-28 06:00:00', '2011-08-29 12:13:18.197183', 98.5999985, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358196, '2015-01-06 00:00:00', '2015-09-23 00:00:22.705906', 9.60000038, 429, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947900, '1970-09-28 00:00:00', '2011-11-07 23:22:02', 670, 527, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689698, '1990-09-06 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523377, '1981-07-02 00:00:00', '2011-10-28 23:23:47', 9.5, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424215, '1990-06-26 00:00:00', '2011-08-29 12:13:18.197183', 13.3000002, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265210, '1989-08-30 00:00:00', '2011-10-28 21:36:17', 11.6999998, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383686494, '2000-07-31 23:59:59', '2012-03-28 17:26:50.555525', 17.2391167, 558, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277909, '1957-10-21 00:00:00', '2011-08-29 12:13:18.197183', 14.5, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487138490, '2013-08-22 06:00:00', '2013-09-04 15:39:39.002254', -0.0199999996, 555, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383688201, '2000-09-30 23:59:59', '2012-03-28 17:27:52.21756', 8.6908083, 558, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821040, '1975-06-12 00:00:00', '2011-10-28 23:50:29', -2.0999999, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277900, '1957-10-12 00:00:00', '2011-08-29 12:13:18.197183', 12.1999998, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689671, '1990-08-10 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980153, '1976-07-20 00:00:00', '2011-11-07 23:28:58', 490, 526, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424202, '1989-10-14 00:00:00', '2011-08-29 12:13:18.197183', 4.9000001, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383670802, '2000-03-31 23:59:59', '2012-03-28 17:17:23.199141', -9.20795536, 562, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942226, '1969-09-28 00:00:00', '2011-11-07 23:20:33', 270, 527, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559790818, '2015-09-24 12:00:00', '2015-09-24 12:30:03.478752', 970, 439, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380929103, '1977-08-24 00:00:00', '2011-11-07 23:17:34', 260, 526, 6316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358171, '2015-03-12 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554300435, '2015-09-09 21:00:00', '2015-09-09 21:30:03.800173', 9.85000038, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191991, '1991-04-20 00:00:00', '2011-08-29 12:13:18.197183', 25.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852522, '2006-02-11 11:00:00', '2011-08-29 12:13:18.197183', 9.10000038, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277912, '1957-10-24 00:00:00', '2011-08-29 12:13:18.197183', 12.1999998, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963571, '1973-10-26 00:00:00', '2011-11-07 23:25:31', 210, 526, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487137025, '2013-08-22 04:00:00', '2013-09-04 15:39:28.123839', 60, 552, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383694968, '2000-04-30 23:59:59', '2012-03-28 17:32:13.201243', 21.2623158, 559, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783799, '2004-08-28 21:00:00', '2011-08-29 12:13:18.197183', 89, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381361, '1974-05-25 00:00:00', '2011-10-28 20:03:47', 9, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383681404, '2000-02-29 23:59:59', '2012-03-28 17:23:46.098467', -3.48499918, 558, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358190, '2015-03-31 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265188, '1989-08-08 00:00:00', '2011-10-28 21:36:17', 14.3999996, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383679554, '2000-12-31 23:59:59', '2012-03-28 17:22:31.763637', -14.6772909, 557, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915339, '1972-09-29 00:00:00', '2011-11-07 23:14:20', 420, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852516, '2006-02-11 05:00:00', '2011-08-29 12:13:18.197183', 4.69999981, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554259391, '2015-09-09 07:00:00', '2015-09-09 07:30:02.252077', 9.59000015, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625972, '1974-08-17 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191984, '1991-04-13 00:00:00', '2011-08-29 12:13:18.197183', 20.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383669340, '2000-02-29 23:59:59', '2012-03-28 17:16:30.939488', -9.07191563, 557, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381368, '1974-06-01 00:00:00', '2011-10-28 20:03:47', 9, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523383, '1981-07-08 00:00:00', '2011-10-28 23:23:47', 4, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383668119, '2000-01-31 23:59:59', '2012-03-28 17:15:48.592565', -15.2494583, 557, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424213, '1990-06-24 00:00:00', '2011-08-29 12:13:18.197183', 16.3999996, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985730, '1975-10-29 00:00:00', '2011-11-07 23:30:01', 630, 526, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945310, '1969-11-27 00:00:00', '2011-11-07 23:21:21', 1570, 526, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383656035, '2000-01-31 23:59:59', '2012-03-28 17:02:36.273667', -6.74444294, 556, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380883289, '1975-09-25 00:00:00', '2011-11-07 23:06:30', 190, 526, 5316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383685133, '2000-06-30 23:59:59', '2012-03-28 21:07:14.342204', 11.1000004, 558, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554370976, '2015-09-10 21:00:00', '2015-09-10 21:30:03.080638', 13.1000004, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383659107, '2000-04-30 23:59:59', '2012-03-28 17:04:46.909109', 8.84557438, 556, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559790825, '2015-09-24 12:00:00', '2015-09-24 12:30:03.478752', 59.2099991, 437, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277916, '1957-10-28 00:00:00', '2011-08-29 12:13:18.197183', 12.1999998, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980215, '1978-10-24 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821065, '1975-07-07 00:00:00', '2011-10-28 23:50:29', 3.9000001, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975916, '2006-09-19 00:00:00', '2011-08-29 12:13:18.197183', 18, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487137768, '2013-08-22 05:00:00', '2013-09-04 15:39:33.442132', 63, 552, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191990, '1991-04-19 00:00:00', '2011-08-29 12:13:18.197183', 23, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689702, '1990-09-10 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625949, '1974-07-25 00:00:00', '2011-08-29 12:13:18.197183', 0.300000012, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975940, '2006-10-13 00:00:00', '2011-08-29 12:13:18.197183', 17.9444008, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265176, '1989-07-27 00:00:00', '2011-10-28 21:36:17', 20.2000008, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383682428, '2000-03-31 23:59:59', '2012-03-28 17:24:22.91549', 0.931010246, 558, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358205, '2015-01-15 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874089, '1976-09-01 00:00:00', '2011-11-07 23:04:35', 1190, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625965, '1974-08-10 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (57943748, '1980-11-04 00:00:00', '2011-08-29 12:13:18.197183', 14.5, 428, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702684, '1959-07-31 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975931, '2006-10-04 00:00:00', '2011-08-29 12:13:18.197183', 15.7222004, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951130, '1969-07-31 00:00:00', '2011-11-07 23:22:45', 330, 527, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945317, '1970-09-28 00:00:00', '2011-11-07 23:21:21', 970, 527, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383706580, '2000-12-31 23:59:59', '2012-03-28 17:39:37.971164', 151.71077, 559, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554376742, '2015-09-10 23:00:00', '2015-09-10 23:30:03.257308', 12.6099997, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027790, '1972-02-26 00:00:00', '2011-10-28 19:25:56', -6.30000019, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980222, '1980-04-29 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383684578, '2000-05-31 23:59:59', '2012-03-28 17:25:41.202948', 12.4771109, 558, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493111, '1983-12-06 00:00:00', '2011-08-29 12:13:18.197183', 0, 430, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265215, '1989-09-04 00:00:00', '2011-10-28 21:36:17', 7.30000019, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493094, '1984-01-20 00:00:00', '2011-08-29 12:13:18.197183', 2.79999995, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951112, '1969-06-30 00:00:00', '2011-11-07 23:22:45', 1810, 526, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975952, '2006-10-25 00:00:00', '2011-08-29 12:13:18.197183', 10.5, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915353, '1975-07-28 00:00:00', '2011-11-07 23:14:20', 470, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277908, '1957-10-20 00:00:00', '2011-08-29 12:13:18.197183', 16.7000008, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081756, '1990-12-23 00:00:00', '2011-08-29 12:13:18.197183', -29.3999996, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689658, '1990-07-28 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898619, '1976-01-12 00:00:00', '2011-11-07 23:11:09', 105, 528, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898624, '1976-10-29 00:00:00', '2011-11-07 23:11:09', 3, 528, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383666079, '2000-11-30 23:59:59', '2012-03-28 17:13:08.47834', 0.316380978, 556, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554382930, '2015-09-11 01:00:00', '2015-09-11 01:30:02.891123', 11.8800001, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027789, '1972-02-25 00:00:00', '2011-10-28 19:25:56', -7.30000019, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (57943750, '1980-11-06 00:00:00', '2011-08-29 12:13:18.197183', 6, 428, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852545, '2006-02-12 10:00:00', '2011-08-29 12:13:18.197183', 6.5999999, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383694588, '2000-04-30 23:59:59', '2012-03-28 17:31:59.472672', 43.4008217, 559, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383690194, '2000-11-30 23:59:59', '2012-03-28 17:29:04.365581', -2.95275974, 558, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702695, '1959-08-11 00:00:00', '2011-08-29 12:13:18.197183', 2, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689669, '1990-08-08 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380996492, '1981-11-10 13:25:00', '2011-11-07 23:32:08', 2, 528, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081753, '1990-12-22 21:00:00', '2011-08-29 12:13:18.197183', -29.3999996, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383679047, '2000-12-31 23:59:59', '2012-03-28 21:12:51.394663', -0.800000012, 557, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689699, '1990-09-07 00:00:00', '2011-10-28 20:38:54', 1.5, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493072, '1983-12-29 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383699623, '2000-07-31 23:59:59', '2012-03-28 17:35:16.425454', 54.3662682, 559, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (390551869, '2012-09-16 06:00:00', '2012-09-17 00:00:04.208308', 13, 545, 8516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625977, '1974-08-22 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559799913, '2015-09-24 15:00:00', '2015-09-24 15:30:02.895857', 11.3699999, 446, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380922320, '1969-08-30 00:00:00', '2011-11-07 23:15:58', 420, 526, 6116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380929114, '1978-03-07 00:00:00', '2011-11-07 23:17:34', 30, 528, 6316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277928, '1957-12-10 00:00:00', '2011-08-29 12:13:18.197183', 8.89999962, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915358, '1976-07-14 00:00:00', '2011-11-07 23:14:20', 1190, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963578, '1972-04-29 00:00:00', '2011-11-07 23:25:31', 50, 527, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383652716, '2000-01-31 23:59:59', '2012-03-28 14:35:19.469748', 80.1303177, 559, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383682560, '2000-03-31 23:59:59', '2012-03-28 17:24:27.56986', 2.89808106, 558, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027807, '1972-03-14 00:00:00', '2011-10-28 19:25:56', -1.20000005, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702667, '1959-07-13 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (387140865, '2005-02-22 00:00:00', '2012-07-20 15:46:22.161744', -1, 427, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383675354, '2000-08-31 23:59:59', '2012-03-28 17:20:03.470761', 6.3576932, 557, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381353, '1974-05-17 00:00:00', '2011-10-28 20:03:47', 2, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783791, '2004-08-28 13:00:00', '2011-08-29 12:13:18.197183', 61.2400017, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380922331, '1970-08-29 00:00:00', '2011-11-07 23:15:58', 160, 527, 6116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265209, '1989-08-29 00:00:00', '2011-10-28 21:36:17', 7.5999999, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980171, '1980-09-16 00:00:00', '2011-11-07 23:28:58', 460, 526, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383656806, '2000-02-29 23:59:59', '2012-03-28 17:03:23.233983', 8.67028046, 556, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554265314, '2015-09-09 09:00:00', '2015-09-09 09:30:03.108867', 9.82999992, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (57943755, '1980-11-11 00:00:00', '2011-08-29 12:13:18.197183', 5, 428, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380883283, '1973-10-28 00:00:00', '2011-11-07 23:06:30', 2810, 526, 5316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889645, '1975-04-02 00:00:00', '2011-11-07 23:09:20', 800, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963553, '1971-05-28 00:00:00', '2011-11-07 23:25:31', 200, 526, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383672448, '2000-05-31 23:59:59', '2012-03-28 17:18:22.000259', 3.30092812, 557, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523393, '1981-07-18 00:00:00', '2011-10-28 23:23:47', 15.6000004, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383673383, '2000-06-30 23:59:59', '2012-03-28 17:18:54.436639', 4.95531797, 557, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027764, '1972-01-31 00:00:00', '2011-10-28 19:25:56', -11.1000004, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383683573, '2000-04-30 23:59:59', '2012-03-28 17:25:03.862394', 7.90519667, 558, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493095, '1984-01-21 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689664, '1990-08-03 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383681538, '2000-02-29 23:59:59', '2012-03-28 17:23:50.975975', -1.16000736, 558, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383661179, '2000-06-30 23:59:59', '2012-03-28 17:10:11.292403', 19.8840027, 556, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975933, '2006-10-06 00:00:00', '2011-08-29 12:13:18.197183', 20.3889999, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915356, '1975-10-28 00:00:00', '2011-11-07 23:14:20', 400, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383671954, '2000-05-31 23:59:59', '2012-03-28 17:18:04.823165', 7.50206423, 557, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625948, '1974-07-24 00:00:00', '2011-08-29 12:13:18.197183', 1.5, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191987, '1991-04-16 00:00:00', '2011-08-29 12:13:18.197183', 20, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383705597, '2000-11-30 23:59:59', '2012-03-28 17:39:02.976538', 53.9754333, 559, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487137027, '2013-08-22 04:00:00', '2013-09-04 15:39:28.123839', -0.0599999987, 555, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942209, '1969-06-28 00:00:00', '2011-11-07 23:20:33', 610, 526, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947902, '1969-12-30 00:00:00', '2011-11-07 23:22:02', 10, 528, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559793905, '2015-09-24 13:00:00', '2015-09-24 13:30:02.704658', 174.800003, 447, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383702977, '2000-09-30 23:59:59', '2012-03-28 17:37:19.126721', 55.8465767, 559, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (32566552, '1997-06-02 00:00:00', '2011-08-29 12:13:18.197183', 22, 428, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985728, '1975-08-29 00:00:00', '2011-11-07 23:30:01', 720, 526, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191983, '1991-04-12 00:00:00', '2011-08-29 12:13:18.197183', 19, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963582, '1972-09-29 00:00:00', '2011-11-07 23:25:31', 400, 527, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493064, '1983-12-21 00:00:00', '2011-08-29 12:13:18.197183', 1.20000005, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889646, '1975-04-29 00:00:00', '2011-11-07 23:09:20', 370, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702673, '1959-07-19 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383657388, '2000-02-29 23:59:59', '2012-03-28 17:03:44.409', 2.47708678, 556, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942212, '1969-09-28 00:00:00', '2011-11-07 23:20:33', 270, 526, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903933, '1977-02-28 00:00:00', '2011-11-07 23:12:13', 81, 528, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487139204, '2013-08-22 07:00:00', '2013-09-04 15:39:44.265985', 63, 552, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493105, '1984-01-31 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027778, '1972-02-14 00:00:00', '2011-10-28 19:25:56', -8.19999981, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424192, '1989-10-04 00:00:00', '2011-08-29 12:13:18.197183', 12.6000004, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559793904, '2015-09-24 13:00:00', '2015-09-24 13:30:02.704658', 9.59000015, 446, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383691833, '2000-12-31 23:59:59', '2012-03-28 17:30:03.458412', -9.86550617, 563, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380996490, '1981-09-08 12:50:00', '2011-11-07 23:32:08', 0, 528, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027776, '1972-02-12 00:00:00', '2011-10-28 19:25:56', -8.30000019, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689674, '1990-08-13 00:00:00', '2011-10-28 20:38:54', 2, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277923, '1957-12-05 00:00:00', '2011-08-29 12:13:18.197183', 1.10000002, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383690579, '2000-11-30 23:59:59', '2012-03-28 17:29:18.216503', -4.12049723, 558, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424203, '1989-10-15 00:00:00', '2011-08-29 12:13:18.197183', 5.69999981, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874115, '1978-03-15 00:00:00', '2011-11-07 23:04:35', 2705, 527, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523396, '1981-07-21 00:00:00', '2011-10-28 23:23:47', 10.1999998, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383684865, '2000-05-31 23:59:59', '2012-03-28 17:25:52.008677', -0.515900552, 563, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852541, '2006-02-12 06:00:00', '2011-08-29 12:13:18.197183', 5.19999981, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081758, '1990-12-23 02:00:00', '2011-08-29 12:13:18.197183', -29.3999996, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523397, '1981-07-22 00:00:00', '2011-10-28 23:23:47', 9.39999962, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942227, '1970-07-29 00:00:00', '2011-11-07 23:20:33', 30, 527, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975922, '2006-09-25 00:00:00', '2011-08-29 12:13:18.197183', 23.7220001, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951120, '1970-08-31 00:00:00', '2011-11-07 23:22:45', 220, 526, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554324026, '2015-09-10 05:00:00', '2015-09-10 05:30:03.200235', 9.14999962, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951136, '1966-06-29 00:00:00', '2011-11-14 15:45:05.745204', 360, 527, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980207, '1978-01-19 00:00:00', '2011-11-07 23:28:58', 37, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625971, '1974-08-16 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487141324, '2013-08-22 10:00:00', '2013-09-04 15:39:59.910492', 11.3000002, 551, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383663281, '2000-08-31 23:59:59', '2012-03-28 17:11:27.290629', 25.6200027, 556, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898616, '1975-04-29 00:00:00', '2011-11-07 23:11:09', 44, 528, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265175, '1989-07-26 00:00:00', '2011-10-28 21:36:17', 11.1999998, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625945, '1974-07-21 00:00:00', '2011-08-29 12:13:18.197183', 4.5999999, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383681276, '2000-02-29 23:59:59', '2012-03-28 17:23:41.554617', 7.71897316, 558, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980156, '1977-08-23 00:00:00', '2011-11-07 23:28:58', 310, 526, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702679, '1959-07-25 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915349, '1974-08-31 00:00:00', '2011-11-07 23:14:20', 70, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383676028, '2000-09-30 23:59:59', '2012-03-28 21:10:13.427441', 7.5999999, 557, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487140617, '2013-08-22 09:00:00', '2013-09-04 15:39:54.76078', 0.00999999978, 555, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425210, '1989-05-07 00:00:00', '2011-08-29 12:13:18.197183', 18.7999992, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358183, '2015-03-24 00:00:00', '2015-09-23 00:00:22.705906', 3.5999999, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383674247, '2000-07-31 23:59:59', '2012-03-28 17:19:24.853112', 16.5244999, 557, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915335, '1972-05-30 00:00:00', '2011-11-07 23:14:20', 40, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425211, '1989-05-08 00:00:00', '2011-08-29 12:13:18.197183', 16.6000004, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852512, '2006-02-11 01:00:00', '2011-08-29 12:13:18.197183', 4.4000001, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898609, '1976-09-03 00:00:00', '2011-11-07 23:11:09', 740, 527, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277907, '1957-10-19 00:00:00', '2011-08-29 12:13:18.197183', 16.7000008, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852504, '2006-02-10 17:00:00', '2011-08-29 12:13:18.197183', 6.9000001, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903917, '1977-10-11 00:00:00', '2011-11-07 23:12:13', 880, 527, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554288820, '2015-09-09 17:00:00', '2015-09-09 17:30:03.294884', 11.8299999, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903913, '1977-05-16 00:00:00', '2011-11-07 23:12:13', 90, 527, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383684014, '2000-05-31 23:59:59', '2012-03-28 17:25:19.813002', 10.8288565, 558, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358164, '2015-03-05 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783787, '2004-08-28 09:00:00', '2011-08-29 12:13:18.197183', 72.0999985, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081748, '1990-12-22 05:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963580, '1972-07-30 00:00:00', '2011-11-07 23:25:31', 370, 527, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081751, '1990-12-22 19:00:00', '2011-08-29 12:13:18.197183', -29.5, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874091, '1976-11-25 00:00:00', '2011-11-07 23:04:35', 3210, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985735, '1972-07-30 00:00:00', '2011-11-07 23:30:01', 960, 527, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383692633, '2000-02-29 23:59:59', '2012-03-28 17:30:33.222416', 51.6058273, 559, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383666706, '2000-11-30 23:59:59', '2012-03-28 17:13:31.46532', -3.4947176, 561, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380922326, '1970-09-28 00:00:00', '2011-11-07 23:15:58', 240, 526, 6116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358169, '2015-03-10 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874083, '1976-03-09 00:00:00', '2011-11-07 23:04:35', 2010, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945319, '1969-11-27 00:00:00', '2011-11-07 23:21:21', 20, 528, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383676407, '2000-09-30 23:59:59', '2012-03-28 17:20:40.760742', 5.07313395, 557, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689655, '1990-07-25 00:00:00', '2011-10-28 20:38:54', 2, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277926, '1957-12-08 00:00:00', '2011-08-29 12:13:18.197183', 10, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874081, '1976-01-13 00:00:00', '2011-11-07 23:04:35', 2180, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424205, '1989-10-17 00:00:00', '2011-08-29 12:13:18.197183', 12.8999996, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381375, '1974-06-08 00:00:00', '2011-10-28 20:03:47', 7.80000019, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554309507, '2015-09-10 00:00:00', '2015-09-10 00:30:02.877139', 9.64000034, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783803, '2004-08-29 01:00:00', '2011-08-29 12:13:18.197183', 95.4000015, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383696591, '2000-05-31 23:59:59', '2012-03-28 17:33:15.277337', 63.3670311, 559, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383678775, '2000-11-30 23:59:59', '2012-03-28 17:22:04.885224', -8.96627617, 562, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559793909, '2015-09-24 13:00:00', '2015-09-24 13:30:02.704658', -0.100000001, 442, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554315248, '2015-09-10 02:00:00', '2015-09-10 02:30:02.474321', 9.64999962, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380922328, '1969-09-29 00:00:00', '2011-11-07 23:15:58', 410, 527, 6116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559784814, '2015-09-24 10:00:00', '2015-09-24 10:30:02.529049', -0.100000001, 442, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383696661, '2000-05-31 23:59:59', '2012-03-28 17:33:17.991244', 56.8048706, 559, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (57943751, '1980-11-07 00:00:00', '2011-08-29 12:13:18.197183', 4.5, 428, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383659492, '2000-04-30 23:59:59', '2012-03-28 17:05:00.727011', 9.68670082, 556, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383705788, '2000-11-30 23:59:59', '2012-03-28 17:39:09.499399', 56.5922165, 559, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523408, '1981-08-02 00:00:00', '2011-10-28 23:23:47', 8.19999981, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027767, '1972-02-03 00:00:00', '2011-10-28 19:25:56', -4.4000001, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191981, '1991-04-10 00:00:00', '2011-08-29 12:13:18.197183', 10.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487139205, '2013-08-22 07:00:00', '2013-09-04 15:39:44.265985', 18.5, 542, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (387140866, '2005-02-23 00:00:00', '2012-07-20 15:46:22.161744', -4, 427, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975921, '2006-09-24 00:00:00', '2011-08-29 12:13:18.197183', 21.7779999, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903930, '1976-11-29 00:00:00', '2011-11-07 23:12:13', 20, 528, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523378, '1981-07-03 00:00:00', '2011-10-28 23:23:47', 10.6999998, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523371, '1981-06-26 00:00:00', '2011-10-28 23:23:47', 3.0999999, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554285795, '2015-09-09 16:00:00', '2015-09-09 16:30:03.201589', 11.71, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898601, '1974-08-31 00:00:00', '2011-11-07 23:11:09', 30, 527, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277893, '1957-10-05 00:00:00', '2011-08-29 12:13:18.197183', 14.5, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027801, '1972-03-08 00:00:00', '2011-10-28 19:25:56', -7.30000019, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980165, '1979-09-18 00:00:00', '2011-11-07 23:28:58', 590, 526, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383697717, '2000-06-30 23:59:59', '2012-03-28 21:07:41.33098', 123.699997, 559, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689667, '1990-08-06 00:00:00', '2011-10-28 20:38:54', 1, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383664820, '2000-10-31 23:59:59', '2012-03-28 17:12:22.616634', 12.8666983, 556, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821056, '1975-06-28 00:00:00', '2011-10-28 23:50:29', 5.30000019, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383705341, '2000-11-30 23:59:59', '2012-03-28 17:38:54.097073', 206.491623, 559, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898630, '1977-04-29 00:00:00', '2011-11-07 23:11:09', 14, 528, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381364, '1974-05-28 00:00:00', '2011-10-28 20:03:47', 7.30000019, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (384567492, '2012-05-15 06:00:00', '2012-05-16 00:00:04.327942', 26.5, 544, 8416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027806, '1972-03-13 00:00:00', '2011-10-28 19:25:56', -0.400000006, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380929104, '1977-09-21 00:00:00', '2011-11-07 23:17:34', 570, 526, 6316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985731, '1977-08-25 00:00:00', '2011-11-07 23:30:01', 720, 526, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358157, '2015-02-26 00:00:00', '2015-09-23 00:00:22.705906', 3.20000005, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559796863, '2015-09-24 14:00:00', '2015-09-24 14:30:03.973543', 4, 438, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081735, '1990-12-21 16:00:00', '2011-08-29 12:13:18.197183', -29.5, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852501, '2006-02-10 14:00:00', '2011-08-29 12:13:18.197183', 9.60000038, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383660867, '2000-06-30 23:59:59', '2012-03-28 17:10:00.052432', 15.1933937, 556, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383667485, '2000-12-31 23:59:59', '2012-03-28 17:13:59.690421', -4.67991877, 556, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874097, '1977-07-06 00:00:00', '2011-11-07 23:04:35', 1880, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192009, '1991-05-08 00:00:00', '2011-08-29 12:13:18.197183', 11, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358184, '2015-03-25 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898608, '1976-07-28 00:00:00', '2011-11-07 23:11:09', 510, 527, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487142031, '2013-08-22 11:00:00', '2013-09-04 15:40:05.111065', 10.8000002, 551, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358206, '2015-01-16 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493110, '1983-12-05 00:00:00', '2011-08-29 12:13:18.197183', 0, 430, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951121, '1970-09-30 00:00:00', '2011-11-07 23:22:45', 1310, 526, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493090, '1984-01-16 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358194, '2015-01-04 00:00:00', '2015-09-23 00:00:22.705906', 15, 429, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970960, '1973-07-29 00:00:00', '2011-11-07 23:27:12', 620, 526, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903896, '1976-10-26 00:00:00', '2011-11-07 23:12:13', 730, 526, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963577, '1971-11-01 00:00:00', '2011-11-07 23:25:31', 160, 527, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (57943742, '1980-10-29 00:00:00', '2011-08-29 12:13:18.197183', 6.5, 428, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975957, '2006-10-30 00:00:00', '2011-08-29 12:13:18.197183', 1.5, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852521, '2006-02-11 10:00:00', '2011-08-29 12:13:18.197183', 6.80000019, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383681092, '2000-02-29 23:59:59', '2012-03-28 21:02:42.447669', 2.5, 558, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493070, '1983-12-27 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383671192, '2000-04-30 23:59:59', '2012-03-28 17:17:37.203097', -3.76009965, 557, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383702700, '2000-09-30 23:59:59', '2012-03-28 17:37:09.143168', 62.3479996, 559, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821045, '1975-06-17 00:00:00', '2011-10-28 23:50:29', 2.4000001, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383657971, '2000-03-31 23:59:59', '2012-03-28 21:04:16.728923', 7.4000001, 556, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821076, '1975-07-24 00:00:00', '2011-10-28 23:50:29', 7.30000019, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702663, '1959-07-09 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559796862, '2015-09-24 14:00:00', '2015-09-24 14:30:03.973543', 21.1000004, 434, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702661, '1959-07-07 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951124, '1966-06-29 00:00:00', '2011-11-14 15:45:05.745204', 390, 526, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493068, '1983-12-25 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945313, '1970-08-29 00:00:00', '2011-11-07 23:21:21', 180, 526, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493092, '1984-01-18 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383697840, '2000-06-30 23:59:59', '2012-03-28 17:34:08.372108', 52.8542557, 559, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975949, '2006-10-22 00:00:00', '2011-08-29 12:13:18.197183', 11.4443998, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383677144, '2000-10-31 23:59:59', '2012-03-28 17:21:06.984077', -1.06024015, 557, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265195, '1989-08-15 00:00:00', '2011-10-28 21:36:17', 8.60000038, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383676543, '2000-09-30 23:59:59', '2012-03-28 17:20:45.606184', 3.99026942, 557, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358162, '2015-03-03 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821052, '1975-06-24 00:00:00', '2011-10-28 23:50:29', 2.4000001, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358188, '2015-03-29 00:00:00', '2015-09-23 00:00:22.705906', 2.20000005, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821048, '1975-06-20 00:00:00', '2011-10-28 23:50:29', 4.19999981, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898602, '1974-09-30 00:00:00', '2011-11-07 23:11:09', 50, 527, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947898, '1970-07-29 00:00:00', '2011-11-07 23:22:02', 490, 527, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277905, '1957-10-17 00:00:00', '2011-08-29 12:13:18.197183', 12.8000002, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380929107, '1977-08-04 00:00:00', '2011-11-07 23:17:34', 540, 527, 6316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381373, '1974-06-06 00:00:00', '2011-10-28 20:03:47', 6.69999981, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191996, '1991-04-25 00:00:00', '2011-08-29 12:13:18.197183', 13.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380919684, '1982-10-18 15:00:00', '2011-11-07 23:15:14', 232, 527, 6016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963567, '1973-06-29 00:00:00', '2011-11-07 23:25:31', 250, 526, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027808, '1972-03-15 00:00:00', '2011-10-28 19:25:56', -0.300000012, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689675, '1990-08-14 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265191, '1989-08-11 00:00:00', '2011-10-28 21:36:17', 9.60000038, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963591, '1972-01-04 00:00:00', '2011-11-07 23:25:31', 54, 528, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975960, '2006-11-02 00:00:00', '2011-08-29 12:13:18.197183', 2.05559993, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424180, '1989-09-22 00:00:00', '2011-08-29 12:13:18.197183', 22.3999996, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951118, '1970-06-30 00:00:00', '2011-11-07 23:22:45', 220, 526, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702672, '1959-07-18 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702703, '1959-08-19 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277934, '1957-12-16 00:00:00', '2011-08-29 12:13:18.197183', 4.4000001, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383674571, '2000-07-31 23:59:59', '2012-03-28 17:19:35.894943', 7.83941221, 557, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852539, '2006-02-12 04:00:00', '2011-08-29 12:13:18.197183', 4.80000019, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265222, '1989-09-12 00:00:00', '2011-10-28 21:36:17', 5.5, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783805, '2004-08-29 03:00:00', '2011-08-29 12:13:18.197183', 95.3000031, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783815, '2004-08-29 13:00:00', '2011-08-29 12:13:18.197183', 59.8100014, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381363, '1974-05-27 00:00:00', '2011-10-28 20:03:47', 4.5999999, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383652201, '2000-01-31 23:59:59', '2012-03-28 14:34:46.226178', 194.023132, 559, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424179, '1989-09-21 00:00:00', '2011-08-29 12:13:18.197183', 18.3999996, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947905, '1970-03-30 00:00:00', '2011-11-07 23:22:02', 13, 528, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975923, '2006-09-26 00:00:00', '2011-08-29 12:13:18.197183', 22.7222004, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947892, '1970-10-29 00:00:00', '2011-11-07 23:22:02', 360, 526, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903927, '1976-03-01 00:00:00', '2011-11-07 23:12:13', 183, 528, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383687283, '2000-08-31 23:59:59', '2012-03-28 17:27:19.026953', 19.5333271, 558, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821074, '1975-07-22 00:00:00', '2011-10-28 23:50:29', 4.19999981, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702656, '1959-07-02 00:00:00', '2011-08-29 12:13:18.197183', 6.9000001, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383671254, '2000-04-30 23:59:59', '2012-03-28 17:17:39.406835', 8.7220602, 557, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191994, '1991-04-23 00:00:00', '2011-08-29 12:13:18.197183', 22, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381354, '1974-05-18 00:00:00', '2011-10-28 20:03:47', 1.89999998, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380919680, '1983-07-05 14:00:00', '2011-11-07 23:15:14', 813, 526, 6016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192016, '1991-05-15 00:00:00', '2011-08-29 12:13:18.197183', 22, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874079, '1975-10-22 00:00:00', '2011-11-07 23:04:35', 3050, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424183, '1989-09-25 00:00:00', '2011-08-29 12:13:18.197183', 20.8999996, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554247863, '2015-09-09 03:00:00', '2015-09-09 03:30:02.551117', 8.73999977, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265177, '1989-07-28 00:00:00', '2011-10-28 21:36:17', 14.1999998, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383699826, '2000-07-31 23:59:59', '2012-03-28 17:35:23.822198', 96.3007126, 559, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970971, '1975-09-02 00:00:00', '2011-11-07 23:27:12', 1590, 526, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975953, '2006-10-26 00:00:00', '2011-08-29 12:13:18.197183', 11.7222004, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191988, '1991-04-17 00:00:00', '2011-08-29 12:13:18.197183', 21.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383678211, '2000-11-30 23:59:59', '2012-03-28 17:21:44.953037', 7.19443035, 557, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277920, '1957-12-02 00:00:00', '2011-08-29 12:13:18.197183', 8.30000019, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942219, '1970-09-28 00:00:00', '2011-11-07 23:20:33', 120, 526, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265193, '1989-08-13 00:00:00', '2011-10-28 21:36:17', 13.1000004, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383659429, '2000-04-30 23:59:59', '2012-03-28 17:04:58.469752', 14.1659794, 556, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191985, '1991-04-14 00:00:00', '2011-08-29 12:13:18.197183', 20, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903886, '1975-05-28 00:00:00', '2011-11-07 23:12:13', 80, 526, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383699304, '2000-07-31 23:59:59', '2012-03-28 21:08:39.955666', 114.300003, 559, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081747, '1990-12-22 04:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980225, '1980-07-22 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874077, '1975-08-27 00:00:00', '2011-11-07 23:04:35', 1480, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425191, '1989-04-18 00:00:00', '2011-08-29 12:13:18.197183', 12.8999996, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487137765, '2013-08-22 05:00:00', '2013-09-04 15:39:33.442132', 101.5, 549, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970965, '1974-08-30 00:00:00', '2011-11-07 23:27:12', 210, 526, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358197, '2015-01-07 00:00:00', '2015-09-23 00:00:22.705906', 0, 429, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559796859, '2015-09-24 14:00:00', '2015-09-24 14:30:03.973543', 9.38000011, 446, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980189, '1977-10-20 00:00:00', '2011-11-07 23:28:58', 480, 527, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783793, '2004-08-28 15:00:00', '2011-08-29 12:13:18.197183', 61.3300018, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821085, '1975-08-02 00:00:00', '2011-10-28 23:50:29', 3, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980155, '1977-07-19 00:00:00', '2011-11-07 23:28:58', 780, 526, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702691, '1959-08-07 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821041, '1975-06-13 00:00:00', '2011-10-28 23:50:29', 3.5999999, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689681, '1990-08-20 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383697456, '2000-06-30 23:59:59', '2012-03-28 17:33:54.383131', 58.7020187, 559, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277913, '1957-10-25 00:00:00', '2011-08-29 12:13:18.197183', 11.6999998, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358179, '2015-03-20 00:00:00', '2015-09-23 00:00:22.705906', 3.20000005, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358175, '2015-03-16 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493069, '1983-12-26 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915346, '1974-06-04 00:00:00', '2011-11-07 23:14:20', 290, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523369, '1981-06-24 00:00:00', '2011-10-28 23:23:47', 10.1999998, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383694712, '2000-04-30 23:59:59', '2012-03-28 17:32:04.100941', 81.1039124, 559, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383668448, '2000-01-31 23:59:59', '2012-03-28 17:15:59.787044', -6.77285337, 557, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081738, '1990-12-21 19:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523405, '1981-07-30 00:00:00', '2011-10-28 23:23:47', 5.80000019, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425183, '1989-04-10 00:00:00', '2011-08-29 12:13:18.197183', 19.2000008, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898599, '1974-06-30 00:00:00', '2011-11-07 23:11:09', 180, 527, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625961, '1974-08-06 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191973, '1991-04-02 00:00:00', '2011-08-29 12:13:18.197183', 14.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027798, '1972-03-05 00:00:00', '2011-10-28 19:25:56', -6.9000001, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425208, '1989-05-05 00:00:00', '2011-08-29 12:13:18.197183', 18.8999996, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383677530, '2000-10-31 23:59:59', '2012-03-28 17:21:20.631814', -0.641471922, 557, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559787927, '2015-09-24 11:00:00', '2015-09-24 11:30:02.616552', 971, 439, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277936, '1957-12-18 00:00:00', '2011-08-29 12:13:18.197183', 4.4000001, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381376, '1974-06-09 00:00:00', '2011-10-28 20:03:47', 7.5999999, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947878, '1969-05-02 00:00:00', '2011-11-07 23:22:02', 830, 526, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383664406, '2000-09-30 23:59:59', '2012-03-28 17:12:07.632257', 19.555212, 556, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265184, '1989-08-04 00:00:00', '2011-10-28 21:36:17', 11.1000004, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980219, '1979-08-21 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821062, '1975-07-04 00:00:00', '2011-10-28 23:50:29', 11.1999998, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383665322, '2000-10-31 23:59:59', '2012-03-28 17:12:40.617544', 11.7392778, 556, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265179, '1989-07-30 00:00:00', '2011-10-28 21:36:17', 11.6999998, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383652458, '2000-01-31 23:59:59', '2012-03-28 14:35:02.301473', 48.6945152, 559, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487139201, '2013-08-22 07:00:00', '2013-09-04 15:39:44.265985', 101.5, 549, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559796861, '2015-09-24 14:00:00', '2015-09-24 14:30:03.973543', 60.1800003, 448, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (384567490, '2012-05-15 06:00:00', '2012-05-16 00:00:04.327942', 0, 546, 8416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027795, '1972-03-02 00:00:00', '2011-10-28 19:25:56', -7.0999999, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554312415, '2015-09-10 01:00:00', '2015-09-10 01:30:02.296732', 9.64999962, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985725, '1974-08-29 00:00:00', '2011-11-07 23:30:01', 290, 526, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947910, '1971-03-30 00:00:00', '2011-11-07 23:22:02', 25, 528, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358165, '2015-03-06 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903921, '1975-02-27 00:00:00', '2011-11-07 23:12:13', 163, 528, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852542, '2006-02-12 07:00:00', '2011-08-29 12:13:18.197183', 4.80000019, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975926, '2006-09-29 00:00:00', '2011-08-29 12:13:18.197183', 25.6110992, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081745, '1990-12-22 02:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493085, '1984-01-11 00:00:00', '2011-08-29 12:13:18.197183', 0.200000003, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975945, '2006-10-18 00:00:00', '2011-08-29 12:13:18.197183', 9.72220039, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874082, '1976-02-10 00:00:00', '2011-11-07 23:04:35', 1310, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625973, '1974-08-18 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383681845, '2000-02-29 23:59:59', '2012-03-28 17:24:01.947391', -7.69476604, 563, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980163, '1979-07-24 00:00:00', '2011-11-07 23:28:58', 1245, 526, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277937, '1957-12-19 00:00:00', '2011-08-29 12:13:18.197183', 3.9000001, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424173, '1989-09-15 00:00:00', '2011-08-29 12:13:18.197183', 15.1000004, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783806, '2004-08-29 04:00:00', '2011-08-29 12:13:18.197183', 97.3000031, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951122, '1970-10-31 00:00:00', '2011-11-07 23:22:45', 520, 526, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383698103, '2000-06-30 23:59:59', '2012-03-28 17:34:17.993845', 71.0593948, 559, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383695034, '2000-04-30 23:59:59', '2012-03-28 17:32:15.51682', 105.392593, 559, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383690444, '2000-11-30 23:59:59', '2012-03-28 17:29:13.337913', -0.406603992, 558, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985726, '1975-06-27 00:00:00', '2011-11-07 23:30:01', 560, 526, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487140615, '2013-08-22 09:00:00', '2013-09-04 15:39:54.76078', 64, 552, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915384, '1969-10-01 00:00:00', '2011-11-07 23:14:20', 890, 527, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945324, '1970-11-28 00:00:00', '2011-11-07 23:21:21', 25, 528, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783794, '2004-08-28 16:00:00', '2011-08-29 12:13:18.197183', 68.5899963, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898586, '1974-07-31 00:00:00', '2011-11-07 23:11:09', 460, 526, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523398, '1981-07-23 00:00:00', '2011-10-28 23:23:47', 5.5999999, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702660, '1959-07-06 00:00:00', '2011-08-29 12:13:18.197183', 5.5999999, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383679418, '2000-12-31 23:59:59', '2012-03-28 17:22:27.08271', -8.25311756, 557, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380919682, '1982-08-18 12:10:00', '2011-11-07 23:15:14', 1272, 527, 6016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559787934, '2015-09-24 11:00:00', '2015-09-24 11:30:02.616552', 67.7099991, 437, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383689251, '2000-10-31 23:59:59', '2012-03-28 17:28:30.339632', 12.6615477, 558, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852528, '2006-02-11 17:00:00', '2011-08-29 12:13:18.197183', 6.30000019, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383663478, '2000-08-31 23:59:59', '2012-03-28 17:11:34.347071', 20.7269955, 556, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874090, '1976-09-29 00:00:00', '2011-11-07 23:04:35', 670, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915381, '1969-06-27 00:00:00', '2011-11-07 23:14:20', 230, 527, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947889, '1970-07-29 00:00:00', '2011-11-07 23:22:02', 500, 526, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985732, '1977-10-20 00:00:00', '2011-11-07 23:30:01', 890, 526, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947890, '1970-08-29 00:00:00', '2011-11-07 23:22:02', 150, 526, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852532, '2006-02-11 21:00:00', '2011-08-29 12:13:18.197183', 4.4000001, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874098, '1977-08-04 00:00:00', '2011-11-07 23:04:35', 340, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963570, '1973-09-29 00:00:00', '2011-11-07 23:25:31', 190, 526, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383658414, '2000-03-31 23:59:59', '2012-03-28 17:04:21.879588', 7.64416409, 556, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487138485, '2013-08-22 06:00:00', '2013-09-04 15:39:39.002254', 101.400002, 549, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027800, '1972-03-07 00:00:00', '2011-10-28 19:25:56', -9.19999981, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383692566, '2000-02-29 23:59:59', '2012-03-28 17:30:30.865224', 34.4872932, 559, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915352, '1975-06-25 00:00:00', '2011-11-07 23:14:20', 310, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980204, '1977-03-14 00:00:00', '2011-11-07 23:28:58', 3, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963565, '1972-10-30 00:00:00', '2011-11-07 23:25:31', 200, 526, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383690818, '2000-11-30 23:59:59', '2012-03-28 17:29:26.878742', -6.23049688, 563, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358158, '2015-02-27 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951110, '1969-05-11 00:00:00', '2011-11-07 23:22:45', 610, 526, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554268183, '2015-09-09 10:00:00', '2015-09-09 10:30:03.656099', 10.1599998, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383707269, '2000-12-31 23:59:59', '2012-03-28 17:40:02.936813', 79.6229782, 559, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625967, '1974-08-12 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523389, '1981-07-14 00:00:00', '2011-10-28 23:23:47', 7.19999981, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874092, '1976-12-16 00:00:00', '2011-11-07 23:04:35', 1610, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689661, '1990-07-31 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081755, '1990-12-22 23:00:00', '2011-08-29 12:13:18.197183', -29.3999996, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852508, '2006-02-10 21:00:00', '2011-08-29 12:13:18.197183', 4.19999981, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277892, '1957-10-04 00:00:00', '2011-08-29 12:13:18.197183', 11.1000004, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383674185, '2000-07-31 23:59:59', '2012-03-28 17:19:22.729429', 6.90626192, 557, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821075, '1975-07-23 00:00:00', '2011-10-28 23:50:29', 7.30000019, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383684259, '2000-05-31 23:59:59', '2012-03-28 17:25:29.26256', 7.13296127, 558, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383687223, '2000-08-31 23:59:59', '2012-03-28 17:27:16.846975', 12.8524265, 558, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383675229, '2000-08-31 23:59:59', '2012-03-28 17:19:58.950963', 16.9850693, 557, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (57943754, '1980-11-10 00:00:00', '2011-08-29 12:13:18.197183', 1, 428, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383691990, '2000-02-29 23:59:59', '2012-03-28 17:30:09.134978', 74.0017471, 559, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383686566, '2000-07-31 23:59:59', '2012-03-28 17:26:53.200292', 18.5829182, 558, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383669403, '2000-02-29 23:59:59', '2012-03-28 17:16:33.222406', -7.63896894, 557, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (57943749, '1980-11-05 00:00:00', '2011-08-29 12:13:18.197183', 16, 428, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945323, '1970-03-29 00:00:00', '2011-11-07 23:21:21', 23, 528, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424172, '1989-09-14 00:00:00', '2011-08-29 12:13:18.197183', 20.5, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702664, '1959-07-10 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265198, '1989-08-18 00:00:00', '2011-10-28 21:36:17', 8.69999981, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265206, '1989-08-26 00:00:00', '2011-10-28 21:36:17', 10.8999996, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192012, '1991-05-11 00:00:00', '2011-08-29 12:13:18.197183', 26, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380996491, '1981-10-13 14:47:00', '2011-11-07 23:32:08', 10, 528, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821063, '1975-07-05 00:00:00', '2011-10-28 23:50:29', 3, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559802838, '2015-09-24 16:00:00', '2015-09-24 16:30:03.045685', 35.5800018, 437, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559793906, '2015-09-24 13:00:00', '2015-09-24 13:30:02.704658', 62.0200005, 448, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277904, '1957-10-16 00:00:00', '2011-08-29 12:13:18.197183', 12.1999998, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689684, '1990-08-23 00:00:00', '2011-10-28 20:38:54', 2, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963566, '1973-05-29 00:00:00', '2011-11-07 23:25:31', 340, 526, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424190, '1989-10-02 00:00:00', '2011-08-29 12:13:18.197183', 13, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277924, '1957-12-06 00:00:00', '2011-08-29 12:13:18.197183', 4.4000001, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383655916, '2000-01-31 23:59:59', '2012-03-28 20:34:09.2376', 4.5999999, 556, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783772, '2004-08-27 18:00:00', '2011-08-29 12:13:18.197183', 93.4000015, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821071, '1975-07-13 00:00:00', '2011-10-28 23:50:29', 1.89999998, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381362, '1974-05-26 00:00:00', '2011-10-28 20:03:47', 4.5999999, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625946, '1974-07-22 00:00:00', '2011-08-29 12:13:18.197183', 3.29999995, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277906, '1957-10-18 00:00:00', '2011-08-29 12:13:18.197183', 15.6000004, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915323, '1969-06-27 00:00:00', '2011-11-07 23:14:20', 230, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425182, '1989-04-09 00:00:00', '2011-08-29 12:13:18.197183', 15.6999998, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702662, '1959-07-08 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942217, '1970-07-29 00:00:00', '2011-11-07 23:20:33', 70, 526, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970980, '1975-07-01 00:00:00', '2011-11-07 23:27:12', 710, 527, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493106, '1983-12-01 00:00:00', '2011-08-29 12:13:18.197183', 0, 430, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (57943753, '1980-11-09 00:00:00', '2011-08-29 12:13:18.197183', 7.5, 428, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554274139, '2015-09-09 12:00:00', '2015-09-09 12:30:02.618494', 11.04, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380922321, '1969-09-29 00:00:00', '2011-11-07 23:15:58', 420, 526, 6116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523406, '1981-07-31 00:00:00', '2011-10-28 23:23:47', 8, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383662845, '2000-08-31 23:59:59', '2012-03-28 17:11:11.585177', 17.8733521, 556, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383679229, '2000-12-31 23:59:59', '2012-03-28 17:22:20.66162', 4.61040163, 557, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383678474, '2000-11-30 23:59:59', '2012-03-28 17:21:54.232232', -1.12903357, 557, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027765, '1972-02-01 00:00:00', '2011-10-28 19:25:56', -12, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383669783, '2000-02-29 23:59:59', '2012-03-28 17:16:46.807929', -10.7710485, 562, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554380071, '2015-09-11 00:00:00', '2015-09-11 00:30:02.860588', 11.9799995, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874112, '1974-04-18 00:00:00', '2011-11-07 23:04:35', 1970, 527, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (5449827, '1974-03-07 00:00:00', '2011-08-29 12:13:18.197183', 4.4000001, 428, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383699168, '2000-07-31 23:59:59', '2012-03-28 17:34:59.817284', 26.4609032, 559, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383665394, '2000-10-31 23:59:59', '2012-03-28 17:12:43.225366', 12.0021696, 556, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783781, '2004-08-28 03:00:00', '2011-08-29 12:13:18.197183', 98, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383702903, '2000-09-30 23:59:59', '2012-03-28 17:37:16.497774', 39.7596436, 559, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383686626, '2000-07-31 23:59:59', '2012-03-28 17:26:55.326182', 14.7097797, 558, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487137026, '2013-08-22 04:00:00', '2013-09-04 15:39:28.123839', 20.1000004, 542, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947888, '1970-06-28 00:00:00', '2011-11-07 23:22:02', 630, 526, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821080, '1975-07-28 00:00:00', '2011-10-28 23:50:29', 1.60000002, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625955, '1974-07-31 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487139206, '2013-08-22 07:00:00', '2013-09-04 15:39:44.265985', -0.0199999996, 555, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383667723, '2000-12-31 23:59:59', '2012-03-28 17:14:08.161622', -7.17625904, 561, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425193, '1989-04-20 00:00:00', '2011-08-29 12:13:18.197183', 8.5, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027797, '1972-03-04 00:00:00', '2011-10-28 19:25:56', -9.10000038, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945327, '1971-02-26 00:00:00', '2011-11-07 23:21:21', 119, 528, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265201, '1989-08-21 00:00:00', '2011-10-28 21:36:17', 12.3999996, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425201, '1989-04-28 00:00:00', '2011-08-29 12:13:18.197183', 20, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783773, '2004-08-27 19:00:00', '2011-08-29 12:13:18.197183', 92.6999969, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383666331, '2000-11-30 23:59:59', '2012-03-28 17:13:17.500222', 2.76843357, 556, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493099, '1984-01-25 00:00:00', '2011-08-29 12:13:18.197183', 6.4000001, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277898, '1957-10-10 00:00:00', '2011-08-29 12:13:18.197183', 21.1000004, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783778, '2004-08-28 00:00:00', '2011-08-29 12:13:18.197183', 96.9000015, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (32566551, '1997-06-01 00:00:00', '2011-08-29 12:13:18.197183', 18, 428, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898625, '1976-12-03 00:00:00', '2011-11-07 23:11:09', 22, 528, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554362070, '2015-09-10 18:00:00', '2015-09-10 18:30:03.512038', 13.6599998, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081734, '1990-12-21 15:00:00', '2011-08-29 12:13:18.197183', -29.5, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821070, '1975-07-12 00:00:00', '2011-10-28 23:50:29', 5.30000019, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383672384, '2000-05-31 23:59:59', '2012-03-28 17:18:19.815216', 2.0889883, 557, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383692109, '2000-02-29 23:59:59', '2012-03-28 17:30:14.383155', 154.316147, 559, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975935, '2006-10-08 00:00:00', '2011-08-29 12:13:18.197183', 15.6111002, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425189, '1989-04-16 00:00:00', '2011-08-29 12:13:18.197183', 10.1999998, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380922319, '1969-07-30 00:00:00', '2011-11-07 23:15:58', 570, 526, 6116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702704, '1959-08-20 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425190, '1989-04-17 00:00:00', '2011-08-29 12:13:18.197183', 17.3999996, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358174, '2015-03-15 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383656100, '2000-01-31 23:59:59', '2012-03-28 17:02:40.189474', 8.61642933, 556, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487138484, '2013-08-22 06:00:00', '2013-09-04 15:39:39.002254', 4, 550, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381374, '1974-06-07 00:00:00', '2011-10-28 20:03:47', 7.30000019, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689666, '1990-08-05 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554332691, '2015-09-10 08:00:00', '2015-09-10 08:30:02.49132', 8.89999962, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903931, '1977-01-04 00:00:00', '2011-11-07 23:12:13', 75, 528, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554373856, '2015-09-10 22:00:00', '2015-09-10 22:30:02.358271', 13.0200005, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383698035, '2000-06-30 23:59:59', '2012-03-28 17:34:15.541', 71.1206512, 559, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383704524, '2000-10-31 23:59:59', '2012-03-28 17:38:24.261208', 62.1915245, 559, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947882, '1969-08-27 00:00:00', '2011-11-07 23:22:02', 90, 526, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191978, '1991-04-07 00:00:00', '2011-08-29 12:13:18.197183', 12.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383696781, '2000-05-31 23:59:59', '2012-03-28 17:33:23.732964', 176.67926, 592, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985739, '1975-06-27 00:00:00', '2011-11-07 23:30:01', 560, 527, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852510, '2006-02-10 23:00:00', '2011-08-29 12:13:18.197183', 4.19999981, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783797, '2004-08-28 19:00:00', '2011-08-29 12:13:18.197183', 86.4000015, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689694, '1990-09-02 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783771, '2004-08-27 17:00:00', '2011-08-29 12:13:18.197183', 89.6999969, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383680517, '2000-01-31 23:59:59', '2012-03-28 17:23:14.172052', -3.83847499, 558, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903915, '1977-07-14 00:00:00', '2011-11-07 23:12:13', 560, 527, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383656228, '2000-01-31 23:59:59', '2012-03-28 17:02:48.175644', -2.29952478, 556, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383665257, '2000-10-31 23:59:59', '2012-03-28 17:12:38.298026', 12.6802397, 556, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383656939, '2000-02-29 23:59:59', '2012-03-28 21:02:29.568732', 5.9000001, 556, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383690074, '2000-11-30 23:59:59', '2012-03-28 21:11:46.388061', 4.0999999, 558, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424189, '1989-10-01 00:00:00', '2011-08-29 12:13:18.197183', 7.5999999, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425185, '1989-04-12 00:00:00', '2011-08-29 12:13:18.197183', 18, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903911, '1976-09-28 00:00:00', '2011-11-07 23:12:13', 560, 527, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192011, '1991-05-10 00:00:00', '2011-08-29 12:13:18.197183', 20.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702701, '1959-08-17 00:00:00', '2011-08-29 12:13:18.197183', 1.29999995, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783810, '2004-08-29 08:00:00', '2011-08-29 12:13:18.197183', 84.9000015, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559802834, '2015-09-24 16:00:00', '2015-09-24 16:30:03.045685', 45.7700005, 448, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424200, '1989-10-12 00:00:00', '2011-08-29 12:13:18.197183', 7.5, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903926, '1976-02-02 00:00:00', '2011-11-07 23:12:13', 178, 528, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493097, '1984-01-23 00:00:00', '2011-08-29 12:13:18.197183', 4, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783770, '2004-08-27 16:00:00', '2011-08-29 12:13:18.197183', 88.5999985, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380942233, '1970-02-24 00:00:00', '2011-11-07 23:20:33', 3, 528, 6716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424214, '1990-06-25 00:00:00', '2011-08-29 12:13:18.197183', 15.6999998, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027785, '1972-02-21 00:00:00', '2011-10-28 19:25:56', -7.5999999, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383694849, '2000-04-30 23:59:59', '2012-03-28 21:05:54.368331', 178.699997, 559, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383669541, '2000-02-29 23:59:59', '2012-03-28 17:16:38.291716', -13.6407452, 557, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383705660, '2000-11-30 23:59:59', '2012-03-28 17:39:05.10099', 205.761536, 559, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821054, '1975-06-26 00:00:00', '2011-10-28 23:50:29', 3.9000001, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947886, '1970-04-28 00:00:00', '2011-11-07 23:22:02', 290, 526, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689665, '1990-08-04 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970973, '1973-07-29 00:00:00', '2011-11-07 23:27:12', 610, 527, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425187, '1989-04-14 00:00:00', '2011-08-29 12:13:18.197183', 15.8999996, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (384567491, '2012-05-15 06:00:00', '2012-05-16 00:00:04.327942', 0, 548, 8416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380883291, '1974-10-01 00:00:00', '2011-11-07 23:06:31', 610, 527, 5316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383701889, '2000-08-31 23:59:59', '2012-03-28 17:36:39.387798', 24.5573177, 592, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383652651, '2000-01-31 23:59:59', '2012-03-28 14:35:15.208608', 52.4885178, 559, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383702246, '2000-09-30 23:59:59', '2012-03-28 17:36:52.737727', 107.245644, 559, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380929115, '1978-04-13 00:00:00', '2011-11-07 23:17:34', 0, 528, 6316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915329, '1971-07-01 00:00:00', '2011-11-07 23:14:20', 410, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383674374, '2000-07-31 23:59:59', '2012-03-28 17:19:29.133697', 6.60627794, 557, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783775, '2004-08-27 21:00:00', '2011-08-29 12:13:18.197183', 95.0999985, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383677395, '2000-10-31 23:59:59', '2012-03-28 17:21:15.870767', 0.856782377, 557, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554321069, '2015-09-10 04:00:00', '2015-09-10 04:30:03.091275', 9.18000031, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975956, '2006-10-29 00:00:00', '2011-08-29 12:13:18.197183', 12.4443998, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383663096, '2000-08-31 23:59:59', '2012-03-28 17:11:20.665428', 19.9959049, 556, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383704068, '2000-10-31 23:59:59', '2012-03-28 21:11:20.210759', 379.200012, 559, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852533, '2006-02-11 22:00:00', '2011-08-29 12:13:18.197183', 3.70000005, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951123, '1966-05-30 00:00:00', '2011-11-14 15:45:05.745204', 90, 526, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554306165, '2015-09-09 23:00:00', '2015-09-09 23:30:02.911604', 9.69999981, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945328, '1971-03-30 00:00:00', '2011-11-07 23:21:21', 124, 528, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980212, '1978-06-06 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081739, '1990-12-21 20:00:00', '2011-08-29 12:13:18.197183', -30, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625959, '1974-08-04 00:00:00', '2011-08-29 12:13:18.197183', 0.300000012, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559790820, '2015-09-24 12:00:00', '2015-09-24 12:30:03.478752', 192.5, 447, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487141323, '2013-08-22 10:00:00', '2013-09-04 15:39:59.910492', 101.400002, 549, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903932, '1977-01-30 00:00:00', '2011-11-07 23:12:13', 91, 528, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523410, '1981-08-04 00:00:00', '2011-10-28 23:23:47', 9.80000019, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383700638, '2000-08-31 23:59:59', '2012-03-28 17:35:53.943926', 64.6594086, 559, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381365, '1974-05-29 00:00:00', '2011-10-28 20:03:47', 7.0999999, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945325, '1971-01-03 00:00:00', '2011-11-07 23:21:21', 81, 528, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625950, '1974-07-26 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383696331, '2000-05-31 23:59:59', '2012-03-28 17:33:05.159057', 40.1731033, 559, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970964, '1974-07-31 00:00:00', '2011-11-07 23:27:12', 870, 526, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383669474, '2000-02-29 23:59:59', '2012-03-28 17:16:35.883908', -4.7971015, 557, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383699690, '2000-07-31 23:59:59', '2012-03-28 17:35:18.829892', 40.5775185, 559, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380947895, '1969-06-27 00:00:00', '2011-11-07 23:22:02', 580, 527, 6916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487140614, '2013-08-22 09:00:00', '2013-09-04 15:39:54.76078', 10.8000002, 551, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523394, '1981-07-19 00:00:00', '2011-10-28 23:23:47', 10.3000002, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383707010, '2000-12-31 23:59:59', '2012-03-28 17:39:53.373731', 188.664001, 559, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487141322, '2013-08-22 10:00:00', '2013-09-04 15:39:59.910492', 0, 550, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424209, '1989-10-21 00:00:00', '2011-08-29 12:13:18.197183', 0, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963568, '1973-07-30 00:00:00', '2011-11-07 23:25:31', 230, 526, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945306, '1969-07-27 00:00:00', '2011-11-07 23:21:21', 590, 526, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898592, '1975-10-03 00:00:00', '2011-11-07 23:11:09', 170, 526, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380919678, '1982-09-22 09:00:00', '2011-11-07 23:15:14', 597, 526, 6016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383657455, '2000-02-29 23:59:59', '2012-03-28 17:03:46.923905', -2.95274425, 556, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975915, '2006-09-18 00:00:00', '2011-08-29 12:13:18.197183', 15.5, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783796, '2004-08-28 18:00:00', '2011-08-29 12:13:18.197183', 72.6999969, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898622, '1976-04-06 00:00:00', '2011-11-07 23:11:09', 113, 528, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523390, '1981-07-15 00:00:00', '2011-10-28 23:23:47', 7, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689668, '1990-08-07 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493066, '1983-12-23 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963569, '1973-08-30 00:00:00', '2011-11-07 23:25:31', 50, 526, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783789, '2004-08-28 11:00:00', '2011-08-29 12:13:18.197183', 68.5500031, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889655, '1976-04-08 00:00:00', '2011-11-07 23:09:20', 1330, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383684141, '2000-05-31 23:59:59', '2012-03-28 21:06:20.922854', 8.69999981, 558, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889654, '1976-03-09 00:00:00', '2011-11-07 23:09:20', 850, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378381371, '1974-06-04 00:00:00', '2011-10-28 20:03:47', 7.19999981, 517, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493102, '1984-01-28 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383688527, '2000-09-30 23:59:59', '2012-03-28 17:28:04.020829', 13.2097902, 558, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985724, '1974-07-30 00:00:00', '2011-11-07 23:30:01', 670, 526, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554297516, '2015-09-09 20:00:00', '2015-09-09 20:30:02.613521', 10.0799999, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889643, '1975-01-14 00:00:00', '2011-11-07 23:09:20', 1830, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383661371, '2000-06-30 23:59:59', '2012-03-28 17:10:18.154302', 21.2102928, 556, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523387, '1981-07-12 00:00:00', '2011-10-28 23:23:47', 11.8999996, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383671442, '2000-04-30 23:59:59', '2012-03-28 17:17:46.123486', -0.870677054, 557, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874093, '1977-02-10 00:00:00', '2011-11-07 23:04:35', 2170, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852509, '2006-02-10 22:00:00', '2011-08-29 12:13:18.197183', 4.19999981, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380919681, '1983-08-22 15:00:00', '2011-11-07 23:15:14', 966, 526, 6016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852500, '2006-02-10 13:00:00', '2011-08-29 12:13:18.197183', 9.39999962, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821082, '1975-07-30 00:00:00', '2011-10-28 23:50:29', 5.5999999, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915328, '1971-06-01 00:00:00', '2011-11-07 23:14:20', 180, 526, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487139914, '2013-08-22 08:00:00', '2013-09-04 15:39:49.53403', 0.0199999996, 555, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358182, '2015-03-23 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898607, '1975-10-31 00:00:00', '2011-11-07 23:11:09', 540, 527, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963581, '1972-08-31 00:00:00', '2011-11-07 23:25:31', 250, 527, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383665959, '2000-11-30 23:59:59', '2012-03-28 21:11:33.776307', 7.0999999, 556, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702689, '1959-08-05 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963560, '1972-05-29 00:00:00', '2011-11-07 23:25:31', 340, 526, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027783, '1972-02-19 00:00:00', '2011-10-28 19:25:56', -5.4000001, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (2702702, '1959-08-18 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493108, '1983-12-03 00:00:00', '2011-08-29 12:13:18.197183', 0, 430, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383666267, '2000-11-30 23:59:59', '2012-03-28 17:13:15.129216', 2.81871343, 556, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380883279, '1973-05-31 00:00:00', '2011-11-07 23:06:30', 920, 526, 5316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963592, '1972-10-30 00:00:00', '2011-11-07 23:25:31', 0, 528, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951131, '1969-08-31 00:00:00', '2011-11-07 23:22:45', 40, 527, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (209783777, '2004-08-27 23:00:00', '2011-08-29 12:13:18.197183', 96.6999969, 474, 3016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380889649, '1975-07-30 00:00:00', '2011-11-07 23:09:20', 190, 526, 5416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380898604, '1975-07-31 00:00:00', '2011-11-07 23:11:09', 460, 527, 5616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383693991, '2000-03-31 23:59:59', '2012-03-28 17:31:36.443693', 43.8966103, 559, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380919686, '1983-08-22 15:00:00', '2011-11-07 23:15:14', 974, 527, 6016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (57943746, '1980-11-02 00:00:00', '2011-08-29 12:13:18.197183', 10.5, 428, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980224, '1980-06-24 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380996495, '1983-05-16 09:57:00', '2011-11-07 23:32:08', 15, 528, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559787933, '2015-09-24 11:00:00', '2015-09-24 11:30:02.616552', -0.100000001, 442, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380821057, '1975-06-29 00:00:00', '2011-10-28 23:50:29', 9.60000038, 517, 8216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689689, '1990-08-28 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874121, '1974-03-19 00:00:00', '2011-11-07 23:04:35', 0, 528, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358159, '2015-02-28 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383674067, '2000-07-31 23:59:59', '2012-03-28 21:08:25.701961', 10.1000004, 557, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39192021, '1991-05-20 00:00:00', '2011-08-29 12:13:18.197183', 25.5, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383659294, '2000-04-30 23:59:59', '2012-03-28 17:04:53.608196', 13.3358717, 556, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383675900, '2000-09-30 23:59:59', '2012-03-28 17:20:22.932648', 9.71381569, 557, 816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559802832, '2015-09-24 16:00:00', '2015-09-24 16:30:03.045685', 10.5, 446, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903929, '1976-04-27 00:00:00', '2011-11-07 23:12:13', 104, 528, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380945309, '1969-10-27 00:00:00', '2011-11-07 23:21:21', 1100, 526, 6816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523388, '1981-07-13 00:00:00', '2011-10-28 23:23:47', 8.80000019, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559796864, '2015-09-24 14:00:00', '2015-09-24 14:30:03.973543', -0.5, 442, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903909, '1976-07-27 00:00:00', '2011-11-07 23:12:13', 1010, 527, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383679166, '2000-12-31 23:59:59', '2012-03-28 17:22:18.543793', -12.1158361, 557, 1216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493081, '1984-01-07 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (185424201, '1989-10-13 00:00:00', '2011-08-29 12:13:18.197183', 7.19999981, 497, 2516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689703, '1990-09-11 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559790823, '2015-09-24 12:00:00', '2015-09-24 12:30:03.478752', 9, 438, 3416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383652339, '2000-01-31 23:59:59', '2012-03-28 20:58:35.004102', 256.899994, 559, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380963574, '1971-07-30 00:00:00', '2011-11-07 23:25:31', 250, 527, 7316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383660500, '2000-05-31 23:59:59', '2012-03-28 17:05:37.226869', 15.9388971, 556, 1816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (197975927, '2006-09-30 00:00:00', '2011-08-29 12:13:18.197183', 24.5555992, 494, 1916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380903919, '1974-12-30 00:00:00', '2011-11-07 23:12:13', 80, 528, 5716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625960, '1974-08-05 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383663417, '2000-08-31 23:59:59', '2012-03-28 17:11:32.154709', 25.5138836, 556, 1716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027793, '1972-02-29 00:00:00', '2011-10-28 19:25:56', -8.60000038, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554347355, '2015-09-10 13:00:00', '2015-09-10 13:30:02.658145', 14.1899996, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (554256513, '2015-09-09 06:00:00', '2015-09-09 06:30:02.597585', 9.23999977, 434, 3616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277910, '1957-10-22 00:00:00', '2011-08-29 12:13:18.197183', 10, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380883292, '1975-09-25 00:00:00', '2011-11-07 23:06:31', 1020, 527, 5316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383700901, '2000-08-31 23:59:59', '2012-03-28 21:09:34.637795', 155.399994, 559, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (280081759, '1990-12-23 03:00:00', '2011-08-29 12:13:18.197183', -29.3999996, 433, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (487139913, '2013-08-22 08:00:00', '2013-09-04 15:39:49.53403', 17.7999992, 542, 8316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951139, '1966-09-28 00:00:00', '2011-11-14 15:45:05.745204', 40, 527, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852526, '2006-02-11 15:00:00', '2011-08-29 12:13:18.197183', 8.69999981, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380980217, '1979-06-25 00:00:00', '2011-11-07 23:28:58', 0, 528, 7716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (21625954, '1974-07-30 00:00:00', '2011-08-29 12:13:18.197183', 0, 429, 516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277933, '1957-12-15 00:00:00', '2011-08-29 12:13:18.197183', 4.4000001, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383690381, '2000-11-30 23:59:59', '2012-03-28 17:29:11.012254', -1.76678574, 558, 1516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378027779, '1972-02-15 00:00:00', '2011-10-28 19:25:56', -6.19999981, 517, 5216); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (379265185, '1989-08-05 00:00:00', '2011-10-28 21:36:17', 11.1000004, 517, 6516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380523402, '1981-07-27 00:00:00', '2011-10-28 23:23:47', 11, 517, 8016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383672260, '2000-05-31 23:59:59', '2012-03-28 17:18:15.586591', 11.5914593, 557, 1316); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (194852540, '2006-02-12 05:00:00', '2011-08-29 12:13:18.197183', 4.9000001, 497, 2716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383667350, '2000-12-31 23:59:59', '2012-03-28 17:13:54.835247', -1.55405152, 556, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380951138, '1966-08-30 00:00:00', '2011-11-14 15:45:05.745204', 300, 527, 7016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383693546, '2000-03-31 23:59:59', '2012-03-28 21:04:59.871403', 191.600006, 559, 1016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985727, '1975-07-30 00:00:00', '2011-11-07 23:30:01', 540, 526, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277921, '1957-12-03 00:00:00', '2011-08-29 12:13:18.197183', 5.5999999, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (12277929, '1957-12-11 00:00:00', '2011-08-29 12:13:18.197183', 8.30000019, 428, 916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (39191977, '1991-04-06 00:00:00', '2011-08-29 12:13:18.197183', 13, 428, 1416); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383682862, '2000-03-31 23:59:59', '2012-03-28 17:24:38.352971', -5.45659447, 563, 3516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874109, '1974-01-17 00:00:00', '2011-11-07 23:04:35', 0, 527, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380970962, '1973-09-29 00:00:00', '2011-11-07 23:27:12', 460, 526, 7516); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874080, '1975-12-15 00:00:00', '2011-11-07 23:04:35', 1830, 526, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380985737, '1974-07-30 00:00:00', '2011-11-07 23:30:01', 670, 527, 7816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874106, '1973-09-19 00:00:00', '2011-11-07 23:04:35', 230, 527, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (59493093, '1984-01-19 00:00:00', '2011-08-29 12:13:18.197183', 1.39999998, 429, 716); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (66425176, '1989-04-03 00:00:00', '2011-08-29 12:13:18.197183', 3.70000005, 497, 2016); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689686, '1990-08-25 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380874105, '1973-08-17 00:00:00', '2011-11-07 23:04:35', 220, 527, 5116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (559358168, '2015-03-09 00:00:00', '2015-09-23 00:00:22.705906', 0, 431, 1116); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (378689701, '1990-09-09 00:00:00', '2011-10-28 20:38:54', 0, 519, 5816); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383675419, '2000-08-31 23:59:59', '2012-03-28 17:20:05.765127', 9.19560623, 557, 1616); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (380915387, '1971-08-01 00:00:00', '2011-11-07 23:14:20', 760, 527, 5916); +INSERT INTO obs_raw (obs_raw_id, obs_time, mod_time, datum, vars_id, history_id) + VALUES (383693659, '2000-03-31 23:59:59', '2012-03-28 17:31:24.446278', 27.4063168, 559, 1216); +SELECT setval('obs_raw_obs_raw_id_seq'::regclass, max(obs_raw_id)) FROM obs_raw; + + +-- +-- Data for Name: obs_raw_native_flags; Type: TABLE DATA; Schema: subset; Owner: - +-- + +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027796, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874106, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689675, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942232, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889653, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265217, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523395, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945312, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821073, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821067, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523373, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523379, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380922322, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380929112, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945314, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523405, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380922321, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265175, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265177, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942214, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265202, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874104, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380929103, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689698, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380922319, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821054, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381376, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970966, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821047, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942217, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265195, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027764, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380929114, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689688, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874074, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874092, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821080, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523394, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381363, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970981, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523397, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265216, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523390, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381359, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523387, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889647, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942212, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942208, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027794, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874111, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874096, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874108, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874103, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821078, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821075, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027769, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970973, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265218, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970967, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523374, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265173, 47); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027790, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381362, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381369, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380929115, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380929102, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380922324, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380922318, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265186, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689656, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265209, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821062, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821053, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380929111, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381372, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265181, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874093, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889658, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523381, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265206, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821050, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970980, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381370, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874080, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945327, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265213, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689674, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942231, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523393, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821041, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874078, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889650, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381366, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889659, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689682, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874120, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689683, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027803, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689669, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381365, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027792, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523392, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821039, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945323, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942215, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381374, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821055, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523400, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523378, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523389, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821049, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942220, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942209, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265191, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945315, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970975, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381361, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265207, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523409, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689704, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889638, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874088, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874105, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265201, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027793, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821056, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027810, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821077, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821085, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689672, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821070, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380922331, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381360, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027781, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265211, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874094, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381358, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689687, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945328, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970958, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381368, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381354, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874116, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874117, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381371, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689699, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874076, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (59493068, 20); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970963, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821072, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970977, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027808, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821071, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821084, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265183, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970970, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889660, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (381005535, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821040, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523407, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027799, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970983, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942226, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942218, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380929104, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027770, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874119, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523376, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689671, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265221, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027802, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523403, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381377, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821068, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027777, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945324, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381375, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689681, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380929106, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381355, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874097, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689703, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945321, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265210, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874118, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523399, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523385, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942223, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265192, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889654, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689660, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945309, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889655, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945306, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523380, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523382, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874087, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523398, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942229, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265176, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380922327, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874095, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821043, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689686, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942234, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945307, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821083, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380929101, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874084, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381364, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874102, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889656, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874101, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689668, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874110, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689665, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689655, 47); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380929113, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821064, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027787, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874109, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027791, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689685, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027795, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889646, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027772, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381367, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265199, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523401, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523375, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523410, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821063, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821045, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689693, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970974, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265174, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942211, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942222, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523383, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689684, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027780, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689677, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027765, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889637, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821038, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821058, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945305, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942207, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942225, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380929109, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874100, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689664, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380922325, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523391, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265193, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689670, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (381005536, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874089, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874107, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945326, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523388, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874098, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821042, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380929108, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889649, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689662, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874115, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027785, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874077, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689694, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689663, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689701, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265185, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821046, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945318, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027788, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970968, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027800, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970978, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821057, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265182, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970979, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027805, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945325, 42); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689657, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942213, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380922328, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821074, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874073, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942210, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027801, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523371, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381353, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265198, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970960, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265215, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889643, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265180, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945308, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874112, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689673, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945319, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821044, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874090, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821059, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380929100, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821079, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027807, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689676, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523384, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821061, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523377, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689689, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265208, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027804, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380922329, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889645, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265204, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970961, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889651, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945310, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265205, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027806, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889642, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821060, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027784, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265203, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945313, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027774, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889639, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689691, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942236, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874081, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027768, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689702, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265222, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874083, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874082, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874114, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889648, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821076, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523404, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689692, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889640, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027782, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265188, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381373, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689667, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265178, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380922330, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821081, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381356, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689666, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970976, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945311, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378381357, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265187, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523370, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689697, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265189, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380929110, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265194, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523386, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889641, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689700, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874086, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265200, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265214, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874121, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889657, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523372, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689696, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689695, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874079, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380922320, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821066, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380929105, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821082, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874085, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380922323, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027809, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942228, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821052, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945316, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265197, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523406, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523369, 47); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027767, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942235, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265196, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689658, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027778, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970964, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523411, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874113, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970972, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889652, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027763, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945317, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523402, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874122, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027786, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942227, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265184, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942224, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945320, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027779, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970982, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689680, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027797, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889644, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874091, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265219, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523408, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027783, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265179, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027762, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027761, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970959, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265190, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689690, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027771, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380523396, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380945322, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970971, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970965, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821048, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027773, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265220, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821051, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380889636, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689679, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027766, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380922326, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821065, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874075, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970962, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (379265212, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689659, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942233, 42); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380929107, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027776, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027789, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689661, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378689678, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027775, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380970969, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942219, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942216, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (378027798, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380874099, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942221, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (59493084, 20); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380942230, 40); +INSERT INTO obs_raw_native_flags (obs_raw_id, native_flag_id) + VALUES (380821069, 40); + + +-- +-- Data for Name: obs_raw_pcic_flags; Type: TABLE DATA; Schema: subset; Owner: - +-- + + +-- +-- PostgreSQL database dump complete +-- + diff --git a/pycds/database.py b/pycds/database.py index 4d8a3296..8f5abb7c 100644 --- a/pycds/database.py +++ b/pycds/database.py @@ -10,7 +10,7 @@ def check_migration_version( - executor, schema_name=get_schema_name(), version="758be4f4ce0f" + executor, schema_name=get_schema_name(), version="7244176be9fa" ): """Check that the migration version of the database schema is compatible with the current version of this package. diff --git a/pycds/orm/tables.py b/pycds/orm/tables.py index b070c8db..71faaf83 100644 --- a/pycds/orm/tables.py +++ b/pycds/orm/tables.py @@ -612,12 +612,25 @@ class DerivedValue(Base): class ClimatologicalPeriod(Base): - __tablename__ = "climatological_period" - climatological_period_id = Column(Integer, primary_key=True) + __tablename__ = "climo_period" + id = Column("climo_period_id", Integer, primary_key=True) start_date = Column(DateTime, nullable=False) end_date = Column(DateTime, nullable=False) +class ClimatologicalPeriodHistory(Base): + __tablename__ = hx_table_name(ClimatologicalPeriod.__tablename__, schema=None) + climo_period_id = Column(Integer, nullable=False, index=True) + start_date = Column(DateTime, nullable=False) + end_date = Column(DateTime, nullable=False) + mod_time = Column(DateTime, nullable=False, server_default=func.now()) + mod_user = Column( + String(64), nullable=False, server_default=literal_column("current_user") + ) + deleted = Column(Boolean, default=False) + climo_period_hx_id = Column(Integer, primary_key=True) + + class ClimatologicalStation(Base): # TODO: Columns in this table parallel those in meta_station and meta_history. # They differ in the following ways, which may be questioned: @@ -627,19 +640,33 @@ class ClimatologicalStation(Base): # prevent entry of erroneous values that just happen to be very long?) # # - None are nullable. In contrast, most in the model tables are. - __tablename__ = "climatological_station" - climatological_station_id = Column(Integer, primary_key=True) - type = Column(Enum("long-record", "composite", "prism", name="climatological_station_type_enum"), nullable=False) + __tablename__ = "climo_station" + id = Column("climo_station_id", Integer, primary_key=True) + type = Column(Enum("long-record", "composite", "prism", name="climo_station_type_enum"), nullable=False) basin_id = Column(Integer, nullable=True) comments = Column(String, nullable=False) - pass +class ClimatologicalStationHistory(Base): + __tablename__ = hx_table_name(ClimatologicalStation.__tablename__, schema=None) + climo_station_id = Column(Integer, nullable=False, index=True) + type = Column(Enum("long-record", "composite", "prism", name="climo_station_type_enum"), nullable=False) + basin_id = Column(Integer, nullable=True) + comments = Column(String, nullable=False) + mod_time = Column(DateTime, nullable=False, server_default=func.now()) + mod_user = Column( + String(64), nullable=False, server_default=literal_column("current_user") + ) + deleted = Column(Boolean, default=False) + climo_station_hx_id = Column(Integer, primary_key=True) + climo_period_hx_id = Column( + Integer, ForeignKey("climo_period_hx.climo_period_hx_id") + ) class ClimatologicalStationXHistory(Base): - __tablename__ = "climatological_station_x_meta_history" - climatological_station_id = Column( + __tablename__ = "climo_stn_x_hist" + climo_station_id = Column( Integer, - ForeignKey("climatological_station.climatological_station_id"), + ForeignKey("climo_station.climo_station_id"), primary_key=True, ) history_id = Column( @@ -647,7 +674,7 @@ class ClimatologicalStationXHistory(Base): ForeignKey("meta_history.history_id"), primary_key=True, ) - role = Column(Enum("base", "joint", name="climatological_station_role_enum"), nullable=False) + role = Column(Enum("base", "joint", name="climo_station_role_enum"), nullable=False) class ClimatologicalVariable(Base): @@ -659,9 +686,21 @@ class ClimatologicalVariable(Base): # prevent entry of erroneous values that just happen to be very long?) # # - None are nullable. In contrast, most in the model tables are. - __tablename__ = "climatological_variable" + __tablename__ = "climo_variable" + + id = Column("climo_variable_id", Integer, primary_key=True) + duration = mapped_column(Enum("annual", "seasonal", "monthly", name="climatology_duration_enum"), nullable=False) + unit = Column(String, nullable=False) + standard_name = Column(String, nullable=False) + display_name = Column(String, nullable=False) + short_name = Column(String, nullable=False) + cell_methods = Column(String, nullable=False) + net_var_name = Column(CIText(), nullable=True) + +class ClimatologicalVariableHistory(Base): + __tablename__ = hx_table_name(ClimatologicalVariable.__tablename__, schema=None) - climatological_variable_id = Column(Integer, primary_key=True) + climo_variable_id = Column(Integer, nullable=False, index=True) duration = mapped_column(Enum("annual", "seasonal", "monthly", name="climatology_duration_enum"), nullable=False) unit = Column(String, nullable=False) standard_name = Column(String, nullable=False) @@ -669,19 +708,51 @@ class ClimatologicalVariable(Base): short_name = Column(String, nullable=False) cell_methods = Column(String, nullable=False) net_var_name = Column(CIText(), nullable=True) + mod_time = Column(DateTime, nullable=False, server_default=func.now()) + mod_user = Column( + String(64), nullable=False, server_default=literal_column("current_user") + ) + deleted = Column(Boolean, default=False) + climo_variable_hx_id = Column(Integer, primary_key=True) class ClimatologicalValue(Base): - __tablename__ = "climatological_value" + __tablename__ = "climo_value" - climatological_value_id = Column(Integer, primary_key=True) + id = Column("climo_value_id", Integer, primary_key=True) value_time = Column(DateTime, nullable=False) value = Column(Float, nullable=False) num_contributing_years = Column(Integer, nullable=False) - climatological_variable_id = Column( - Integer, ForeignKey("climatological_variable.climatological_variable_id") + climo_variable_id = Column( + Integer, ForeignKey("climo_variable.climo_variable_id") ) - climatological_station_id = Column( - Integer, ForeignKey("climatological_station.climatological_station_id") + climo_station_id = Column( + Integer, ForeignKey("climo_station.climo_station_id") ) mod_time = Column(DateTime, nullable=False) + +class ClimatologicalValueHistory(Base): + __tablename__ = hx_table_name(ClimatologicalValue.__tablename__, schema=None) + + climo_value_id = Column(Integer, primary_key=True) + value_time = Column(DateTime, nullable=False) + value = Column(Float, nullable=False) + num_contributing_years = Column(Integer, nullable=False) + climo_variable_id = Column( + Integer, ForeignKey("climo_variable.climo_variable_id") + ) + climo_station_id = Column( + Integer, ForeignKey("climo_station.climo_station_id") + ) + mod_time = Column(DateTime, nullable=False, server_default=func.now()) + mod_user = Column( + String(64), nullable=False, server_default=literal_column("current_user") + ) + deleted = Column(Boolean, default=False) + climo_value_hx_id = Column(Integer, primary_key=True) + climo_variable_hx_id = Column( + Integer, ForeignKey("climo_variable_hx.climo_variable_hx_id") + ) + climo_station_hx_id = Column( + Integer, ForeignKey("climo_station_hx.climo_station_hx_id") + ) \ No newline at end of file diff --git a/pytest.ini b/pytest.ini deleted file mode 100644 index f265fa62..00000000 --- a/pytest.ini +++ /dev/null @@ -1,3 +0,0 @@ -[pytest] -filterwarnings = - ignore:datetime.datetime diff --git a/tests/alembic_migrations/helpers.py b/tests/alembic_migrations/helpers.py index 8b689e0d..9473b458 100644 --- a/tests/alembic_migrations/helpers.py +++ b/tests/alembic_migrations/helpers.py @@ -95,7 +95,7 @@ def check_history_tracking_upgrade( connection: Connection, table_name: str, pri_key_name: str, - foreign_tables: list[tuple[str, str]], + foreign_tables: list[tuple[str, str]] | None, schema_name: str, pri_columns_added: tuple[tuple[str, sqlalchemy.types]] = ( ("mod_time", TIMESTAMP), @@ -123,9 +123,10 @@ def check_history_tracking_upgrade( check_column(hx_table, col.name, col.type.__class__) check_column(hx_table, "deleted", BOOLEAN) check_column(hx_table, hx_id_name(table_name), INTEGER) - for ft_table_name, ft_key_name in foreign_tables: - check_column(hx_table, ft_key_name, INTEGER) - check_column(hx_table, hx_id_name(ft_table_name), INTEGER) + if foreign_tables: + for ft_table_name, ft_key_name in foreign_tables: + check_column(hx_table, ft_key_name, INTEGER) + check_column(hx_table, hx_id_name(ft_table_name), INTEGER) # History table indexes. This test does not check index type, but it # does check what columns are in each index. diff --git a/tests/alembic_migrations/test_check_migration_version.py b/tests/alembic_migrations/test_check_migration_version.py index eece2086..cfbb79f6 100644 --- a/tests/alembic_migrations/test_check_migration_version.py +++ b/tests/alembic_migrations/test_check_migration_version.py @@ -8,7 +8,7 @@ @pytest.mark.update20 def test_get_current_head(): - assert get_current_head() == "758be4f4ce0f" + assert get_current_head() == "7244176be9fa" @pytest.mark.update20 diff --git a/tests/alembic_migrations/test_migrations.py b/tests/alembic_migrations/test_migrations.py index 77ad02de..d62f3d53 100644 --- a/tests/alembic_migrations/test_migrations.py +++ b/tests/alembic_migrations/test_migrations.py @@ -73,8 +73,8 @@ def test_model_and_migration_schemas_are_the_same( # Currently ignoring these ENUMs, despite directly creating them they don't seem # to be seen as available in the migrations version of the database. result = compare(alembic_engine.url, uri_right, ignores=[ - '*.enum.climatological_station_type_enum', + '*.enum.climo_station_type_enum', '*.enum.climatology_duration_enum', - '*.enum.climatological_station_role_enum']) + '*.enum.climo_station_role_enum']) assert result.is_match diff --git a/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/__init__.py b/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_on_real_tables/conftest.py b/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_on_real_tables/conftest.py new file mode 100644 index 00000000..99588ed7 --- /dev/null +++ b/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_on_real_tables/conftest.py @@ -0,0 +1,8 @@ + +import pytest + + +@pytest.fixture(scope="module") +def target_revision(): + # Migrate initially to here + return "758be4f4ce0f" diff --git a/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_on_real_tables/test_on_real_tables.py b/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_on_real_tables/test_on_real_tables.py new file mode 100644 index 00000000..c7327a32 --- /dev/null +++ b/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_on_real_tables/test_on_real_tables.py @@ -0,0 +1,205 @@ +""" +These tests simulate applying history tracking to metadata tables containing +data, as we would find in a real migration. We do this by populating the tables +with data, applying the migration, and then examining the resulting history +tables. + +The behaviour of the history-tracking features proper (trigger functions, etc.) +is tested in detail in the migration that installs them. + +These tests test that this migration correctly modifies the base tables and creates +the history tables, and attaches the trigger functions to them. Then we do some cursory +tests to verify they are actually being called and recording history records. +""" + +import datetime +import logging + +import pytest +from alembic import command +from sqlalchemy import text +from sqlalchemy.orm import Session + +from pycds import ( + ClimatologicalPeriod, + ClimatologicalPeriodHistory, + get_schema_name, +) +from pycds.database import check_migration_version, get_schema_item_names +from pycds.orm.tables import ClimatologicalVariable, ClimatologicalVariableHistory +from tests.alembic_migrations.helpers import ( + check_history_table_initial_contents, + check_history_tracking, +) + +logging.getLogger("sqlalchemy.engine").setLevel(logging.CRITICAL) + +schema_name = get_schema_name() + + +@pytest.mark.parametrize( + "primary, history, primary_id, columns, foreign_tables, insert_info, update_info, delete_info", + [ + ( + ClimatologicalPeriod, + ClimatologicalPeriodHistory, + "climo_period_id", + ("start_date", "end_date"), + None, + # insert tests + { + "values": { + "start_date": "2000-01-01 00:00:00", + "end_date": "2010-12-31 00:00:00", + }, + "check": { + "start_date": datetime.datetime(2000, 1, 1, 0, 0, 0), + "end_date": datetime.datetime(2010, 12, 31, 0, 0, 0), + "deleted": False, + }, + }, + # update tests + { + "where": {"start_date": "2000-01-01 00:00:00"}, + "values": {"start_date": "2000-01-02 00:00:00", "end_date": "2012-12-31 00:00:00"}, + "check": { + "start_date": datetime.datetime(2000, 1, 2, 0, 0, 0), + "end_date": datetime.datetime(2012, 12, 31, 0, 0, 0), + "deleted": False, + }, + }, + # delete tests + { + "where": {"start_date": "2000-01-02 00:00:00"}, + "check": { + "start_date": datetime.datetime(2000, 1, 2, 0, 0, 0), + "end_date": datetime.datetime(2012, 12, 31, 0, 0, 0), + "deleted": True, + }, + }, + ), + ( + ClimatologicalVariable, + ClimatologicalVariableHistory, + "climo_variable_id", + ("duration", "unit", "standard_name", "display_name", "short_name", "cell_methods", "net_var_name"), + None, + # insert tests + { + "values": { + "duration": "annual", + "unit": "mm", + "standard_name": "precipitation_amount", + "display_name": "Precipitation Amount", + "short_name": "precip_amt", + "cell_methods": "time: sum", + "net_var_name": "precip_amt", + }, + "check": { + "duration": "annual", + "unit": "mm", + "standard_name": "precipitation_amount", + "display_name": "Precipitation Amount", + "short_name": "precip_amt", + "cell_methods": "time: sum", + "net_var_name": "precip_amt", + "deleted": False, + }, + }, + # update tests + { + "where": {"standard_name": "precipitation_amount"}, + "values": { + "duration": "monthly", + "unit": "cm", + "standard_name": "precipitation_flux", + "display_name": "Precipitation Flux", + "short_name": "precip_flux", + "cell_methods": "time: mean", + "net_var_name": "precip_flux", + }, + "check": { + "duration": "monthly", + "unit": "cm", + "standard_name": "precipitation_flux", + "display_name": "Precipitation Flux", + "short_name": "precip_flux", + "cell_methods": "time: mean", + "net_var_name": "precip_flux", + "deleted": False, + }, + }, + # delete tests + { + "where": {"standard_name": "precipitation_flux"}, + "check": { + "duration": "monthly", + "unit": "cm", + "standard_name": "precipitation_flux", + "display_name": "Precipitation Flux", + "short_name": "precip_flux", + "cell_methods": "time: mean", + "net_var_name": "precip_flux", + "deleted": True, + }, + }, + ) + ] +) +@pytest.mark.usefixtures("db_with_large_data") +def test_migration_results( + alembic_engine, + alembic_runner, + primary, + history, + primary_id, + columns, + foreign_tables, + insert_info, + update_info, + delete_info, + schema_name, +): + """ + Test that contents of history tables are as expected, and that history tracking is + working. + + The local conftest sets us up to revision 758be4f4ce0f = 7244176be9fa - 1. + The database contains data loaded by `sesh_with_large_data` before we migrate to + 758be4f4ce0f. Then we migrate and check the results by comparing a specified + subset of the columns shared by the two tables. + """ + + with alembic_engine.connect() as conn: + check_migration_version(conn, version="758be4f4ce0f") + + # Now upgrade to 7244176be9fa + alembic_runner.migrate_up_one() + + with Session(alembic_engine) as conn: + # as a result of some side effect in the migration the search path + # is being erronously set to "$user", public. I don't see us doing this in our code, + # and the side effect happened when modifying the db_with_large_data fixture, + # so I'm being practical and just forcing it to the right value here. + conn.execute(text(f"SET search_path TO {schema_name}, public")) + check_migration_version(conn, version="7244176be9fa") + + # Check the resulting tables + check_history_table_initial_contents( + conn, + primary, + history, + primary_id, + columns, + foreign_tables, + schema_name, + ) + check_history_tracking( + conn, + primary, + history, + insert_info, + update_info, + delete_info, + schema_name, + ) diff --git a/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_smoke.py b/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_smoke.py new file mode 100644 index 00000000..d4fc814b --- /dev/null +++ b/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_smoke.py @@ -0,0 +1,58 @@ +"""Smoke tests""" + +# -*- coding: utf-8 -*- +import logging +import pytest +from alembic import command +from sqlalchemy import Table, MetaData, text +from sqlalchemy.types import TIMESTAMP, VARCHAR, BOOLEAN, INTEGER + +from pycds.alembic.change_history_utils import ( + main_table_name, + hx_table_name, + hx_id_name, +) +from pycds.database import get_schema_item_names +from tests.alembic_migrations.helpers import ( + check_history_tracking_upgrade, + check_history_tracking_downgrade, +) + +logger = logging.getLogger("tests") + + +table_info = ( + # table_name, primary_key_name, foreign_keys, extra_indexes + ("climo_period", "climo_period_id", None), + ("climo_station", "climo_station_id", [("climo_period", "climo_period_id"), ]), + # TODO: weird one + # ("climo_station_x_meta_history", [("climo_station_id", "history_id")], [("climo_station", "climo_period_id"), ("meta_history", "history_id")], None), + ("climo_variable", "climo_variable_id", None), + ("climo_value", "climo_value_id", [("climo_variable", "climo_variable_id"), ("climo_station", "climo_station_id")]), +) + + +@pytest.mark.update20 +def test_upgrade(alembic_engine, alembic_runner, schema_name): + """Test the schema migration to 7244176be9fa.""" + alembic_runner.migrate_up_to("7244176be9fa") + + with alembic_engine.connect() as conn: + # Check that tables have been altered or created as expected. + for table_name, pri_key_name, foreign_tables in table_info: + check_history_tracking_upgrade( + conn, table_name, pri_key_name, foreign_tables, schema_name + ) + + +@pytest.mark.update20 +def test_downgrade(alembic_engine, alembic_runner, schema_name): + """Test the schema migration from 7244176be9fa to previous rev.""" + + alembic_runner.migrate_up_to("7244176be9fa") + alembic_runner.migrate_down_one() + + with alembic_engine.connect() as conn: + # Check that tables have been altered or dropped as expected. + for table_name, _, _ in table_info: + check_history_tracking_downgrade(conn, table_name, schema_name) diff --git a/tests/alembic_migrations/versions/v_8c05da87cb79_add_hx_tkg_to_obs_raw/test_on_real_tables/test_on_real_tables.py b/tests/alembic_migrations/versions/v_8c05da87cb79_add_hx_tkg_to_obs_raw/test_on_real_tables/test_on_real_tables.py index 3e11bbed..ce2a6ae1 100644 --- a/tests/alembic_migrations/versions/v_8c05da87cb79_add_hx_tkg_to_obs_raw/test_on_real_tables/test_on_real_tables.py +++ b/tests/alembic_migrations/versions/v_8c05da87cb79_add_hx_tkg_to_obs_raw/test_on_real_tables/test_on_real_tables.py @@ -135,7 +135,7 @@ def test_table_contents( check_migration_version(conn, version="a59d64cf16ca") # assert table_count(pri_table) > 0 # This blocks upgrade that follows. Sigh - insert_crmp_data(conn) + insert_crmp_data(conn, alembic_runner) # Now upgrade to a59d64cf16ca alembic_runner.migrate_up_one() diff --git a/tests/alembic_migrations/versions/v_a59d64cf16ca_add_hx_tkg_to_main_metadata_tables/test_on_real_tables/test_on_real_tables.py b/tests/alembic_migrations/versions/v_a59d64cf16ca_add_hx_tkg_to_main_metadata_tables/test_on_real_tables/test_on_real_tables.py index 2120fe3d..0859323c 100644 --- a/tests/alembic_migrations/versions/v_a59d64cf16ca_add_hx_tkg_to_main_metadata_tables/test_on_real_tables/test_on_real_tables.py +++ b/tests/alembic_migrations/versions/v_a59d64cf16ca_add_hx_tkg_to_main_metadata_tables/test_on_real_tables/test_on_real_tables.py @@ -272,8 +272,12 @@ def test_migration_results( alembic_runner.migrate_up_one() with Session(alembic_engine) as conn: + # as a result of some side effect in the migration the search path + # is being erronously set to "$user", public. I don't see us doing this in our code, + # and the side effect happened when modifying the db_with_large_data fixture, + # so I'm being practical and just forcing it to the right value here. + conn.execute(text(f"SET search_path TO {schema_name}, public")) check_migration_version(conn, version="a59d64cf16ca") - # Check the resulting tables check_history_table_initial_contents( conn, diff --git a/tests/basics/test_testdb.py b/tests/basics/test_testdb.py index 6e156447..d49b0a9e 100644 --- a/tests/basics/test_testdb.py +++ b/tests/basics/test_testdb.py @@ -23,7 +23,7 @@ def test_can_create_test_db(pycds_sesh): assert len(q.all()) == 2 -def test_can_create_crmp_subset_db(pycds_sesh): - insert_crmp_data(pycds_sesh) +def test_can_create_crmp_subset_db(alembic_runner, pycds_sesh): + insert_crmp_data(pycds_sesh, alembic_runner) q = pycds_sesh.query(History) assert q.count() > 0 diff --git a/tests/db_helpers/data_dbs.py b/tests/db_helpers/data_dbs.py index 8bc972b7..d63e8976 100644 --- a/tests/db_helpers/data_dbs.py +++ b/tests/db_helpers/data_dbs.py @@ -15,7 +15,7 @@ def db_with_large_data(alembic_engine, alembic_runner, target_revision, schema_n logger = logging.getLogger("sqlalchemy.engine") save_level = logger.level logger.setLevel(logging.CRITICAL) - insert_crmp_data(conn) + insert_crmp_data(conn, alembic_runner) logger.setLevel(save_level) return alembic_engine @@ -32,7 +32,7 @@ def db_with_large_data_s( logger = logging.getLogger("sqlalchemy.engine") save_level = logger.level logger.setLevel(logging.CRITICAL) - insert_crmp_data(conn) + insert_crmp_data(conn, alembic_runner_s) logger.setLevel(save_level) return alembic_engine_s diff --git a/tests/db_helpers/db.py b/tests/db_helpers/db.py index 35020e2c..d0697aba 100644 --- a/tests/db_helpers/db.py +++ b/tests/db_helpers/db.py @@ -8,7 +8,7 @@ def set_search_path(engine): with engine.begin() as conn: - conn.execute(text(f"SET search_path TO public")) + conn.execute(text(f"SET search_path TO crmp, public")) @fixture(scope="session") diff --git a/tests/helpers.py b/tests/helpers.py index 870519d9..dcbf8d28 100644 --- a/tests/helpers.py +++ b/tests/helpers.py @@ -284,13 +284,25 @@ def action(sesh): with_schema_name(sesh, schema_name, action) - -def insert_crmp_data(sesh, schema_name=get_schema_name()): +def insert_crmp_data(sesh, alembic_runner, schema_name=get_schema_name()): """Insert data from CRMP database dump into into tables in named schema.""" - def action(sesh): - with files("pycds").joinpath("data/crmp_subset_data.sql").open("r") as f: - data = f.read() - sesh.execute(text(data)) + def action(revision): + def internal(sesh): + with files("pycds").joinpath(f"data/data_{revision}.sql").open("r") as f: + schema = f.read() + sesh.execute(text(schema)) + + return internal - with_schema_name(sesh, schema_name, action) + # The alembic_runner's history property is an ordered set of revisions + # so we can rely on this to allow us to just run the data scripts that we + # need when generating the fixture + + for revision in alembic_runner.history.revisions: + + if files("pycds").joinpath(f"data/data_{revision}.sql").is_file(): + with_schema_name(sesh, schema_name, action(revision)) + + if revision == alembic_runner.current: + break From 3d0b42a117cf9bf17a2006033f82a4b1e7acffca Mon Sep 17 00:00:00 2001 From: John Date: Fri, 26 Sep 2025 16:50:42 +0000 Subject: [PATCH 17/21] black format --- pycds/alembic/change_history_utils.py | 11 ++-- ...pply_hx_tracking_to_multi_climo_normals.py | 29 +++++++-- ...support_multiple_climatological_normals.py | 61 +++++++++++++------ ...c577b_add_varsperhistory_native_matview.py | 1 - pycds/orm/tables.py | 48 +++++++++------ tests/alembic_migrations/test_migrations.py | 15 +++-- .../test_on_real_tables/conftest.py | 1 - .../test_on_real_tables.py | 21 +++++-- .../test_smoke.py | 17 +++++- .../test_smoke.py | 8 +-- .../test_on_real_tables.py | 2 +- tests/helpers.py | 3 +- 12 files changed, 147 insertions(+), 70 deletions(-) diff --git a/pycds/alembic/change_history_utils.py b/pycds/alembic/change_history_utils.py index 0db2d0d6..0968044c 100644 --- a/pycds/alembic/change_history_utils.py +++ b/pycds/alembic/change_history_utils.py @@ -63,7 +63,9 @@ def drop_history_cols_from_primary( op.execute(f"ALTER TABLE {main_table_name(collection_name)} {drop_columns}") -def create_history_table(collection_name: str, foreign_tables: list[tuple[str, str]] | None): +def create_history_table( + collection_name: str, foreign_tables: list[tuple[str, str]] | None +): # Create the history table. We can't use Alembic create_table here because it doesn't # support the LIKE syntax we need. columns = ", ".join( @@ -105,7 +107,8 @@ def create_history_table_indexes( for columns in ( # Index on primary table primary key, mod_time, mod_user - tuple([x] for x in pri_id_name) + (["mod_time"], ["mod_user"]) + tuple([x] for x in pri_id_name) + + (["mod_time"], ["mod_user"]) # Index on all foreign main table primary keys + tuple([ft_pk_name] for _, ft_pk_name in (foreign_tables or tuple())) # Index on all foreign history table primary keys @@ -183,8 +186,8 @@ def populate_history_table( if isinstance(pri_id_name, str): pri_id_name = [pri_id_name] - - pri_order_clause = ", ".join(f"main.{idn}" for idn in pri_id_name) + + pri_order_clause = ", ".join(f"main.{idn}" for idn in pri_id_name) stmt = f""" {"WITH" if len(foreign_tables) > 0 else ""} diff --git a/pycds/alembic/versions/7244176be9fa_apply_hx_tracking_to_multi_climo_normals.py b/pycds/alembic/versions/7244176be9fa_apply_hx_tracking_to_multi_climo_normals.py index ddad096f..de682998 100644 --- a/pycds/alembic/versions/7244176be9fa_apply_hx_tracking_to_multi_climo_normals.py +++ b/pycds/alembic/versions/7244176be9fa_apply_hx_tracking_to_multi_climo_normals.py @@ -37,14 +37,35 @@ table_info = ( # table_name, primary_key_name, foreign_keys, extra_indexes ("climo_period", "climo_period_id", None, None), - ("climo_station", "climo_station_id", [("climo_period", "climo_period_id"), ], None), - ("climo_stn_x_hist", ["climo_station_id", "history_id"], [("climo_station", "climo_station_id"), ("meta_history", "history_id")], None), + ( + "climo_station", + "climo_station_id", + [ + ("climo_period", "climo_period_id"), + ], + None, + ), + ( + "climo_stn_x_hist", + ["climo_station_id", "history_id"], + [("climo_station", "climo_station_id"), ("meta_history", "history_id")], + None, + ), ("climo_variable", "climo_variable_id", None, None), - ("climo_value", "climo_value_id", [("climo_variable", "climo_variable_id"), ("climo_station", "climo_station_id")], None), + ( + "climo_value", + "climo_value_id", + [ + ("climo_variable", "climo_variable_id"), + ("climo_station", "climo_station_id"), + ], + None, + ), ) + def upgrade(): - + # We have to set the search_path so that the trigger functions fired when # the history table is populated can find the functions that they call. op.get_bind().execute(sa.text(f"SET search_path TO {schema_name}, public")) diff --git a/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py b/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py index a17cdda5..5e99d387 100644 --- a/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py +++ b/pycds/alembic/versions/758be4f4ce0f_support_multiple_climatological_normals.py @@ -39,6 +39,7 @@ # added to the database. That could be done in this migration or in a separate subsequent # migration. + def upgrade(): op.create_table( @@ -47,9 +48,11 @@ def upgrade(): Column("start_date", DateTime, nullable=False), Column("end_date", DateTime, nullable=False), schema=schema_name, - ) + ) - Enum("long-record", "composite", "prism", name="climo_station_type_enum").create(op.get_bind()) + Enum("long-record", "composite", "prism", name="climo_station_type_enum").create( + op.get_bind() + ) op.create_table( # TODO: Columns in this table parallel those in meta_station and meta_history. @@ -63,16 +66,22 @@ def upgrade(): "climo_station", # TODO: Revise name? Column("climo_station_id", Integer, primary_key=True), Column( - "type", PG_ENUM("long-record", "composite", "prism", name="climo_station_type_enum", create_type=False), nullable=False + "type", + PG_ENUM( + "long-record", + "composite", + "prism", + name="climo_station_type_enum", + create_type=False, + ), + nullable=False, ), Column("basin_id", Integer, nullable=True), Column("comments", String, nullable=False), Column( "climo_period_id", Integer, - ForeignKey( - f"{schema_name}.climo_period.climo_period_id" - ), + ForeignKey(f"{schema_name}.climo_period.climo_period_id"), nullable=False, ), schema=schema_name, @@ -85,9 +94,7 @@ def upgrade(): Column( "climo_station_id", Integer, - ForeignKey( - f"{schema_name}.climo_station.climo_station_id" - ), + ForeignKey(f"{schema_name}.climo_station.climo_station_id"), primary_key=True, ), Column( @@ -96,11 +103,17 @@ def upgrade(): ForeignKey(f"{schema_name}.meta_history.history_id"), primary_key=True, ), - Column("role", PG_ENUM("base", "joint", name="climo_station_role_enum", create_type=False), nullable=False), + Column( + "role", + PG_ENUM("base", "joint", name="climo_station_role_enum", create_type=False), + nullable=False, + ), schema=schema_name, ) - Enum("annual", "seasonal", "monthly", name="climo_duration_enum").create(op.get_bind()) + Enum("annual", "seasonal", "monthly", name="climo_duration_enum").create( + op.get_bind() + ) op.create_table( # TODO: Columns in this table parallel those in meta_vars. @@ -114,7 +127,15 @@ def upgrade(): "climo_variable", Column("climo_variable_id", Integer, primary_key=True), Column( - "duration", PG_ENUM("annual", "seasonal", "monthly", name="climo_duration_enum", create_type=False), nullable=False + "duration", + PG_ENUM( + "annual", + "seasonal", + "monthly", + name="climo_duration_enum", + create_type=False, + ), + nullable=False, ), Column("unit", String, nullable=False), Column("standard_name", String, nullable=False), @@ -134,16 +155,12 @@ def upgrade(): Column( "climo_variable_id", Integer, - ForeignKey( - f"{schema_name}.climo_variable.climo_variable_id" - ), + ForeignKey(f"{schema_name}.climo_variable.climo_variable_id"), ), Column( "climo_station_id", Integer, - ForeignKey( - f"{schema_name}.climo_station.climo_station_id" - ), + ForeignKey(f"{schema_name}.climo_station.climo_station_id"), ), schema=schema_name, ) @@ -152,9 +169,13 @@ def upgrade(): def downgrade(): op.drop_table("climo_value", schema=schema_name) op.drop_table("climo_variable", schema=schema_name) - Enum("annual", "seasonal", "monthly", name="climo_duration_enum").drop(op.get_bind()) + Enum("annual", "seasonal", "monthly", name="climo_duration_enum").drop( + op.get_bind() + ) op.drop_table("climo_stn_x_hist", schema=schema_name) Enum("base", "joint", name="climo_station_role_enum").drop(op.get_bind()) op.drop_table("climo_station", schema=schema_name) - Enum("long-record", "composite", "prism", name="climo_station_type_enum").drop(op.get_bind()) + Enum("long-record", "composite", "prism", name="climo_station_type_enum").drop( + op.get_bind() + ) op.drop_table("climo_period", schema=schema_name) diff --git a/pycds/alembic/versions/7a3b247c577b_add_varsperhistory_native_matview.py b/pycds/alembic/versions/7a3b247c577b_add_varsperhistory_native_matview.py index 972838f1..0c91dc27 100644 --- a/pycds/alembic/versions/7a3b247c577b_add_varsperhistory_native_matview.py +++ b/pycds/alembic/versions/7a3b247c577b_add_varsperhistory_native_matview.py @@ -36,7 +36,6 @@ schema_name = get_schema_name() - def drop_dependent_objects(): """ Drop dependent objects that may exist in the database. diff --git a/pycds/orm/tables.py b/pycds/orm/tables.py index 71faaf83..0cee43a5 100644 --- a/pycds/orm/tables.py +++ b/pycds/orm/tables.py @@ -29,7 +29,7 @@ String, Date, Index, - Enum + Enum, ) from sqlalchemy import DateTime, Boolean, ForeignKey, Numeric, Interval from sqlalchemy.dialects.postgresql import ARRAY @@ -622,7 +622,7 @@ class ClimatologicalPeriodHistory(Base): __tablename__ = hx_table_name(ClimatologicalPeriod.__tablename__, schema=None) climo_period_id = Column(Integer, nullable=False, index=True) start_date = Column(DateTime, nullable=False) - end_date = Column(DateTime, nullable=False) + end_date = Column(DateTime, nullable=False) mod_time = Column(DateTime, nullable=False, server_default=func.now()) mod_user = Column( String(64), nullable=False, server_default=literal_column("current_user") @@ -642,14 +642,21 @@ class ClimatologicalStation(Base): # - None are nullable. In contrast, most in the model tables are. __tablename__ = "climo_station" id = Column("climo_station_id", Integer, primary_key=True) - type = Column(Enum("long-record", "composite", "prism", name="climo_station_type_enum"), nullable=False) + type = Column( + Enum("long-record", "composite", "prism", name="climo_station_type_enum"), + nullable=False, + ) basin_id = Column(Integer, nullable=True) comments = Column(String, nullable=False) + class ClimatologicalStationHistory(Base): __tablename__ = hx_table_name(ClimatologicalStation.__tablename__, schema=None) climo_station_id = Column(Integer, nullable=False, index=True) - type = Column(Enum("long-record", "composite", "prism", name="climo_station_type_enum"), nullable=False) + type = Column( + Enum("long-record", "composite", "prism", name="climo_station_type_enum"), + nullable=False, + ) basin_id = Column(Integer, nullable=True) comments = Column(String, nullable=False) mod_time = Column(DateTime, nullable=False, server_default=func.now()) @@ -662,6 +669,7 @@ class ClimatologicalStationHistory(Base): Integer, ForeignKey("climo_period_hx.climo_period_hx_id") ) + class ClimatologicalStationXHistory(Base): __tablename__ = "climo_stn_x_hist" climo_station_id = Column( @@ -689,19 +697,26 @@ class ClimatologicalVariable(Base): __tablename__ = "climo_variable" id = Column("climo_variable_id", Integer, primary_key=True) - duration = mapped_column(Enum("annual", "seasonal", "monthly", name="climatology_duration_enum"), nullable=False) + duration = mapped_column( + Enum("annual", "seasonal", "monthly", name="climatology_duration_enum"), + nullable=False, + ) unit = Column(String, nullable=False) standard_name = Column(String, nullable=False) display_name = Column(String, nullable=False) short_name = Column(String, nullable=False) cell_methods = Column(String, nullable=False) net_var_name = Column(CIText(), nullable=True) - + + class ClimatologicalVariableHistory(Base): __tablename__ = hx_table_name(ClimatologicalVariable.__tablename__, schema=None) climo_variable_id = Column(Integer, nullable=False, index=True) - duration = mapped_column(Enum("annual", "seasonal", "monthly", name="climatology_duration_enum"), nullable=False) + duration = mapped_column( + Enum("annual", "seasonal", "monthly", name="climatology_duration_enum"), + nullable=False, + ) unit = Column(String, nullable=False) standard_name = Column(String, nullable=False) display_name = Column(String, nullable=False) @@ -723,14 +738,11 @@ class ClimatologicalValue(Base): value_time = Column(DateTime, nullable=False) value = Column(Float, nullable=False) num_contributing_years = Column(Integer, nullable=False) - climo_variable_id = Column( - Integer, ForeignKey("climo_variable.climo_variable_id") - ) - climo_station_id = Column( - Integer, ForeignKey("climo_station.climo_station_id") - ) + climo_variable_id = Column(Integer, ForeignKey("climo_variable.climo_variable_id")) + climo_station_id = Column(Integer, ForeignKey("climo_station.climo_station_id")) mod_time = Column(DateTime, nullable=False) + class ClimatologicalValueHistory(Base): __tablename__ = hx_table_name(ClimatologicalValue.__tablename__, schema=None) @@ -738,12 +750,8 @@ class ClimatologicalValueHistory(Base): value_time = Column(DateTime, nullable=False) value = Column(Float, nullable=False) num_contributing_years = Column(Integer, nullable=False) - climo_variable_id = Column( - Integer, ForeignKey("climo_variable.climo_variable_id") - ) - climo_station_id = Column( - Integer, ForeignKey("climo_station.climo_station_id") - ) + climo_variable_id = Column(Integer, ForeignKey("climo_variable.climo_variable_id")) + climo_station_id = Column(Integer, ForeignKey("climo_station.climo_station_id")) mod_time = Column(DateTime, nullable=False, server_default=func.now()) mod_user = Column( String(64), nullable=False, server_default=literal_column("current_user") @@ -755,4 +763,4 @@ class ClimatologicalValueHistory(Base): ) climo_station_hx_id = Column( Integer, ForeignKey("climo_station_hx.climo_station_hx_id") - ) \ No newline at end of file + ) diff --git a/tests/alembic_migrations/test_migrations.py b/tests/alembic_migrations/test_migrations.py index d62f3d53..b287b640 100644 --- a/tests/alembic_migrations/test_migrations.py +++ b/tests/alembic_migrations/test_migrations.py @@ -70,11 +70,16 @@ def test_model_and_migration_schemas_are_the_same( alembic_runner.migrate_up_to("head") prepare_schema_from_models(uri_right, Base, db_setup=db_setup) - # Currently ignoring these ENUMs, despite directly creating them they don't seem + # Currently ignoring these ENUMs, despite directly creating them they don't seem # to be seen as available in the migrations version of the database. - result = compare(alembic_engine.url, uri_right, ignores=[ - '*.enum.climo_station_type_enum', - '*.enum.climatology_duration_enum', - '*.enum.climo_station_role_enum']) + result = compare( + alembic_engine.url, + uri_right, + ignores=[ + "*.enum.climo_station_type_enum", + "*.enum.climatology_duration_enum", + "*.enum.climo_station_role_enum", + ], + ) assert result.is_match diff --git a/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_on_real_tables/conftest.py b/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_on_real_tables/conftest.py index 99588ed7..8a5ab236 100644 --- a/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_on_real_tables/conftest.py +++ b/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_on_real_tables/conftest.py @@ -1,4 +1,3 @@ - import pytest diff --git a/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_on_real_tables/test_on_real_tables.py b/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_on_real_tables/test_on_real_tables.py index c7327a32..8ad6327e 100644 --- a/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_on_real_tables/test_on_real_tables.py +++ b/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_on_real_tables/test_on_real_tables.py @@ -61,7 +61,10 @@ # update tests { "where": {"start_date": "2000-01-01 00:00:00"}, - "values": {"start_date": "2000-01-02 00:00:00", "end_date": "2012-12-31 00:00:00"}, + "values": { + "start_date": "2000-01-02 00:00:00", + "end_date": "2012-12-31 00:00:00", + }, "check": { "start_date": datetime.datetime(2000, 1, 2, 0, 0, 0), "end_date": datetime.datetime(2012, 12, 31, 0, 0, 0), @@ -82,7 +85,15 @@ ClimatologicalVariable, ClimatologicalVariableHistory, "climo_variable_id", - ("duration", "unit", "standard_name", "display_name", "short_name", "cell_methods", "net_var_name"), + ( + "duration", + "unit", + "standard_name", + "display_name", + "short_name", + "cell_methods", + "net_var_name", + ), None, # insert tests { @@ -143,8 +154,8 @@ "deleted": True, }, }, - ) - ] + ), + ], ) @pytest.mark.usefixtures("db_with_large_data") def test_migration_results( @@ -177,7 +188,7 @@ def test_migration_results( alembic_runner.migrate_up_one() with Session(alembic_engine) as conn: - # as a result of some side effect in the migration the search path + # as a result of some side effect in the migration the search path # is being erronously set to "$user", public. I don't see us doing this in our code, # and the side effect happened when modifying the db_with_large_data fixture, # so I'm being practical and just forcing it to the right value here. diff --git a/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_smoke.py b/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_smoke.py index d4fc814b..7dfbe7fc 100644 --- a/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_smoke.py +++ b/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_smoke.py @@ -24,11 +24,24 @@ table_info = ( # table_name, primary_key_name, foreign_keys, extra_indexes ("climo_period", "climo_period_id", None), - ("climo_station", "climo_station_id", [("climo_period", "climo_period_id"), ]), + ( + "climo_station", + "climo_station_id", + [ + ("climo_period", "climo_period_id"), + ], + ), # TODO: weird one # ("climo_station_x_meta_history", [("climo_station_id", "history_id")], [("climo_station", "climo_period_id"), ("meta_history", "history_id")], None), ("climo_variable", "climo_variable_id", None), - ("climo_value", "climo_value_id", [("climo_variable", "climo_variable_id"), ("climo_station", "climo_station_id")]), + ( + "climo_value", + "climo_value_id", + [ + ("climo_variable", "climo_variable_id"), + ("climo_station", "climo_station_id"), + ], + ), ) diff --git a/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py b/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py index 2ec0197c..e41a9975 100644 --- a/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py +++ b/tests/alembic_migrations/versions/v_758be4f4ce0f_support_multiple_climatological_normals/test_smoke.py @@ -31,9 +31,7 @@ @pytest.mark.usefixtures("new_db_left") @pytest.mark.parametrize("orm_table", orm_tables) -def test_upgrade( - orm_table, alembic_engine, alembic_runner, schema_name -): +def test_upgrade(orm_table, alembic_engine, alembic_runner, schema_name): """Test the schema migration to 758be4f4ce0f.""" alembic_runner.migrate_up_to("758be4f4ce0f") @@ -45,9 +43,7 @@ def test_upgrade( @pytest.mark.usefixtures("new_db_left") @pytest.mark.parametrize("table", orm_tables) -def test_downgrade( - table, alembic_engine, alembic_runner, schema_name -): +def test_downgrade(table, alembic_engine, alembic_runner, schema_name): """Test the schema migration from a59d64cf16ca to previous rev.""" # Set up database to current version, then back off one diff --git a/tests/alembic_migrations/versions/v_a59d64cf16ca_add_hx_tkg_to_main_metadata_tables/test_on_real_tables/test_on_real_tables.py b/tests/alembic_migrations/versions/v_a59d64cf16ca_add_hx_tkg_to_main_metadata_tables/test_on_real_tables/test_on_real_tables.py index 0859323c..671445d8 100644 --- a/tests/alembic_migrations/versions/v_a59d64cf16ca_add_hx_tkg_to_main_metadata_tables/test_on_real_tables/test_on_real_tables.py +++ b/tests/alembic_migrations/versions/v_a59d64cf16ca_add_hx_tkg_to_main_metadata_tables/test_on_real_tables/test_on_real_tables.py @@ -272,7 +272,7 @@ def test_migration_results( alembic_runner.migrate_up_one() with Session(alembic_engine) as conn: - # as a result of some side effect in the migration the search path + # as a result of some side effect in the migration the search path # is being erronously set to "$user", public. I don't see us doing this in our code, # and the side effect happened when modifying the db_with_large_data fixture, # so I'm being practical and just forcing it to the right value here. diff --git a/tests/helpers.py b/tests/helpers.py index dcbf8d28..e834321f 100644 --- a/tests/helpers.py +++ b/tests/helpers.py @@ -284,6 +284,7 @@ def action(sesh): with_schema_name(sesh, schema_name, action) + def insert_crmp_data(sesh, alembic_runner, schema_name=get_schema_name()): """Insert data from CRMP database dump into into tables in named schema.""" @@ -292,7 +293,7 @@ def internal(sesh): with files("pycds").joinpath(f"data/data_{revision}.sql").open("r") as f: schema = f.read() sesh.execute(text(schema)) - + return internal # The alembic_runner's history property is an ordered set of revisions From 34792646891430456d36b81e85693af77c43fcdf Mon Sep 17 00:00:00 2001 From: John Date: Fri, 26 Sep 2025 16:52:02 +0000 Subject: [PATCH 18/21] new python version tests --- .github/workflows/python-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index f5c9de6d..597ac1c8 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -8,8 +8,9 @@ jobs: strategy: matrix: python-version: - - "3.6" - - "3.7" + - "3.9" + - "3.11" + - "3.13" steps: - uses: actions/checkout@v2 From adda2b108e4b4523b3892407bff6b1bf7ccfd708 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 29 Sep 2025 16:41:19 +0000 Subject: [PATCH 19/21] use optional instead of union type --- pycds/alembic/change_history_utils.py | 12 ++++++------ tests/alembic_migrations/helpers.py | 3 ++- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/pycds/alembic/change_history_utils.py b/pycds/alembic/change_history_utils.py index 0968044c..146e4e75 100644 --- a/pycds/alembic/change_history_utils.py +++ b/pycds/alembic/change_history_utils.py @@ -5,7 +5,7 @@ the change history functionality. """ -from typing import Iterable, Any +from typing import Iterable, Any, Optional from alembic import op @@ -64,7 +64,7 @@ def drop_history_cols_from_primary( def create_history_table( - collection_name: str, foreign_tables: list[tuple[str, str]] | None + collection_name: str, foreign_tables: Optional[list[tuple[str, str]]] ): # Create the history table. We can't use Alembic create_table here because it doesn't # support the LIKE syntax we need. @@ -92,7 +92,7 @@ def drop_history_table(collection_name: str): def create_history_table_indexes( collection_name: str, pri_id_name: list[str] | str, - foreign_tables: Iterable[tuple[str, str]] | None, + foreign_tables: Optional[Iterable[tuple[str, str]]], extras=None, ): """ @@ -134,8 +134,8 @@ def create_history_table_indexes( def populate_history_table( collection_name: str, pri_id_name: list[str] | str, - foreign_tables: list[tuple[str, str]] | None, - limit: int | None = None, + foreign_tables: Optional[list[tuple[str, str]]], + limit: Optional[int] = None, ): """ Populate the history table with data from the main table, in order of item id (main @@ -225,7 +225,7 @@ def create_primary_table_triggers(collection_name: str, prefix: str = "t100_"): def create_history_table_triggers( - collection_name: str, foreign_tables: list | None, prefix: str = "t100_" + collection_name: str, foreign_tables: Optional[list], prefix: str = "t100_" ): # Trigger: Add foreign key values to each record inserted into history table. ft_args = ( diff --git a/tests/alembic_migrations/helpers.py b/tests/alembic_migrations/helpers.py index 9473b458..a7f7b223 100644 --- a/tests/alembic_migrations/helpers.py +++ b/tests/alembic_migrations/helpers.py @@ -1,3 +1,4 @@ +from typing import Optional import sqlalchemy.types from sqlalchemy import ( select, @@ -95,7 +96,7 @@ def check_history_tracking_upgrade( connection: Connection, table_name: str, pri_key_name: str, - foreign_tables: list[tuple[str, str]] | None, + foreign_tables: Optional[list[tuple[str, str]]], schema_name: str, pri_columns_added: tuple[tuple[str, sqlalchemy.types]] = ( ("mod_time", TIMESTAMP), From c79f70adad3be60ce12177e1da6539ee9a9b7dce Mon Sep 17 00:00:00 2001 From: John Date: Mon, 29 Sep 2025 17:00:01 +0000 Subject: [PATCH 20/21] Drop 3.9 support (We use union type annotations) --- .github/workflows/python-ci.yml | 3 ++- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index 597ac1c8..8f118ac6 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -8,8 +8,9 @@ jobs: strategy: matrix: python-version: - - "3.9" + - "3.10" - "3.11" + - "3.12" - "3.13" steps: diff --git a/pyproject.toml b/pyproject.toml index 76aa7951..9ba2e11e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [project] name = "pycds" version = "5.0.0" -requires-python = ">=3.9,<3.14" +requires-python = ">=3.10,<3.14" readme = "README.md" description = "An ORM representation of the PCDS and CRMP database" license = { text = "GPL-3.0-only" } From d675640cd5de49ad8cf2673ccc0a8d941c9f6307 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 8 Oct 2025 22:26:11 +0000 Subject: [PATCH 21/21] Complete tests, fix some missing objects and names, turn down logging --- pycds/__init__.py | 2 + pycds/data/data_758be4f4ce0f.sql | 49 +++- pycds/orm/tables.py | 28 ++- pyproject.toml | 2 +- tests/alembic_migrations/test_migrations.py | 2 +- .../test_on_real_tables.py | 220 ++++++++++++++++-- tests/conftest.py | 5 +- tests/db_helpers/pytest_alembic.py | 1 - 8 files changed, 274 insertions(+), 35 deletions(-) diff --git a/pycds/__init__.py b/pycds/__init__.py index 1430f891..48186b5e 100644 --- a/pycds/__init__.py +++ b/pycds/__init__.py @@ -74,6 +74,7 @@ "ClimatologicalStation", "ClimatologicalStationHistory", "ClimatologicalStationXHistory", + "ClimatologicalStationXHistoryHistory", "ClimatologicalVariable", "ClimatologicalVariableHistory", "ClimatologicalValue", @@ -108,6 +109,7 @@ ClimatologicalStation, ClimatologicalStationHistory, ClimatologicalStationXHistory, + ClimatologicalStationXHistoryHistory, ClimatologicalVariable, ClimatologicalVariableHistory, ClimatologicalValue, diff --git a/pycds/data/data_758be4f4ce0f.sql b/pycds/data/data_758be4f4ce0f.sql index 7a950fea..6ec28daf 100644 --- a/pycds/data/data_758be4f4ce0f.sql +++ b/pycds/data/data_758be4f4ce0f.sql @@ -1,4 +1,8 @@ +-- ============================================================================= +-- Test data for climatological tables migration v_7244176be9fa +-- ============================================================================= + SET statement_timeout = 0; SET lock_timeout = 0; SET client_encoding = 'UTF8'; @@ -6,18 +10,57 @@ SET standard_conforming_strings = on; SET check_function_bodies = false; SET client_min_messages = warning; +-- ============================================================================= +-- CLIMATOLOGICAL PERIODS +-- ============================================================================= INSERT INTO climo_period (climo_period_id, start_date, end_date) VALUES (1, '2020-01-01', '2020-12-31'); + SELECT setval('climo_period_climo_period_id_seq'::regclass, max(climo_period_id)) FROM climo_period; +-- ============================================================================= +-- CLIMATOLOGICAL VARIABLES +-- ============================================================================= + INSERT INTO climo_variable (climo_variable_id, duration, unit, standard_name, display_name, short_name, cell_methods, net_var_name) -VALUES (1, 'annual', 'mm', 'snowfall_amount', 'Snowfall Amount', 'snowfall_amt', 'time: sum', 'snowfall_amt'); +VALUES + (1, 'annual', 'mm', 'snowfall_amount', 'Snowfall Amount', 'snowfall_amt', 'time: sum', 'snowfall_amt'), + (2, 'monthly', 'degC', 'air_temperature', 'Air Temperature', 'air_temp', 'time: mean', 'air_temp'), + (3, 'seasonal', 'mm/day', 'precipitation_flux', 'Precipitation Rate', 'precip_rate', 'time: mean', 'precip_rate'); + SELECT setval('climo_variable_climo_variable_id_seq'::regclass, max(climo_variable_id)) FROM climo_variable; +-- ============================================================================= +-- CLIMATOLOGICAL STATIONS +-- ============================================================================= + INSERT INTO climo_station (climo_station_id, type, basin_id, comments, climo_period_id) -VALUES (1, 'long-record', NULL, 'Station with long record', 1); +VALUES + (1, 'long-record', NULL, 'Station with long record', 1), + (2, 'composite', 2002, 'Test composite station', 1), + (3, 'prism', NULL, 'Test PRISM station', 1); + SELECT setval('climo_station_climo_station_id_seq'::regclass, max(climo_station_id)) FROM climo_station; +-- ============================================================================= +-- CLIMATOLOGICAL STATION X HISTORY (Cross-reference table) +-- ============================================================================= + INSERT INTO climo_stn_x_hist (climo_station_id, history_id, role) -VALUES (1, 13216, 'base'); \ No newline at end of file +VALUES + (1, 13216, 'base'), + (2, 13216, 'base'), + (3, 13216, 'joint'); + +-- ============================================================================= +-- CLIMATOLOGICAL VALUES +-- ============================================================================= + +INSERT INTO climo_value (climo_value_id, value_time, value, num_contributing_years, climo_variable_id, climo_station_id) +VALUES + (1, '2020-01-15 00:00:00', 45.2, 20, 1, 1), + (2, '2020-02-15 00:00:00', 15.8, 25, 2, 2), + (3, '2020-03-15 00:00:00', 2.5, 30, 3, 3); + +SELECT setval('climo_value_climo_value_id_seq'::regclass, max(climo_value_id)) FROM climo_value; \ No newline at end of file diff --git a/pycds/orm/tables.py b/pycds/orm/tables.py index 0cee43a5..09ce1d5b 100644 --- a/pycds/orm/tables.py +++ b/pycds/orm/tables.py @@ -648,6 +648,9 @@ class ClimatologicalStation(Base): ) basin_id = Column(Integer, nullable=True) comments = Column(String, nullable=False) + climo_period_id = Column( + Integer, ForeignKey("climo_period.climo_period_id"), nullable=False + ) class ClimatologicalStationHistory(Base): @@ -659,6 +662,9 @@ class ClimatologicalStationHistory(Base): ) basin_id = Column(Integer, nullable=True) comments = Column(String, nullable=False) + climo_period_id = Column( + Integer, ForeignKey("climo_period.climo_period_id"), nullable=False + ) mod_time = Column(DateTime, nullable=False, server_default=func.now()) mod_user = Column( String(64), nullable=False, server_default=literal_column("current_user") @@ -685,6 +691,24 @@ class ClimatologicalStationXHistory(Base): role = Column(Enum("base", "joint", name="climo_station_role_enum"), nullable=False) +class ClimatologicalStationXHistoryHistory(Base): + __tablename__ = hx_table_name( + ClimatologicalStationXHistory.__tablename__, schema=None + ) + climo_station_id = Column(Integer, nullable=False, index=True) + history_id = Column(Integer, nullable=False, index=True) + role = Column(Enum("base", "joint", name="climo_station_role_enum"), nullable=False) + mod_time = Column(DateTime, nullable=False, server_default=func.now()) + mod_user = Column( + String(64), nullable=False, server_default=literal_column("current_user") + ) + deleted = Column(Boolean, default=False) + climo_station_hx_id = Column(Integer, primary_key=True) + climo_period_hx_id = Column( + Integer, ForeignKey("climo_period_hx.climo_period_hx_id") + ) + + class ClimatologicalVariable(Base): # TODO: Columns in this table parallel those in meta_station and meta_history. # They differ in the following ways, which may be questioned: @@ -698,7 +722,7 @@ class ClimatologicalVariable(Base): id = Column("climo_variable_id", Integer, primary_key=True) duration = mapped_column( - Enum("annual", "seasonal", "monthly", name="climatology_duration_enum"), + Enum("annual", "seasonal", "monthly", name="climo_duration_enum"), nullable=False, ) unit = Column(String, nullable=False) @@ -714,7 +738,7 @@ class ClimatologicalVariableHistory(Base): climo_variable_id = Column(Integer, nullable=False, index=True) duration = mapped_column( - Enum("annual", "seasonal", "monthly", name="climatology_duration_enum"), + Enum("annual", "seasonal", "monthly", name="climo_duration_enum"), nullable=False, ) unit = Column(String, nullable=False) diff --git a/pyproject.toml b/pyproject.toml index 9ba2e11e..ce2fe9cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,6 @@ dependencies = [ "geoalchemy2>=0.13.3,<1.0.0", "psycopg2>=2.9.6,<3.0.0", "black>=25.1.0,<26.0.0", - "pytest-alembic (>=0.12.0,<0.13.0)", "alembic-postgresql-enum (>=1.8.0,<2.0.0)" ] @@ -52,6 +51,7 @@ dev = [ "testing-postgresql>=1.3.0", "setuptools>=72.2.0", "sqlalchemy-diff>=0.1.5", + "pytest-alembic (>=0.12.0,<0.13.0)", ] [project.scripts] diff --git a/tests/alembic_migrations/test_migrations.py b/tests/alembic_migrations/test_migrations.py index b287b640..407c95a5 100644 --- a/tests/alembic_migrations/test_migrations.py +++ b/tests/alembic_migrations/test_migrations.py @@ -77,7 +77,7 @@ def test_model_and_migration_schemas_are_the_same( uri_right, ignores=[ "*.enum.climo_station_type_enum", - "*.enum.climatology_duration_enum", + "*.enum.climo_duration_enum", "*.enum.climo_station_role_enum", ], ) diff --git a/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_on_real_tables/test_on_real_tables.py b/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_on_real_tables/test_on_real_tables.py index 8ad6327e..a1ddc058 100644 --- a/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_on_real_tables/test_on_real_tables.py +++ b/tests/alembic_migrations/versions/v_7244176be9fa_apply_hx_tracking_to_multi_climo_normals/test_on_real_tables/test_on_real_tables.py @@ -26,7 +26,16 @@ get_schema_name, ) from pycds.database import check_migration_version, get_schema_item_names -from pycds.orm.tables import ClimatologicalVariable, ClimatologicalVariableHistory +from pycds.orm.tables import ( + ClimatologicalStation, + ClimatologicalStationHistory, + ClimatologicalStationXHistory, + ClimatologicalStationXHistoryHistory, + ClimatologicalValue, + ClimatologicalValueHistory, + ClimatologicalVariable, + ClimatologicalVariableHistory, +) from tests.alembic_migrations.helpers import ( check_history_table_initial_contents, check_history_tracking, @@ -100,61 +109,224 @@ "values": { "duration": "annual", "unit": "mm", - "standard_name": "precipitation_amount", - "display_name": "Precipitation Amount", - "short_name": "precip_amt", + "standard_name": "test_variable_new", + "display_name": "Test Variable New", + "short_name": "test_var_new", "cell_methods": "time: sum", - "net_var_name": "precip_amt", + "net_var_name": "test_var_new", }, "check": { "duration": "annual", "unit": "mm", - "standard_name": "precipitation_amount", - "display_name": "Precipitation Amount", - "short_name": "precip_amt", + "standard_name": "test_variable_new", + "display_name": "Test Variable New", + "short_name": "test_var_new", "cell_methods": "time: sum", - "net_var_name": "precip_amt", + "net_var_name": "test_var_new", "deleted": False, }, }, # update tests { - "where": {"standard_name": "precipitation_amount"}, + "where": {"standard_name": "test_variable_new"}, "values": { "duration": "monthly", "unit": "cm", - "standard_name": "precipitation_flux", - "display_name": "Precipitation Flux", - "short_name": "precip_flux", + "standard_name": "test_variable_updated", + "display_name": "Test Variable Updated", + "short_name": "test_var_updated", "cell_methods": "time: mean", - "net_var_name": "precip_flux", + "net_var_name": "test_var_updated", }, "check": { "duration": "monthly", "unit": "cm", - "standard_name": "precipitation_flux", - "display_name": "Precipitation Flux", - "short_name": "precip_flux", + "standard_name": "test_variable_updated", + "display_name": "Test Variable Updated", + "short_name": "test_var_updated", "cell_methods": "time: mean", - "net_var_name": "precip_flux", + "net_var_name": "test_var_updated", "deleted": False, }, }, - # delete tests + # delete tests - use the same updated record { - "where": {"standard_name": "precipitation_flux"}, + "where": {"standard_name": "test_variable_updated"}, "check": { "duration": "monthly", "unit": "cm", - "standard_name": "precipitation_flux", - "display_name": "Precipitation Flux", - "short_name": "precip_flux", + "standard_name": "test_variable_updated", + "display_name": "Test Variable Updated", + "short_name": "test_var_updated", "cell_methods": "time: mean", - "net_var_name": "precip_flux", + "net_var_name": "test_var_updated", + "deleted": True, + }, + }, + ), + ( + ClimatologicalStation, + ClimatologicalStationHistory, + "climo_station_id", + ("type", "basin_id", "comments", "climo_period_id"), + [(ClimatologicalPeriod, "climo_period_id")], + # insert tests + { + "values": { + "type": "long-record", + "basin_id": "9999", + "comments": "Test station for climatological data - new", + "climo_period_id": "1", + }, + "check": { + "type": "long-record", + "basin_id": 9999, + "comments": "Test station for climatological data - new", + "climo_period_id": 1, + "deleted": False, + }, + }, + # update tests + { + "where": {"comments": "Test station for climatological data - new"}, + "values": { + "type": "composite", + "basin_id": "8888", + "comments": "Updated test station for climatological data", + "climo_period_id": "1", + }, + "check": { + "type": "composite", + "basin_id": 8888, + "comments": "Updated test station for climatological data", + "climo_period_id": 1, + "deleted": False, + }, + }, + # delete tests + { + "where": {"comments": "Updated test station for climatological data"}, + "check": { + "type": "composite", + "basin_id": 8888, + "comments": "Updated test station for climatological data", + "climo_period_id": 1, + "deleted": True, + }, + }, + ), + ( + ClimatologicalValue, + ClimatologicalValueHistory, + "climo_value_id", + ( + "value_time", + "value", + "num_contributing_years", + "climo_variable_id", + "climo_station_id", + ), + [ + (ClimatologicalVariable, "climo_variable_id"), + (ClimatologicalStation, "climo_station_id"), + ], + # insert tests + { + "values": { + "value_time": "2020-06-15 00:00:00", + "value": "125.5", + "num_contributing_years": "30", + "climo_variable_id": "1", + "climo_station_id": "1", + }, + "check": { + "value_time": datetime.datetime(2020, 6, 15, 0, 0, 0), + "value": 125.5, + "num_contributing_years": 30, + "climo_variable_id": 1, + "climo_station_id": 1, + "deleted": False, + }, + }, + # update tests + { + "where": {"value_time": "2020-06-15 00:00:00"}, + "values": { + "value_time": "2020-07-15 00:00:00", + "value": "98.2", + "num_contributing_years": "25", + "climo_variable_id": "1", + "climo_station_id": "1", + }, + "check": { + "value_time": datetime.datetime(2020, 7, 15, 0, 0, 0), + "value": 98.2, + "num_contributing_years": 25, + "climo_variable_id": 1, + "climo_station_id": 1, + "deleted": False, + }, + }, + # delete tests + { + "where": {"value_time": "2020-07-15 00:00:00"}, + "check": { + "value_time": datetime.datetime(2020, 7, 15, 0, 0, 0), + "value": 98.2, + "num_contributing_years": 25, + "climo_variable_id": 1, + "climo_station_id": 1, "deleted": True, }, }, ), + # TODO: Fix helper functions to support composite primary keys + # ( + # ClimatologicalStationXHistory, + # ClimatologicalStationXHistoryHistory, + # "climo_station_id", # Use single primary key for now since helper doesn't support composite + # ("climo_station_id", "history_id", "role"), + # [(ClimatologicalStation, "climo_station_id")], # Foreign key to climo_station table + # # insert tests + # { + # "values": { + # "climo_station_id": "2", + # "history_id": "13216", + # "role": "base", + # }, + # "check": { + # "climo_station_id": 2, + # "history_id": 13216, + # "role": "base", + # "deleted": False, + # }, + # }, + # # update tests + # { + # "where": {"climo_station_id": "2", "history_id": "13216"}, + # "values": { + # "climo_station_id": "3", + # "history_id": "13216", + # "role": "joint", + # }, + # "check": { + # "climo_station_id": 3, + # "history_id": 13216, + # "role": "joint", + # "deleted": False, + # }, + # }, + # # delete tests + # { + # "where": {"climo_station_id": "3", "history_id": "13216"}, + # "check": { + # "climo_station_id": 3, + # "history_id": 13216, + # "role": "joint", + # "deleted": True, + # }, + # }, + # ), ], ) @pytest.mark.usefixtures("db_with_large_data") diff --git a/tests/conftest.py b/tests/conftest.py index 5e80d146..f785703a 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,6 +1,5 @@ import logging import sys -import logging from pytest import fixture @@ -32,7 +31,7 @@ def pytest_runtest_setup(): logging.basicConfig(level=logging.DEBUG, stream=sys.stdout) - logging.getLogger("tests").setLevel(logging.DEBUG) - logging.getLogger("alembic").setLevel(logging.DEBUG) + # logging.getLogger("tests").setLevel(logging.DEBUG) + # logging.getLogger("alembic").setLevel(logging.DEBUG) # logging.getLogger("sqlalchemy.engine").setLevel(logging.INFO) # logging.getLogger("sqlalchemy.pool").setLevel(logging.DEBUG) diff --git a/tests/db_helpers/pytest_alembic.py b/tests/db_helpers/pytest_alembic.py index 76b4d822..17f31a66 100644 --- a/tests/db_helpers/pytest_alembic.py +++ b/tests/db_helpers/pytest_alembic.py @@ -1,4 +1,3 @@ -from contextlib import contextmanager import alembic.config from pytest_alembic.config import Config