다음을 통해 공유


Azure Data Manager for Agriculture에서 일기 예보 데이터 수집

날씨는 농업 산업에서 매우 대중화된 서비스입니다. Azure Data Manager for Agriculture는 고객이 선택한 날씨 공급자와 협력할 수 있는 기능을 제공합니다.

Azure Data Manager for Agriculture농업용 Azure Data Manager는 확장 기반 및 공급자에 구애받지 않는 접근 방식을 통해 현재 및 예측 날씨 데이터를 제공합니다. 날씨 확장을 작성하는 단계에 따라 원하는 공급자와 함께 작업할 수 있습니다.

디자인 개요

Azure Data Manager for Agriculture은 공급자에 구애받지 않는 접근 방식을 통해 날씨 데이터를 제공하므로 공급자의 API에 익숙할 필요가 없습니다. 대신 공급자와 관계없이 동일한 Azure Data Manager for Agriculture API를 사용할 수 있습니다.

공급자에 구애받지 않는 API의 동작에 대한 몇 가지 참고 사항은 다음과 같습니다.

  • 한 번의 호출로 최대 50개 위치에 대한 날씨 데이터를 요청할 수 있습니다.
  • 예측 데이터는 15분 이상 오래되지 않습니다. 현재 조건에 대한 데이터는 10분보다 오래되지 않습니다.
  • 위치에 대한 초기 호출이 완료되면 정의된 TTL(Time to Live)에 대한 데이터가 캐시됩니다.

다음 섹션에서는 날씨 데이터를 가져와서 Azure Data Manager for Agriculture에 수집하는 명령을 제공합니다.

1단계: 날씨 확장 설치

확장을 설치하려면 Azure Resource Manager ARMClient 도구를 사용하여 다음 명령을 실행합니다.

꺾쇠 괄호(<>)의 모든 값을 해당 환경 값으로 대체합니다. 현재 지원되는 확장 ID는 IBM.TWC입니다.

armclient PUT /subscriptions/<subscriptionid>/resourceGroups/<resource-group-name>/providers/Microsoft.AgFoodPlatform/farmBeats/<farmbeats-resource-name>/extensions/<extensionid>?api-version=2020-05-12-preview '{}'

설치 명령에 대한 샘플 출력은 다음과 같습니다.

{
      "id": "/subscriptions/<subscriptionid>/resourceGroups/<resource-group-name>/providers/Microsoft.AgFoodPlatform/farmBeats/<farmbeats-resource-name>/extensions/<extensionid>",
      "type": "Microsoft.AgFoodPlatform/farmBeats/extensions",
      "systemData": {
        "createdBy": "testuser@abc.com",
        "createdByType": "User",`        
        "createdAt": "2021-03-17T12:36:51Z",
        "lastModifiedBy": "testuser@abc.com",
        "lastModifiedByType": "User",
        "lastModifiedAt": "2021-03-17T12:36:51Z"
      },
      "properties": {
        "category": "Weather",
        "installedExtensionVersion": "1.0",
        "extensionAuthLink": "https://www.<provider.com/integration/",
        "extensionApiDocsLink": "https://docs.<provider>.com/documentation/Weather_Data/Historical_and_Climatological_Weather/latest#_daily_historical_ag_weather_v1_0"
      },
      "eTag": "92003c91-0000-0700-0000-804752e00000",
      "name": "<provider>"
}

확장 설치를 완료한 후 날씨 데이터를 수집할 수 있습니다.

2단계: 날씨 데이터 가져오기

API에 액세스하는 데 필요한 자격 증명을 가져온 후 날씨 데이터 API를 호출하여 날씨 데이터를 가져와야 합니다.