| 43 | acquisition_date: string; |
| 44 | pixel_count: number; |
| 45 | } |
| 46 | |
| 47 | interface SoilData { |
| 48 | classification: { soil_class: string; wrb_name: string; icon: string; description: string; color: string }; |
| 49 | metrics: { ph: number | null; ph_rating: string; soc_g_per_kg: number | null; soc_rating: string; bulk_density: number | null; nitrogen_g_per_kg: number | null; nitrogen_rating: string; cec: number | null; coarse_fragments_pct: number | null }; |
| 50 | texture: { sand_pct: number | null; silt_pct: number | null; clay_pct: number | null; usda_class: string | null }; |
| 51 | water_retention: { field_capacity_pct: number | null; wilting_point_pct: number | null; available_water_pct: number | null }; |
| 52 | } |
| 53 |
nothing calls this directly
no outgoing calls
no test coverage detected