17. Sorgu: "SoilDatasets" al

Seçilen "Field" için tüm "SoilDatasets" öğelerini alın. Veri setleri şu gibi genel GraphQL sorguları kullanılarak alınabilir getFarms ve getFields bağlı "Field"'den.

circle-exclamation
query GetSoilDatasetsViaGetFarms {
  getFarms (farmUuids: ["<placeholder_of_farm_uuid>"]) {
    uuid
    fields (fieldUuids: ["<placeholder_of_field_uuid>"]) {
      uuid
      soilDatasets {
        uuid
        name #desen "<OperationType> <YYYY-mm-DD>"
        operationId #varsa
        number #geofeature toplam sayısı
        geometryType
        totalCoveredArea(unit: HECTARES)
        fieldCoverage
        fieldCoveredArea(unit: HECTARES)
        
        fullAttributes { #her bir özellik için tam ayrıntılar
          name #istatistiklere bağlantı >> özellik
          transliteratedName
          fullName #varsa
          unit #varsa
        }

        createdDate #varlığın GeoPard'da oluşturulma tarihi ve saati
        updatedDate #son güncelleme tarih ve saati
        operationType
        operationId
        operationFileDate #dosya oluşturulma tarih ve saati
        operationStartDate #operasyonun başlangıcı
        
        statistics { #her toprak özelliği 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?