@bradtech/ontologies 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. package/LICENSE +620 -0
  2. package/README.md +66 -0
  3. package/data/crop-covers/bare-soil.md +23 -0
  4. package/data/crop-covers/index.md +21 -0
  5. package/data/crop-covers/permanent-sod.md +23 -0
  6. package/data/crop-covers/sown-legume.md +23 -0
  7. package/data/crop-covers/spontaneous-grass.md +23 -0
  8. package/data/crops/index.md +23 -0
  9. package/data/crops/lavandula-angustifolia.md +30 -0
  10. package/data/crops/malus-domestica.md +30 -0
  11. package/data/crops/prunus-persica.md +30 -0
  12. package/data/crops/triticum-aestivum.md +30 -0
  13. package/data/crops/vitis-vinifera.md +30 -0
  14. package/data/crops/zea-mays.md +30 -0
  15. package/data/index.md +22 -0
  16. package/data/irrigations/drip.md +24 -0
  17. package/data/irrigations/gravity.md +24 -0
  18. package/data/irrigations/index.md +21 -0
  19. package/data/irrigations/none.md +24 -0
  20. package/data/irrigations/sprinkler.md +24 -0
  21. package/data/soils/clay-loam.md +29 -0
  22. package/data/soils/clay.md +29 -0
  23. package/data/soils/index.md +26 -0
  24. package/data/soils/loam.md +29 -0
  25. package/data/soils/sand.md +29 -0
  26. package/data/soils/sandy-clay-loam.md +29 -0
  27. package/data/soils/sandy-clay.md +29 -0
  28. package/data/soils/sandy-loam.md +29 -0
  29. package/data/soils/silt-loam.md +29 -0
  30. package/data/soils/silt.md +29 -0
  31. package/data/soils/silty-clay-loam.md +29 -0
  32. package/dist/build.d.ts +5 -0
  33. package/dist/build.d.ts.map +1 -0
  34. package/dist/build.js +61 -0
  35. package/dist/build.js.map +1 -0
  36. package/dist/catalog.json +1623 -0
  37. package/dist/embeddedData.d.ts +6 -0
  38. package/dist/embeddedData.d.ts.map +1 -0
  39. package/dist/embeddedData.js +906 -0
  40. package/dist/embeddedData.js.map +1 -0
  41. package/dist/extractor.d.ts +31 -0
  42. package/dist/extractor.d.ts.map +1 -0
  43. package/dist/extractor.js +161 -0
  44. package/dist/extractor.js.map +1 -0
  45. package/dist/index.d.ts +24 -0
  46. package/dist/index.d.ts.map +1 -0
  47. package/dist/index.js +44 -0
  48. package/dist/index.js.map +1 -0
  49. package/dist/loader.d.ts +25 -0
  50. package/dist/loader.d.ts.map +1 -0
  51. package/dist/loader.js +104 -0
  52. package/dist/loader.js.map +1 -0
  53. package/dist/opendata.jsonld +268 -0
  54. package/dist/parser.d.ts +14 -0
  55. package/dist/parser.d.ts.map +1 -0
  56. package/dist/parser.js +124 -0
  57. package/dist/parser.js.map +1 -0
  58. package/dist/types.d.ts +89 -0
  59. package/dist/types.d.ts.map +1 -0
  60. package/dist/types.js +5 -0
  61. package/dist/types.js.map +1 -0
  62. package/package.json +42 -0
  63. package/src/build.ts +71 -0
  64. package/src/embeddedData.ts +910 -0
  65. package/src/extractor.ts +207 -0
  66. package/src/index.ts +98 -0
  67. package/src/loader.ts +126 -0
  68. package/src/parser.ts +137 -0
  69. package/src/types.ts +110 -0
package/README.md ADDED
@@ -0,0 +1,66 @@
1
+ # @bradtech/ontologies
2
+
3
+ > Open Knowledge Format (**OKF v0.1**) Agricultural Lexicon, Multi-level Taxonomies & Open Data Cross-Referencing Engine.
4
+ > Designed for **Brad Technology SAS**, the **OSFARM Collective**, and **Quatrain Core** / Modaka instances.
5
+
6
+ ---
7
+
8
+ ## 🧭 Overview
9
+
10
+ `@bradtech/ontologies` serves as the GitOps-driven single source of truth for agricultural taxonomies:
11
+ - **Soils & Textures**: 10 standard physical soil classes (INRAE / USDA / FAO WRB) with calibrated moisture thresholds (Field Capacity, Wilting Points, Bulk Density).
12
+ - **Irrigation Practices**: 4 canonical irrigation methods (Rainfed, Drip, Gravity, Sprinkler) with ICID standards and application efficiencies.
13
+ - **Crops & Cultivated Species**: Viticulture, arboriculture, aromatics, field crops, and cereals indexed to **EPPO Global Database**, **FAO AGROVOC**, and **TelePAC RPG** codes.
14
+ - **Crop Covers & Inter-Rows**: Agroecological soil cover modalities with water competition indices.
15
+
16
+ ---
17
+
18
+ ## 🚀 Key Features
19
+
20
+ 1. **Git-First & Flat-Markdown (OKF v0.1)**: Every concept is an auditable, human- and AI-readable Markdown document with flat YAML frontmatter located under `data/`.
21
+ 2. **Recursive & Flat Extraction**: Generate flat key-value dictionaries for UI select inputs (`Lexicon.getFlatMap('irrigations', 'fr')`) or full cascading hierarchical trees (`Lexicon.getHierarchy('crops', 'fr')`).
22
+ 3. **Universal Cross-Standard Lookup**: Query by internal slug (`vitis-vinifera`), EPPO code (`VITVI`), TelePAC code (`VRC`), or AGROVOC URI (`c_8340`).
23
+ 4. **Open Data Native**: Export directly to Schema.org / DCAT-AP compliant JSON-LD graph (`Lexicon.toOpenData()`).
24
+ 5. **Zero-Dependency & Cloud-Native**: Pure TypeScript running seamlessly in Bun, Node.js, and browser/edge runtimes.
25
+
26
+ ---
27
+
28
+ ## 📦 Installation
29
+
30
+ ```bash
31
+ bun add @bradtech/ontologies
32
+ # or
33
+ npm install @bradtech/ontologies
34
+ ```
35
+
36
+ ---
37
+
38
+ ## 🛠️ Quick Start
39
+
40
+ ```typescript
41
+ import { Lexicon } from '@bradtech/ontologies'
42
+
43
+ // 1. Get flat localized map for UI select components
44
+ const irrigationOptions = Lexicon.getFlatMap('irrigations', 'fr')
45
+ console.log(irrigationOptions)
46
+ // {
47
+ // none: "Sans irrigation (Non irrigué)",
48
+ // drip: "Goutte à goutte",
49
+ // gravity: "Gravitaire",
50
+ // sprinkler: "Aspersion"
51
+ // }
52
+
53
+ // 2. Resolve cross-references (TelePAC / EPPO -> Concept)
54
+ const result = Lexicon.lookup('VITVI')
55
+ console.log(result?.item.title) // "Vigne cultivée (Vitis vinifera)"
56
+ console.log(result?.item.agronomy.kcMid) // 0.70
57
+
58
+ // 3. Export Open Data JSON-LD graph
59
+ const jsonLd = Lexicon.toOpenData('crops')
60
+ ```
61
+
62
+ ---
63
+
64
+ ## 📄 Documentation
65
+
66
+ For advanced recipes, custom catalogs, and integration examples, see [HOWTO.md](./HOWTO.md).
@@ -0,0 +1,23 @@
1
+ ---
2
+ type: crop-cover
3
+ id: bare-soil
4
+ title: Sol Nu / Désherbage Mécanique
5
+ description: Sol maintenu sans végétation adventice par travail superficiel ou binage. Zéro compétition hydrique, mais forte exposition à l'érosion et au ruissellement.
6
+ tags: [crop-cover, tilled, bare-soil]
7
+ translations:
8
+ fr: Sol Nu
9
+ en: Bare Soil
10
+ es: Suelo Desnudo
11
+ it: Suolo Nudo
12
+ de: Offener Boden
13
+ standards:
14
+ agrovoc: c_34125
15
+ effects:
16
+ soilProtectionFactor: 0.10
17
+ waterCompetitionIndex: 0.00
18
+ nitrogenFixation: false
19
+ ---
20
+
21
+ # Sol Nu (Bare Soil)
22
+
23
+ Modalité sans couvert réduisant la concurrence en eau mais exposant la structure du sol.
@@ -0,0 +1,21 @@
1
+ ---
2
+ type: domain
3
+ id: crop-covers
4
+ title: Couverts Végétaux et Gestion des Inter-Rangs
5
+ description: Modalités de gestion du sol, enherbement spontané, semis de légumineuses et paillage.
6
+ tags: [domain, cover, agroecology, soil-health]
7
+ translations:
8
+ fr: Couverts Végétaux et Inter-Rangs
9
+ en: Crop Covers & Inter-Row Management
10
+ es: Cubiertas Vegetales y Manejo de Calles
11
+ ---
12
+
13
+ # Couverts Végétaux et Inter-Rangs
14
+
15
+ Ce domaine qualifie l'état de surface du sol, la protection contre l'érosion et la compétition hydrique inter-rangs.
16
+
17
+ ## Modalités Référencées
18
+ - [Sol Nu / Travail du sol mécanique](bare-soil.md)
19
+ - [Enherbement spontané temporaire](spontaneous-grass.md)
20
+ - [Couverts semés de légumineuses / Engrais verts](sown-legume.md)
21
+ - [Enherbement permanent maîtrisé](permanent-sod.md)
@@ -0,0 +1,23 @@
1
+ ---
2
+ type: crop-cover
3
+ id: permanent-sod
4
+ title: Enherbement Permanent Maîtrisé
5
+ description: Gazon ou graminées pérennes installées durablement sur l'inter-rang, tondues régulièrement pour limiter la concurrence hydrique.
6
+ tags: [crop-cover, permanent, sod, grass]
7
+ translations:
8
+ fr: Enherbement Permanent
9
+ en: Permanent Sod Cover
10
+ es: Cubierta Permanente
11
+ it: Inerbimento permanente
12
+ de: Dauerbegrünung
13
+ standards:
14
+ agrovoc: c_3313
15
+ effects:
16
+ soilProtectionFactor: 0.95
17
+ waterCompetitionIndex: 0.55
18
+ nitrogenFixation: false
19
+ ---
20
+
21
+ # Enherbement Permanent (Permanent Sod)
22
+
23
+ Protection maximale contre l'érosion et traficabilité par tous les temps.
@@ -0,0 +1,23 @@
1
+ ---
2
+ type: crop-cover
3
+ id: sown-legume
4
+ title: Couvert Semé de Légumineuses / Engrais Verts
5
+ description: Mélange semé (trèfle, féverole, vesce) apportant un enrichissement en azote symbiotique et une structuration profonde du sol.
6
+ tags: [crop-cover, legume, green-manure, nitrogen-fixation]
7
+ translations:
8
+ fr: Semis de Légumineuses / Engrais Vert
9
+ en: Sown Legume / Green Manure
10
+ es: Siembra de Leguminosas / Abono Verde
11
+ it: Soffietto di leguminose
12
+ de: Einsaat von Leguminosen
13
+ standards:
14
+ agrovoc: c_3364
15
+ effects:
16
+ soilProtectionFactor: 0.85
17
+ waterCompetitionIndex: 0.30
18
+ nitrogenFixation: true
19
+ ---
20
+
21
+ # Couvert de Légumineuses (Legume Cover)
22
+
23
+ Apport symbiotique d'azote atmosphérique et restructuration du sol.
@@ -0,0 +1,23 @@
1
+ ---
2
+ type: crop-cover
3
+ id: spontaneous-grass
4
+ title: Enherbement Spontané Temporaire
5
+ description: Développement de la flore naturelle locale maîtrisé par fauche ou broyage périodique.
6
+ tags: [crop-cover, spontaneous, grass, eco]
7
+ translations:
8
+ fr: Enherbement Spontané
9
+ en: Spontaneous Grass Cover
10
+ es: Cubierta Espontánea
11
+ it: Inerbimento spontaneo
12
+ de: Spontanbegrünung
13
+ standards:
14
+ agrovoc: c_3313
15
+ effects:
16
+ soilProtectionFactor: 0.70
17
+ waterCompetitionIndex: 0.40
18
+ nitrogenFixation: false
19
+ ---
20
+
21
+ # Enherbement Spontané (Spontaneous Grass)
22
+
23
+ Favorise la portance des engins et la biodiversité sans coût d'implantation.
@@ -0,0 +1,23 @@
1
+ ---
2
+ type: domain
3
+ id: crops
4
+ title: Productions Végétales et Espèces Cultivées
5
+ description: Référentiel international des espèces et cultures indexé sur les codes EPPO, FAO AGROVOC et le Registre Parcellaire Graphique (RPG TéléPAC).
6
+ tags: [domain, crop, plant, eppo, agrovoc, telepac]
7
+ translations:
8
+ fr: Productions Végétales et Espèces Cultivées
9
+ en: Crops & Cultivated Plant Species
10
+ es: Cultivos y Especies Vegetales
11
+ ---
12
+
13
+ # Productions Végétales et Espèces Cultivées
14
+
15
+ Ce domaine normalise les espèces agricoles avec leurs constantes agronomiques ($K_c$, seuils $GDD$, profondeur racinaire) et leurs correspondances opposables Open Data.
16
+
17
+ ## Espèces Référencées
18
+ - [Vigne cultivée (Vitis vinifera)](vitis-vinifera.md)
19
+ - [Lavande vraie / Lavandin (Lavandula angustifolia)](lavandula-angustifolia.md)
20
+ - [Pommier cultivé (Malus domestica)](malus-domestica.md)
21
+ - [Pêcher / Nectarinier (Prunus persica)](prunus-persica.md)
22
+ - [Blé tendre (Triticum aestivum)](triticum-aestivum.md)
23
+ - [Maïs grain et ensilage (Zea mays)](zea-mays.md)
@@ -0,0 +1,30 @@
1
+ ---
2
+ type: crop
3
+ id: lavandula-angustifolia
4
+ category: aromatics
5
+ title: Lavande vraie / Lavandin (Lavandula)
6
+ scientificName: Lavandula angustifolia Mill.
7
+ description: Arbrisseau dicotylédone pérenne de la famille des Lamiacées cultivé pour son huile essentielle et ses fleurs.
8
+ tags: [crop, aromatics, medicinal, perennial, drought-resistant]
9
+ translations:
10
+ fr: Lavande / Lavandin
11
+ en: English Lavender / Lavandin
12
+ es: Lavanda / Espliego
13
+ it: Lavanda vera
14
+ de: Echter Lavendel
15
+ standards:
16
+ eppo: LAVAN
17
+ agrovoc: c_4219
18
+ telepac_rpg: [PPM, PAR]
19
+ agronomy:
20
+ rootDepthMaxCm: 150
21
+ kcInitial: 0.25
22
+ kcMid: 0.55
23
+ kcEnd: 0.35
24
+ baseTemperatureGdd: 7.0
25
+ waterRequirementMmAnnual: 350
26
+ ---
27
+
28
+ # Lavande / Lavandin (Lavandula angustifolia)
29
+
30
+ Plante méditerranéenne très rustique, tolérante à la sécheresse estivale et aux sols calcaires filtrants.
@@ -0,0 +1,30 @@
1
+ ---
2
+ type: crop
3
+ id: malus-domestica
4
+ category: arboriculture
5
+ title: Pommier cultivé (Malus domestica)
6
+ scientificName: Malus domestica Borkh.
7
+ description: Arbre fruitier de la famille des Rosacées cultivé pour la production de pommes de table et de transformation.
8
+ tags: [crop, arboriculture, fruit, orchard, deciduous]
9
+ translations:
10
+ fr: Pommier
11
+ en: Apple Tree
12
+ es: Manzano
13
+ it: Melo
14
+ de: Kulturapfel
15
+ standards:
16
+ eppo: MABDO
17
+ agrovoc: c_594
18
+ telepac_rpg: [VRG, FPP]
19
+ agronomy:
20
+ rootDepthMaxCm: 180
21
+ kcInitial: 0.40
22
+ kcMid: 0.95
23
+ kcEnd: 0.65
24
+ baseTemperatureGdd: 4.5
25
+ waterRequirementMmAnnual: 700
26
+ ---
27
+
28
+ # Pommier cultivé (Malus domestica)
29
+
30
+ Espèce majeure de l'arboriculture fruitière tempérée.
@@ -0,0 +1,30 @@
1
+ ---
2
+ type: crop
3
+ id: prunus-persica
4
+ category: arboriculture
5
+ title: Pêcher / Nectarinier (Prunus persica)
6
+ scientificName: Prunus persica (L.) Batsch
7
+ description: Arbre fruitier cultivé pour ses pêches, nectarines et brugnons, sensible aux gelées printanières précoces.
8
+ tags: [crop, arboriculture, fruit, orchard, frost-sensitive]
9
+ translations:
10
+ fr: Pêcher / Nectarinier
11
+ en: Peach / Nectarine Tree
12
+ es: Melocotonero / Nectarino
13
+ it: Pesco
14
+ de: Pfirsichbaum
15
+ standards:
16
+ eppo: PRNPS
17
+ agrovoc: c_6267
18
+ telepac_rpg: [VRG, FPN]
19
+ agronomy:
20
+ rootDepthMaxCm: 160
21
+ kcInitial: 0.45
22
+ kcMid: 0.90
23
+ kcEnd: 0.60
24
+ baseTemperatureGdd: 7.0
25
+ waterRequirementMmAnnual: 650
26
+ ---
27
+
28
+ # Pêcher / Nectarinier (Prunus persica)
29
+
30
+ Arbre fruitier méditerranéen et tempéré chaud.
@@ -0,0 +1,30 @@
1
+ ---
2
+ type: crop
3
+ id: triticum-aestivum
4
+ category: cereals
5
+ title: Blé tendre (Triticum aestivum)
6
+ scientificName: Triticum aestivum L.
7
+ description: Céréale à paille annuelle de la famille des Poacées, base de la meunerie et de la panification.
8
+ tags: [crop, cereals, annual, field-crop]
9
+ translations:
10
+ fr: Blé tendre
11
+ en: Common Wheat
12
+ es: Trigo blando
13
+ it: Frumento tenero
14
+ de: Weichweizen
15
+ standards:
16
+ eppo: TRZAX
17
+ agrovoc: c_7951
18
+ telepac_rpg: [BTH, BTP]
19
+ agronomy:
20
+ rootDepthMaxCm: 120
21
+ kcInitial: 0.30
22
+ kcMid: 1.15
23
+ kcEnd: 0.25
24
+ baseTemperatureGdd: 0.0
25
+ waterRequirementMmAnnual: 450
26
+ ---
27
+
28
+ # Blé tendre (Triticum aestivum)
29
+
30
+ Grande culture céréalière mondiale.
@@ -0,0 +1,30 @@
1
+ ---
2
+ type: crop
3
+ id: vitis-vinifera
4
+ category: viticulture
5
+ title: Vigne cultivée (Vitis vinifera)
6
+ scientificName: Vitis vinifera L.
7
+ description: Liane ligneuse pérenne cultivée pour le raisin de cuve et le raisin de table.
8
+ tags: [crop, viticulture, perennial, fruit, wine]
9
+ translations:
10
+ fr: Vigne cultivée
11
+ en: Common Grapevine
12
+ es: Vid común
13
+ it: Vite comune
14
+ de: Echte Weinrebe
15
+ standards:
16
+ eppo: VITVI
17
+ agrovoc: c_8340
18
+ telepac_rpg: [VRC, VRT]
19
+ agronomy:
20
+ rootDepthMaxCm: 250
21
+ kcInitial: 0.30
22
+ kcMid: 0.70
23
+ kcEnd: 0.45
24
+ baseTemperatureGdd: 10.0
25
+ waterRequirementMmAnnual: 450
26
+ ---
27
+
28
+ # Vigne cultivée (Vitis vinifera)
29
+
30
+ Culture pérenne à enracinement profond, adaptée aux terroirs méditerranéens et tempérés.
@@ -0,0 +1,30 @@
1
+ ---
2
+ type: crop
3
+ id: zea-mays
4
+ category: cereals
5
+ title: Maïs grain et fourrage (Zea mays)
6
+ scientificName: Zea mays L.
7
+ description: Plante herbacée annuelle en C4 de la famille des Poacées, à forte productivité de biomasse et forts besoins hydriques estivaux.
8
+ tags: [crop, cereals, annual, c4, summer-crop]
9
+ translations:
10
+ fr: Maïs
11
+ en: Maize / Corn
12
+ es: Maíz
13
+ it: Mais
14
+ de: Mais
15
+ standards:
16
+ eppo: ZEAMX
17
+ agrovoc: c_8504
18
+ telepac_rpg: [MIS, MID]
19
+ agronomy:
20
+ rootDepthMaxCm: 140
21
+ kcInitial: 0.35
22
+ kcMid: 1.20
23
+ kcEnd: 0.50
24
+ baseTemperatureGdd: 6.0
25
+ waterRequirementMmAnnual: 600
26
+ ---
27
+
28
+ # Maïs (Zea mays)
29
+
30
+ Culture estivale à haute efficience photosynthétique (C4).
package/data/index.md ADDED
@@ -0,0 +1,22 @@
1
+ ---
2
+ type: catalog
3
+ id: osfarm-lexicon
4
+ title: OSFARM Open Agricultural Lexicon & Taxonomies
5
+ description: Flat Open Knowledge Format (OKF v0.1) knowledge repository of international agricultural concepts, soils, crops, and irrigation practices.
6
+ tags: [catalog, agriculture, open-data, osfarm, brad]
7
+ timestamp: 2026-08-25T20:00:00Z
8
+ translations:
9
+ fr: Lexique & Taxonomies Agricoles Ouvertes OSFARM
10
+ en: OSFARM Open Agricultural Lexicon & Taxonomies
11
+ es: Léxico y Taxonomías Agrícolas Abiertas OSFARM
12
+ ---
13
+
14
+ # OSFARM Open Agricultural Lexicon & Taxonomies
15
+
16
+ Welcome to the **OSFARM / Brad Open Agricultural Lexicon**, structured according to the **Open Knowledge Format (OKF v0.1)**.
17
+
18
+ ## Categories Index
19
+ - [Soils & Textures](soils/)
20
+ - [Irrigation Systems & Methods](irrigations/)
21
+ - [Crops & Cultivated Species](crops/)
22
+ - [Crop Covers & Intercropping](crop-covers/)
@@ -0,0 +1,24 @@
1
+ ---
2
+ type: irrigation
3
+ id: drip
4
+ title: Goutte à goutte (Micro-irrigation)
5
+ description: Système de micro-irrigation localisé en surface ou enterré délivrant l'eau directement au pied des cultures avec une haute efficience.
6
+ tags: [irrigation, microirrigation, drip, precision]
7
+ translations:
8
+ fr: Goutte à goutte
9
+ en: Drip irrigation
10
+ es: Goteo
11
+ it: Irrigazione a goccia
12
+ de: Tröpfchenbewässerung
13
+ standards:
14
+ icid: DRIP
15
+ agrovoc: c_2374
16
+ engineering:
17
+ method: localized_drip
18
+ applicationEfficiency: 0.92
19
+ wettingPatternFraction: 0.35
20
+ ---
21
+
22
+ # Goutte à goutte (Drip Irrigation)
23
+
24
+ Système apportant l'eau à faible débit et sous basse pression directement au bulbe racinaire.
@@ -0,0 +1,24 @@
1
+ ---
2
+ type: irrigation
3
+ id: gravity
4
+ title: Gravitaire (Submersion / Planches / Raies)
5
+ description: Irrigation par écoulement de surface guidé par la gravité le long de calants, planches ou sillons.
6
+ tags: [irrigation, surface, gravity, traditional]
7
+ translations:
8
+ fr: Gravitaire
9
+ en: Surface / Gravity
10
+ es: Gravedad
11
+ it: Irrigazione a scorrimento
12
+ de: Furchen- / Einstau-Bewässerung
13
+ standards:
14
+ icid: SURFACE
15
+ agrovoc: c_7531
16
+ engineering:
17
+ method: surface_gravity
18
+ applicationEfficiency: 0.60
19
+ wettingPatternFraction: 0.85
20
+ ---
21
+
22
+ # Irrigation Gravitaire (Surface Irrigation)
23
+
24
+ Méthode ancestrale par ruissellement et submersion contrôlée.
@@ -0,0 +1,21 @@
1
+ ---
2
+ type: domain
3
+ id: irrigations
4
+ title: Systèmes et Pratiques d'Irrigation
5
+ description: Méthodes d'apport hydrique agricole classifiées selon les standards internationaux ICID et FAO.
6
+ tags: [domain, irrigation, water, icid]
7
+ translations:
8
+ fr: Systèmes et Pratiques d'Irrigation
9
+ en: Irrigation Systems & Practices
10
+ es: Sistemas y Prácticas de Riego
11
+ ---
12
+
13
+ # Systèmes et Pratiques d'Irrigation
14
+
15
+ Ce domaine normalise les 4 grandes familles d'apports hydriques avec leur efficience d'application et la fraction de sol mouillée.
16
+
17
+ ## Méthodes Référencées
18
+ - [Sans irrigation (Non irrigué / Pluvial)](none.md)
19
+ - [Goutte à goutte (Micro-irrigation)](drip.md)
20
+ - [Gravitaire (Submersion / Planches / Raies)](gravity.md)
21
+ - [Aspersion (Pivots / Enrouleurs / Couverture intégrale)](sprinkler.md)
@@ -0,0 +1,24 @@
1
+ ---
2
+ type: irrigation
3
+ id: none
4
+ title: Sans irrigation (Non irrigué / Pluvial)
5
+ description: Parcelle conduite en sec, sans équipement d'apport artificiel d'eau. Les augmentations d'humidité du sol correspondent exclusivement à des pluies ou condensations naturelles.
6
+ tags: [irrigation, rainfed, dryland]
7
+ translations:
8
+ fr: Sans irrigation (Non irrigué)
9
+ en: No irrigation (Rainfed)
10
+ es: Sin riego (Secano)
11
+ it: Senza irrigazione (In asciutta)
12
+ de: Ohne Bewässerung (Regenfeldbau)
13
+ standards:
14
+ icid: RAINFED
15
+ agrovoc: c_2393
16
+ engineering:
17
+ method: rainfed
18
+ applicationEfficiency: 1.00
19
+ wettingPatternFraction: 1.00
20
+ ---
21
+
22
+ # Sans irrigation (Rainfed)
23
+
24
+ Parcelle entièrement dépendante du régime pluviométrique naturel.
@@ -0,0 +1,24 @@
1
+ ---
2
+ type: irrigation
3
+ id: sprinkler
4
+ title: Aspersion (Pivots / Enrouleurs / Couverture)
5
+ description: Distribution de l'eau sous forme de pluie artificielle sous pression par asperseurs, canons ou rampes mobiles.
6
+ tags: [irrigation, sprinkler, overhead]
7
+ translations:
8
+ fr: Aspersion
9
+ en: Sprinkler
10
+ es: Aspersión
11
+ it: Irrigazione a pioggia
12
+ de: Beregnung
13
+ standards:
14
+ icid: SPRINKLER
15
+ agrovoc: c_7342
16
+ engineering:
17
+ method: pressurized_sprinkler
18
+ applicationEfficiency: 0.78
19
+ wettingPatternFraction: 1.00
20
+ ---
21
+
22
+ # Irrigation par Aspersion (Sprinkler Irrigation)
23
+
24
+ Système simulant une pluie aérienne sous pression.
@@ -0,0 +1,29 @@
1
+ ---
2
+ type: soil
3
+ id: clay-loam
4
+ title: Sol Argilo-Limoneux
5
+ description: Sol équilibré à dominante argileuse et limoneuse (27-40% argile, 20-45% sable), excellente rétention en eau.
6
+ tags: [soil, texture, inrae, usda, balanced]
7
+ translations:
8
+ fr: Sol Argilo-Limoneux
9
+ en: Clay Loam
10
+ es: Suelo Franco Arcilloso
11
+ it: Suolo Franco Argilloso
12
+ de: Toniger Lehmboden
13
+ standards:
14
+ inrae: AL
15
+ usda: Clay Loam
16
+ wrb: Luvisol
17
+ physics:
18
+ fieldCapacityPoint: 35.0
19
+ temporaryWiltingPoint: 20.0
20
+ permanentWiltingPoint: 16.0
21
+ bulkDensityKgM3: 1300
22
+ clayPercentageApprox: 32
23
+ sandPercentageApprox: 33
24
+ siltPercentageApprox: 35
25
+ ---
26
+
27
+ # Sol Argilo-Limoneux (Clay Loam)
28
+
29
+ Sol agricole très fertile et polyvalent, offrant une très bonne réserve utile et une bonne porosité structurale.
@@ -0,0 +1,29 @@
1
+ ---
2
+ type: soil
3
+ id: clay
4
+ title: Sol Argileux
5
+ description: Sol à forte teneur en argile (> 40%), forte capacité de rétention en eau et plasticité élevée.
6
+ tags: [soil, texture, inrae, usda, heavy]
7
+ translations:
8
+ fr: Sol Argileux
9
+ en: Clay Soil
10
+ es: Suelo Arcilloso
11
+ it: Suolo Argilloso
12
+ de: Tonboden
13
+ standards:
14
+ inrae: A
15
+ usda: Clay
16
+ wrb: Vertisol
17
+ physics:
18
+ fieldCapacityPoint: 40.0
19
+ temporaryWiltingPoint: 24.0
20
+ permanentWiltingPoint: 20.0
21
+ bulkDensityKgM3: 1250
22
+ clayPercentageApprox: 45
23
+ sandPercentageApprox: 25
24
+ siltPercentageApprox: 30
25
+ ---
26
+
27
+ # Sol Argileux (Clay)
28
+
29
+ Le sol argileux présente une réserve utile élevée mais une cinétique de ressuyage lente. Il est sensible au tassement et à l'asphyxie racinaire en période humide.
@@ -0,0 +1,26 @@
1
+ ---
2
+ type: domain
3
+ id: soils
4
+ title: Sols et Textures Pédologiques
5
+ description: Classification internationale des textures et profils de sol basée sur le triangle textural INRAE/USDA et le référentiel mondial FAO WRB.
6
+ tags: [domain, soil, pedology, physics]
7
+ translations:
8
+ fr: Sols et Textures Pédologiques
9
+ en: Soils & Pedological Textures
10
+ es: Suelos y Texturas Pedológicas
11
+ ---
12
+
13
+ # Sols et Textures Pédologiques
14
+
15
+ Ce domaine regroupe les 9 classes texturales majeures du sol avec leurs constantes physiques étalonnées pour le calcul des réserves utiles ($RU = HCC - PFP$) et le suivi capacitif.
16
+
17
+ ## Textures Référencées
18
+ - [Argileux (Clay)](clay.md)
19
+ - [Argilo-limoneux (Clay Loam)](clay-loam.md)
20
+ - [Limono-argileux (Silty Clay Loam)](silty-clay-loam.md)
21
+ - [Limoneux (Loam)](loam.md)
22
+ - [Limon fin / Limoneux très fin (Silt Loam)](silt-loam.md)
23
+ - [Sablo-argileux (Sandy Clay)](sandy-clay.md)
24
+ - [Sablo-argilo-limoneux (Sandy Clay Loam)](sandy-clay-loam.md)
25
+ - [Sablo-limoneux (Sandy Loam)](sandy-loam.md)
26
+ - [Sableux (Sand)](sand.md)
@@ -0,0 +1,29 @@
1
+ ---
2
+ type: soil
3
+ id: loam
4
+ title: Sol Limoneux / Franc
5
+ description: Sol franc idéal réunissant sable (40%), limon (40%) et argile (20%), aéré, drainant et retenant l'eau.
6
+ tags: [soil, texture, inrae, usda, fertile]
7
+ translations:
8
+ fr: Sol Limoneux / Franc
9
+ en: Loam Soil
10
+ es: Suelo Franco
11
+ it: Suolo Franco
12
+ de: Lehmboden
13
+ standards:
14
+ inrae: L
15
+ usda: Loam
16
+ wrb: Phaeozem
17
+ physics:
18
+ fieldCapacityPoint: 30.0
19
+ temporaryWiltingPoint: 15.0
20
+ permanentWiltingPoint: 12.0
21
+ bulkDensityKgM3: 1350
22
+ clayPercentageApprox: 20
23
+ sandPercentageApprox: 40
24
+ siltPercentageApprox: 40
25
+ ---
26
+
27
+ # Sol Limoneux Franc (Loam)
28
+
29
+ Texture idéale par excellence en agronomie.