Interface WeatherApp

天気連携に関する機能を提供します。Provides features related to weather connections.

Hierarchy

  • WeatherApp

Methods

  • 指定された名前に前方一致する市区町村コードを取得します
    Gets the municipality code that forward matches the specified name
    .

    Parameters

    • name: string

      取得する市区町村名(前方一致)municipality name to retrieve (forward match)

    • prefCode: string

    Returns City[]

  • 指定された市区町村コードで本日の天気予報を取得します
    Get today's weather forecast with the specified municipality code
    .

    Parameters

    • code: string | number

      市区町村コード ( JISコード5桁, 0詰めなし )Municipality code ( JIS code in 5 digits, no 0's)

    Returns null | ForecastResult

  • 指定された市区町村コードと日で天気予報を取得します
    Get weather forecast with specified municipality code and day
    .

    Parameters

    • code: string | number

      市区町村コード ( JISコード5桁, 0詰めなし )Municipality code ( JIS code in 5 digits, no 0's)

    • day: string

      日(TODAY or TOMORROW or TODAY_AND_TOMORROW) day (TODAY or TOMORROW or TODAY_AND_TOMORROW)

    Returns null | ForecastResult

  • 指定された名前に前方一致する県コードを取得します
    Gets the prefecture code that forward matches the specified name
    .

    Parameters

    • name: string

      取得する県名(前方一致)prefecture name to retrieve (forward match)

    Returns Pref[]

  • 指定された県コードで本日の天気予報を取得します
    Get today's weather forecast with the specified prefecture code
    .

    Parameters

    • code: string

      県コード prefecture code

    Returns null | ForecastResult

  • 指定された県コードと日で天気予報を取得します
    Get weather forecast with specified prefecture code and day
    .

    Parameters

    • code: string

      県コード prefecture code

    • day: string

      日(TODAY or TOMORROW or TODAY_AND_TOMORROW) day (TODAY or TOMORROW or TODAY_AND_TOMORROW)

    Returns null | ForecastResult

  • 指定された名前に前方一致する地域の本日の天気予報のリストを取得します
    Gets a list of today's weather forecast for the location forward matching the specified name
    .

    Parameters

    • name: string

      天気を取得する地名 ("神奈川県", "神奈川県 川崎市", "神奈川県 川崎市 多摩区"などスペース区切りで入力してください) the location name to get the weather from (Enter ("神奈川県", "神奈川県 川崎市", "神奈川県 川崎市 多摩区", etc., separated by spaces)

    Returns ForecastResult[]

  • 指定された名前に前方一致する地域の指定した日の天気予報のリスト取得します
    Gets a list of weather forecasts for a specified day for the location forward matching the specified name
    .

    Parameters

    • name: string

      天気を取得する地名 ("神奈川県", "神奈川県 川崎市", "神奈川県 川崎市 多摩区"などスペース区切りで入力してください) the location name to get the weather from (Enter ("神奈川県", "神奈川県 川崎市", "神奈川県 川崎市 多摩区", etc., separated by spaces)

    • day: string

      日(TODAY or TOMORROW or TODAY_AND_TOMORROW) day (TODAY or TOMORROW or TODAY_AND_TOMORROW)

    Returns ForecastResult[]