示例#1
0
def test_mosmix_l_parameters():
    """
    Test some details of a MOSMIX-L response when queried for specific parameters.
    """

    mosmix = DWDMosmixData(
        station_ids=["01001"],
        mosmix_type=DWDMosmixType.LARGE,
        parameters=["DD", "ww"],
    )
    response = next(mosmix.query())

    # Verify forecast data.
    station_ids = response.metadata["WMO_ID"].unique().tolist()
    assert station_ids == ["01001"]
    assert len(response.data) > 200

    assert len(response.data.columns) == 4
    assert list(response.data.columns) == [
        "STATION_ID",
        "DATE",
        "PARAMETER",
        "VALUE",
    ]
    assert set(response.data["PARAMETER"]).issuperset(["DD", "ww"])
示例#2
0
def test_mosmix_l_parameters():
    """
    Test some details of a MOSMIX-L response when queried for specific parameters.
    """

    mosmix = DWDMosmixData(
        station_ids=["01001"],
        mosmix_type=DWDMosmixType.LARGE,
        parameters=["DD", "ww"],
        tidy_data=False,
    )
    response = next(mosmix.collect_data())

    # Verify forecast data.
    station_ids = response.metadata["WMO_ID"].unique().tolist()
    assert station_ids == ["01001"]
    assert len(response.forecast) > 200

    assert len(response.forecast.columns) == 4
    assert list(response.forecast.columns) == ["STATION_ID", "DATETIME", "DD", "ww"]
示例#3
0
def mosmix_example():

    # A. MOSMIX-L -- Specific stations - each station with own file
    mosmix = DWDMosmixData(
        station_ids=["01001", "01008"],
        parameters=["DD", "ww"],
        start_issue=DWDForecastDate.LATEST,  # automatically set if left empty
        mosmix_type=DWDMosmixType.LARGE,
        tidy_data=True,
        humanize_parameters=True,
    )
    response = next(mosmix.query())

    # meta data enriched with information from metadata_for_forecasts()
    output_section("Metadata", response.metadata)
    output_section("Forecasts", response.data)

    # B. MOSMIX-S -- All stations - specified stations are extracted.
    mosmix = DWDMosmixData(
        station_ids=["01028", "01092"],
        parameters=["DD", "ww"],
        start_issue=DWDForecastDate.LATEST,  # automatically set if left empty
        mosmix_type=DWDMosmixType.SMALL,
        tidy_data=True,
        humanize_parameters=True,
    )
    response = next(mosmix.query())

    output_section("Metadata", response.metadata)
    output_section("Forecasts", response.data)
示例#4
0
def test_mosmix_l():
    """
    Test some details of a typical MOSMIX-L response.
    """

    mosmix = DWDMosmixData(
        station_ids=["01001"],
        mosmix_type=DWDMosmixType.LARGE,
    )
    response = next(mosmix.query())

    # Verify metadata.
    assert response.metadata.loc[0, "ISSUER"] == "Deutscher Wetterdienst"
    assert response.metadata.loc[0, "PRODUCT_ID"] == "MOSMIX"

    # Verify list of stations.
    station_names = response.metadata["STATION_NAME"].unique().tolist()
    assert station_names == ["JAN MAYEN"]

    # Verify forecast data.
    station_ids = response.data["STATION_ID"].unique().tolist()
    assert station_ids == ["01001"]
    assert len(response.data) > 200

    assert len(response.data.columns) == 4
    assert list(
        response.data.columns) == ["STATION_ID", "DATE", "PARAMETER", "VALUE"]

    assert set(response.data["PARAMETER"]).issuperset([
        "PPPP",
        "E_PPP",
        "TX",
        "TTT",
        "E_TTT",
        "Td",
        "E_Td",
        "TN",
        "TG",
        "TM",
        "T5cm",
        "DD",
        "E_DD",
        "FF",
        "E_FF",
        "FX1",
        "FX3",
        "FX625",
        "FX640",
        "FX655",
        "FXh",
        "FXh25",
        "FXh40",
        "FXh55",
        "N",
        "Neff",
        "Nlm",
        "Nh",
        "Nm",
        "Nl",
        "N05",
        "VV",
        "VV10",
        "wwM",
        "wwM6",
        "wwMh",
        "wwMd",
        "ww",
        "ww3",
        "W1W2",
        "wwP",
        "wwP6",
        "wwPh",
        "wwPd",
        "wwZ",
        "wwZ6",
        "wwZh",
        "wwD",
        "wwD6",
        "wwDh",
        "wwC",
        "wwC6",
        "wwCh",
        "wwT",
        "wwT6",
        "wwTh",
        "wwTd",
        "wwS",
        "wwS6",
        "wwSh",
        "wwL",
        "wwL6",
        "wwLh",
        "wwF",
        "wwF6",
        "wwFh",
        "DRR1",
        "RR6c",
        "RRhc",
        "RRdc",
        "RR1c",
        "RRS1c",
        "RRL1c",
        "RR3c",
        "RRS3c",
        "R101",
        "R102",
        "R103",
        "R105",
        "R107",
        "R110",
        "R120",
        "R130",
        "R150",
        "RR1o1",
        "RR1w1",
        "RR1u1",
        "R600",
        "R602",
        "R610",
        "R650",
        "Rh00",
        "Rh02",
        "Rh10",
        "Rh50",
        "Rd00",
        "Rd02",
        "Rd10",
        "Rd50",
        "SunD",
        "RSunD",
        "PSd00",
        "PSd30",
        "PSd60",
        "RRad1",
        "Rad1h",
        "SunD1",
        "SunD3",
        "PEvap",
        "WPc11",
        "WPc31",
        "WPc61",
        "WPch1",
        "WPcd1",
    ])
示例#5
0
def test_mosmix_s():
    """
    Test some details of a typical MOSMIX-S response.
    """

    mosmix = DWDMosmixData(
        station_ids=["01028"],
        mosmix_type=DWDMosmixType.SMALL,
    )
    response = next(mosmix.query())

    # Verify metadata.
    assert response.metadata.loc[0, "ISSUER"] == "Deutscher Wetterdienst"
    assert response.metadata.loc[0, "PRODUCT_ID"] == "MOSMIX"

    # Verify list of stations.
    station_names = list(response.metadata["STATION_NAME"].unique())
    assert station_names == ["BJORNOYA"]

    # Verify forecast data.
    station_ids = response.data["STATION_ID"].unique().tolist()
    assert station_ids == ["01028"]
    assert len(response.data) > 200

    assert len(response.data.columns) == 4
    assert list(
        response.data.columns) == ["STATION_ID", "DATE", "PARAMETER", "VALUE"]

    assert set(response.data["PARAMETER"]).issuperset([
        "PPPP",
        "TX",
        "TTT",
        "Td",
        "TN",
        "T5cm",
        "DD",
        "FF",
        "FX1",
        "FX3",
        "FXh",
        "FXh25",
        "FXh40",
        "FXh55",
        "N",
        "Neff",
        "Nh",
        "Nm",
        "Nl",
        "N05",
        "VV",
        "wwM",
        "wwM6",
        "wwMh",
        "ww",
        "W1W2",
        "RR1c",
        "RRS1c",
        "RR3c",
        "RRS3c",
        "R602",
        "R650",
        "Rh00",
        "Rh02",
        "Rh10",
        "Rh50",
        "Rd02",
        "Rd50",
        "Rad1h",
        "SunD1",
    ])
示例#6
0
def dwd_readings(
    product: str,
    station: str = Query(default=None),
    parameter: str = Query(default=None),
    resolution: str = Query(default=None),
    period: str = Query(default=None),
    mosmix_type: str = Query(default=None, alias="mosmix-type"),
    date: str = Query(default=None),
    sql: str = Query(default=None),
):
    """
    Acquire data from DWD.

    # TODO: Obtain lat/lon distance/number information.

    :param product:     string for product, either observations or mosmix
    :param station:     Comma-separated list of station identifiers.
    :param parameter:   Observation measure
    :param resolution:  Frequency/granularity of measurement interval
    :param period:      Recent or historical files
    :param mosmix_type  type of mosmix, either small or large
    :param date:        Date or date range
    :param sql:         SQL expression
    :return:
    """
    if product not in ["observations", "mosmix"]:
        return HTTPException(status_code=404, detail=f"product {product} not found")

    if station is None:
        raise HTTPException(
            status_code=400, detail="Query argument 'station' is required"
        )

    station_ids = map(str, read_list(station))

    if product == "observations":
        if parameter is None or resolution is None or period is None:
            raise HTTPException(
                status_code=400,
                detail="Query arguments 'parameter', 'resolution' "
                "and 'period' are required",
            )

        parameter = parse_enumeration_from_template(
            parameter, DWDObservationParameterSet
        )
        resolution = parse_enumeration_from_template(
            resolution, DWDObservationResolution
        )
        period = parse_enumeration_from_template(period, DWDObservationPeriod)

        # Data acquisition.
        readings = DWDObservationData(
            station_ids=station_ids,
            parameters=parameter,
            resolution=resolution,
            periods=period,
            tidy_data=True,
            humanize_parameters=True,
        )
    else:
        if mosmix_type is None:
            raise HTTPException(
                status_code=400, detail="Query argument 'mosmix_type' is required"
            )

        mosmix_type = parse_enumeration_from_template(mosmix_type, DWDMosmixType)

        readings = DWDMosmixData(station_ids=station_ids, mosmix_type=mosmix_type)

    # Postprocessing.
    df = readings.all()

    if date is not None:
        df = df.dwd.filter_by_date(date, resolution)

    df = df.dwd.lower()

    if sql is not None:
        df = df.io.sql(sql)

    data = json.loads(df.to_json(orient="records", date_format="iso"))

    return make_json_response(data)
示例#7
0
def run():
    """
    Usage:
      wetterdienst dwd observations stations --parameter=<parameter> --resolution=<resolution> --period=<period> [--station=<station>] [--latitude=<latitude>] [--longitude=<longitude>] [--number=<number>] [--distance=<distance>] [--sql=<sql>] [--format=<format>]
      wetterdienst dwd observations readings --parameter=<parameter> --resolution=<resolution> --station=<station> [--period=<period>] [--date=<date>] [--tidy] [--sql=<sql>] [--format=<format>] [--target=<target>]
      wetterdienst dwd observations readings --parameter=<parameter> --resolution=<resolution> --latitude=<latitude> --longitude=<longitude> [--period=<period>] [--number=<number>] [--distance=<distance>] [--tidy] [--date=<date>] [--sql=<sql>] [--format=<format>] [--target=<target>]
      wetterdienst dwd forecasts stations [--date=<date>] [--station=<station>] [--latitude=<latitude>] [--longitude=<longitude>] [--number=<number>] [--distance=<distance>] [--sql=<sql>] [--format=<format>]
      wetterdienst dwd forecasts readings --mosmix-type=<mosmix-type> --station=<station> [--parameter=<parameter>] [--date=<date>] [--tidy] [--sql=<sql>] [--format=<format>] [--target=<target>]
      wetterdienst dwd about [parameters] [resolutions] [periods]
      wetterdienst dwd about coverage [--parameter=<parameter>] [--resolution=<resolution>] [--period=<period>]
      wetterdienst dwd about fields --parameter=<parameter> --resolution=<resolution> --period=<period> [--language=<language>]
      wetterdienst service [--listen=<listen>]
      wetterdienst --version
      wetterdienst (-h | --help)

    Options:
      --parameter=<parameter>       Parameter Set/Parameter, e.g. "kl" or "precipitation_height", etc.
      --resolution=<resolution>     Dataset resolution: "annual", "monthly", "daily", "hourly", "minute_10", "minute_1"
      --period=<period>             Dataset period: "historical", "recent", "now"
      --station=<station>           Comma-separated list of station identifiers
      --latitude=<latitude>         Latitude for filtering by geoposition.
      --longitude=<longitude>       Longitude for filtering by geoposition.
      --number=<number>             Number of nearby stations when filtering by geoposition.
      --distance=<distance>         Maximum distance in km when filtering by geoposition.
      --date=<date>                 Date for filtering data. Can be either a single date(time) or
                                    an ISO-8601 time interval, see https://en.wikipedia.org/wiki/ISO_8601#Time_intervals.
      --mosmix-type=<mosmix-type>   type of mosmix, either 'small' or 'large'
      --sql=<sql>                   SQL query to apply to DataFrame.
      --format=<format>             Output format. [Default: json]
      --target=<target>             Output target for storing data into different data sinks.
      --language=<language>         Output language. [Default: en]
      --version                     Show version information
      --debug                       Enable debug messages
      --listen=<listen>             HTTP server listen address. [Default: localhost:7890]
      -h --help                     Show this screen


    Examples requesting stations:

      # Get list of all stations for daily climate summary data in JSON format
      wetterdienst dwd stations --parameter=kl --resolution=daily --period=recent

      # Get list of all stations in CSV format
      wetterdienst dwd stations --parameter=kl --resolution=daily --period=recent --format=csv

      # Get list of specific stations
      wetterdienst dwd stations --resolution=daily --parameter=kl --period=recent --station=1,1048,4411

      # Get list of specific stations in GeoJSON format
      wetterdienst dwd stations --resolution=daily --parameter=kl --period=recent --station=1,1048,4411 --format=geojson

    Examples requesting readings:

      # Get daily climate summary data for specific stations
      wetterdienst dwd readings --station=1048,4411 --parameter=kl --resolution=daily --period=recent

      # Optionally save/restore to/from disk in order to avoid asking upstream servers each time
      wetterdienst dwd readings --station=1048,4411 --parameter=kl --resolution=daily --period=recent

      # Limit output to specific date
      wetterdienst dwd readings --station=1048,4411 --parameter=kl --resolution=daily --period=recent --date=2020-05-01

      # Limit output to specified date range in ISO-8601 time interval format
      wetterdienst dwd readings --station=1048,4411 --parameter=kl --resolution=daily --period=recent --date=2020-05-01/2020-05-05

      # The real power horse: Acquire data across historical+recent data sets
      wetterdienst dwd readings --station=1048,4411 --parameter=kl --resolution=daily --period=historical,recent --date=1969-01-01/2020-06-11

      # Acquire monthly data for 2020-05
      wetterdienst dwd readings --station=1048,4411 --parameter=kl --resolution=monthly --period=recent,historical --date=2020-05

      # Acquire monthly data from 2017-01 to 2019-12
      wetterdienst dwd readings --station=1048,4411 --parameter=kl --resolution=monthly --period=recent,historical --date=2017-01/2019-12

      # Acquire annual data for 2019
      wetterdienst dwd readings --station=1048,4411 --parameter=kl --resolution=annual --period=recent,historical --date=2019

      # Acquire annual data from 2010 to 2020
      wetterdienst dwd readings --station=1048,4411 --parameter=kl --resolution=annual --period=recent,historical --date=2010/2020

      # Acquire hourly data
      wetterdienst dwd readings --station=1048,4411 --parameter=air_temperature --resolution=hourly --period=recent --date=2020-06-15T12

    Examples using geospatial features:

      # Acquire stations and readings by geoposition, request specific number of nearby stations.
      wetterdienst dwd stations --resolution=daily --parameter=kl --period=recent --lat=49.9195 --lon=8.9671 --num=5
      wetterdienst dwd readings --resolution=daily --parameter=kl --period=recent --lat=49.9195 --lon=8.9671 --num=5 --date=2020-06-30

      # Acquire stations and readings by geoposition, request stations within specific radius.
      wetterdienst dwd stations --resolution=daily --parameter=kl --period=recent --lat=49.9195 --lon=8.9671 --distance=25
      wetterdienst dwd readings --resolution=daily --parameter=kl --period=recent --lat=49.9195 --lon=8.9671 --distance=25 --date=2020-06-30

    Examples using SQL filtering:

      # Find stations by state.
      wetterdienst dwd stations --parameter=kl --resolution=daily --period=recent --sql="SELECT * FROM data WHERE state='Sachsen'"

      # Find stations by name (LIKE query).
      wetterdienst dwd stations --parameter=kl --resolution=daily --period=recent --sql="SELECT * FROM data WHERE lower(station_name) LIKE lower('%dresden%')"

      # Find stations by name (regexp query).
      wetterdienst dwd stations --parameter=kl --resolution=daily --period=recent --sql="SELECT * FROM data WHERE regexp_matches(lower(station_name), lower('.*dresden.*'))"

      # Filter measurements: Display daily climate observation readings where the maximum temperature is below two degrees.
      wetterdienst dwd readings --station=1048,4411 --parameter=kl --resolution=daily --period=recent --sql="SELECT * FROM data WHERE element='temperature_air_max_200' AND value < 2.0;"

    Examples for inquiring metadata:

      # Display list of available parameters (air_temperature, precipitation, pressure, ...)
      wetterdienst dwd about parameters

      # Display list of available resolutions (10_minutes, hourly, daily, ...)
      wetterdienst dwd about resolutions

      # Display list of available periods (historical, recent, now)
      wetterdienst dwd about periods

      # Display coverage/correlation between parameters, resolutions and periods.
      # This can answer questions like ...
      wetterdienst dwd about coverage

      # Tell me all periods and resolutions available for 'air_temperature'.
      wetterdienst dwd about coverage --parameter=air_temperature

      # Tell me all parameters available for 'daily' resolution.
      wetterdienst dwd about coverage --resolution=daily

    Examples for exporting data to databases:

      # Shortcut command for fetching readings from DWD
      alias fetch="wetterdienst dwd readings --station=1048,4411 --parameter=kl --resolution=daily --period=recent"

      # Store readings to DuckDB
      fetch --target="duckdb://database=dwd.duckdb&table=weather"

      # Store readings to InfluxDB
      fetch --target="influxdb://localhost/?database=dwd&table=weather"

      # Store readings to CrateDB
      fetch --target="crate://localhost/?database=dwd&table=weather"

    Run as HTTP service:

      wetterdienst dwd service
      wetterdienst dwd service --listen=0.0.0.0:9999

    """

    appname = f"{__appname__} {__version__}"

    # Read command line options.
    options = normalize_options(docopt(run.__doc__, version=appname))

    # Setup logging.
    debug = options.get("debug")

    log_level = logging.INFO

    if debug:  # pragma: no cover
        log_level = logging.DEBUG

    setup_logging(log_level)

    # Run service.
    if options.service:  # pragma: no cover
        listen_address = options.listen
        log.info(f"Starting {appname}")
        log.info(f"Starting web service on {listen_address}")
        from wetterdienst.service import start_service

        start_service(listen_address)
        return

    # Output domain information.
    if options.about:
        about(options)
        return

    # Sanity checks.
    if (options.readings or options.forecasts) and options.format == "geojson":
        raise KeyError("GeoJSON format only available for stations output")

    # Acquire station list, also used for readings if required.
    # Filtering applied for distance (a.k.a. nearby) and pre-selected stations
    df = get_stations(options)

    if options.stations and df.empty:
        log.error("No data available for given constraints")
        sys.exit(1)

    # Acquire observations.
    if options.readings:
        # Use list of station identifiers.
        if options.station:
            station_ids = read_list(options.station)
        elif options.latitude and options.longitude:
            try:
                station_ids = df.STATION_ID.unique()
            except AttributeError:
                station_ids = df.WMO_ID.unique()
        else:
            raise KeyError(
                "Either --station or --latitude, --longitude required")

        # Funnel all parameters to the workhorse.
        if options.observations:
            readings = DWDObservationData(
                station_ids=station_ids,
                parameters=read_list(options.parameter),
                resolution=options.resolution,
                periods=read_list(options.period),
                humanize_parameters=True,
                tidy_data=options.tidy,
            )
        elif options.forecasts:
            readings = DWDMosmixData(
                station_ids=station_ids,
                parameters=read_list(options.parameter),
                mosmix_type=options.mosmix_type,
                humanize_parameters=True,
                tidy_data=options.tidy,
            )

        # Collect data and merge together.
        try:
            df = readings.all()
        except ValueError as ex:
            log.exception(ex)
            sys.exit(1)

    # Sanity checks.
    if df.empty:
        log.error("No data available")
        sys.exit(1)

    # Filter readings by datetime expression.
    if options.readings and options.date:
        resolution = None
        if options.observations:
            resolution = readings.resolution

        df = df.dwd.filter_by_date(options.date, resolution)

    # Make column names lowercase.
    df = df.dwd.lower()

    # Apply filtering by SQL.
    if options.sql:
        log.info(f"Filtering with SQL: {options.sql}")
        df = df.io.sql(options.sql)

    # Emit to data sink, e.g. write to database.
    if options.target:
        log.info(f"Writing data to target {options.target}")
        df.io.export(options.target)
        return

    # Render to output format.
    try:
        output = df.dwd.format(options.format)
    except KeyError as ex:
        log.error(
            f'{ex}. Output format must be one of "json", "geojson", "csv", "excel".'
        )
        sys.exit(1)

    print(output)