59. Sorgu: "AsAppliedDatasets" al

As-Planted veya As-Applied veri setlerini alın

Seçili "Field" için tüm "AsAppliedDatasets" öğelerini al. Veri setleri, gibi genel GraphQL sorguları kullanılarak getirilebilir getFarms ve getFields bağlı "Field"'den.

circle-exclamation
sorgu GetAsAppliedDatasetsViaGetFarms {
  getFarms (farmUuids: ["<placeholder_of_farm_uuid>"]) {
    uuid 
    isim
    fields (fieldUuids: ["<placeholder_of_field_uuid>"]) {
      uuid
      asAppliedDatasets {
        uuid 
        isim
        number #geofeature toplam sayısı 
        geometryType 
        totalCoveredArea(unit: HECTARES) 
        fieldCoverage 
        fieldCoveredArea(unit: HECTARES)
  
        attributes (öznitelikler)
        
        fullAttributes { #her bir özellik için tam ayrıntılar
          name #istatistiklere bağlantı >> özellik
          transliteratedName
          fullName #doğru insan tarafından okunabilir isim
          birim#ölçü birimleri
        }

        usedMachines { #kullanılan makineler
          id
          seri
          operatörId
        } 

        createdDate #varlığın GeoPard'da oluşturulma tarihi ve saati
        updatedDate #son güncelleme tarih ve saati
        operationId
        operationType
        işDosyasıTarihi #dosya oluşturma tarihi zaman bilgisi meta bilgiden gelir 
        işBaşlamaTarihi #işlemin başlangıcı meta bilgiden gelir
        
        istatistikler { #her öznitelik için istatistik dağılımı
          attribute
          min
          max
          avg
          mdn
          var
          std
          sum
        }

        geoHaritalar {
          url
          kısaAd
          hexColorCodes
          classes
        }
      }
    }
  } 
}

Last updated

Was this helpful?