Initial commit
This commit is contained in:
commit
ba447e8796
14
.env.example
Normal file
14
.env.example
Normal file
@ -0,0 +1,14 @@
|
||||
# Gemini API key used by Weaviate's Gemini vectorizer backend
|
||||
GEMINI_API_KEY=your-gemini-api-key
|
||||
|
||||
# Weaviate connection (local Docker instance)
|
||||
WEAVIATE_HOST=localhost
|
||||
WEAVIATE_HTTP_PORT=8080
|
||||
WEAVIATE_GRPC_PORT=50051
|
||||
|
||||
# Microsoft SQL Server connection
|
||||
SQL_DRIVER=ODBC Driver 17 for SQL Server
|
||||
SQL_SERVER=localhost
|
||||
SQL_DATABASE=your-database-name
|
||||
SQL_USERNAME=your-sql-username
|
||||
SQL_PASSWORD=your-sql-password
|
||||
65
.gitignore
vendored
Normal file
65
.gitignore
vendored
Normal file
@ -0,0 +1,65 @@
|
||||
# --- Secrets & local configuration ---
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
||||
# --- Runtime pipeline state ---
|
||||
.processed_manifest.json
|
||||
|
||||
# --- Python ---
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
|
||||
# Virtual environments
|
||||
venv/
|
||||
.venv/
|
||||
env/
|
||||
|
||||
# Packaging / build
|
||||
build/
|
||||
dist/
|
||||
*.egg-info/
|
||||
*.egg
|
||||
pip-wheel-metadata/
|
||||
|
||||
# Test & type-check caches
|
||||
.pytest_cache/
|
||||
.mypy_cache/
|
||||
.ruff_cache/
|
||||
.coverage
|
||||
htmlcov/
|
||||
.tox/
|
||||
.nox/
|
||||
coverage.xml
|
||||
*.cover
|
||||
.hypothesis/
|
||||
|
||||
# --- Docker (local overrides only; compose file stays tracked) ---
|
||||
docker-compose.override.yml
|
||||
docker-compose.*.local.yml
|
||||
|
||||
# --- IDE & editor ---
|
||||
.vscode/
|
||||
!.vscode/extensions.json
|
||||
!.vscode/settings.json
|
||||
.idea/
|
||||
*.sublime-project
|
||||
*.sublime-workspace
|
||||
|
||||
# Cursor / Graphify tool output (generated locally)
|
||||
graphify-out/
|
||||
.cursor/mcp.json
|
||||
|
||||
# --- OS ---
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
Desktop.ini
|
||||
ehthumbs.db
|
||||
|
||||
# --- Logs & scratch ---
|
||||
*.log
|
||||
*.tmp
|
||||
*.bak
|
||||
147
README.md
Normal file
147
README.md
Normal file
@ -0,0 +1,147 @@
|
||||
# Product Profile Ingestion
|
||||
|
||||
Data ingestion pipeline for an agricultural treatment assistant. It reads local product profile JSON files and label-chunk JSONL files, then loads them into the configured backends:
|
||||
|
||||
- **Weaviate** — stores the semantic `retrieval_summary` from product profiles in the `ProductProfile` collection for vector search.
|
||||
- **Microsoft SQL Server** — stores structured product metadata in `products`, per-crop use rules in `product_uses`, and label text chunks in `label_chunks`.
|
||||
|
||||
The pipeline is **idempotent**: a hash manifest (`.processed_manifest.json`) tracks which files have already been ingested, so re-running skips unchanged files unless `--force` is used.
|
||||
|
||||
## Prerequisites
|
||||
|
||||
- Python 3.10+
|
||||
- [Docker](https://www.docker.com/) (for local Weaviate)
|
||||
- Microsoft SQL Server with the `products`, `product_uses`, and `label_chunks` tables already created
|
||||
- [ODBC Driver for SQL Server](https://learn.microsoft.com/en-us/sql/connect/odbc/download-odbc-driver-for-sql-server) (e.g. ODBC Driver 17 or 18)
|
||||
|
||||
## Setup
|
||||
|
||||
1. **Clone the repository** and enter the project directory.
|
||||
|
||||
2. **Create a virtual environment** and install dependencies:
|
||||
|
||||
```bash
|
||||
python -m venv venv
|
||||
# Windows
|
||||
venv\Scripts\activate
|
||||
# macOS / Linux
|
||||
source venv/bin/activate
|
||||
|
||||
pip install -r requirements.txt
|
||||
```
|
||||
|
||||
3. **Configure environment variables**:
|
||||
|
||||
```bash
|
||||
cp .env.example .env
|
||||
```
|
||||
|
||||
Edit `.env` with your Gemini API key, Weaviate connection settings, and SQL Server credentials.
|
||||
|
||||
4. **Start Weaviate** (uses the Gemini `text2vec-google` vectorizer; requires v1.32+ for `taskType` support):
|
||||
|
||||
```bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
5. **Create the Weaviate collection** (or let `ingest.py` create it on first run):
|
||||
|
||||
```bash
|
||||
python setup_weaviate.py
|
||||
```
|
||||
|
||||
The `ProductProfile` collection is configured to embed `retrieval_summary` with `gemini-embedding-001` and the `RETRIEVAL_DOCUMENT` task type. If you change embedding settings on an existing database, recreate the collection:
|
||||
|
||||
```bash
|
||||
python setup_weaviate.py --recreate
|
||||
python ingest.py --force
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
Place product profile JSON files under `data/productProfiles/` and label-chunk JSONL files under `data/chunks/`, then run:
|
||||
|
||||
```bash
|
||||
# Process new or changed profile and chunk files
|
||||
python ingest.py
|
||||
|
||||
# Scan different directories
|
||||
python ingest.py --profiles-dir path/to/profiles
|
||||
python ingest.py --chunks-dir path/to/chunks
|
||||
|
||||
# Process a single file
|
||||
python ingest.py --file data/productProfiles/ramin_sc_0916.json
|
||||
python ingest.py --chunk-file data/chunks/delan_pro_16562.jsonl
|
||||
|
||||
# Reprocess everything, ignoring the manifest
|
||||
python ingest.py --force
|
||||
```
|
||||
|
||||
Profiles are processed before chunks in each run. Chunk rows reference `product_id` as a foreign key to `products`, so the matching product profile should be ingested first (the default run order handles this when both files are present).
|
||||
|
||||
Exit code `0` means all targeted files succeeded; `1` means at least one file failed (partial SQL transactions are rolled back per file).
|
||||
|
||||
## Configuration
|
||||
|
||||
| Variable | Required | Default | Description |
|
||||
|----------|----------|---------|-------------|
|
||||
| `GEMINI_API_KEY` | Yes | — | API key for Weaviate's Gemini vectorizer |
|
||||
| `WEAVIATE_HOST` | No | `localhost` | Weaviate HTTP host |
|
||||
| `WEAVIATE_HTTP_PORT` | No | `8080` | Weaviate HTTP port |
|
||||
| `WEAVIATE_GRPC_PORT` | No | `50051` | Weaviate gRPC port |
|
||||
| `SQL_DRIVER` | Yes | — | ODBC driver name (e.g. `ODBC Driver 17 for SQL Server`) |
|
||||
| `SQL_SERVER` | Yes | — | SQL Server hostname |
|
||||
| `SQL_DATABASE` | Yes | — | Database name |
|
||||
| `SQL_USERNAME` | Yes | — | SQL login |
|
||||
| `SQL_PASSWORD` | Yes | — | SQL password |
|
||||
|
||||
## Product profile JSON format
|
||||
|
||||
Each file must include at least `product_id`, `product_name`, and `retrieval_summary`. See `data/productProfiles/ramin_sc_0916.json` for a full example with metadata arrays and `uses` rules.
|
||||
|
||||
**Weaviate** receives:
|
||||
|
||||
- `product_id`, `product_name`, `retrieval_summary`
|
||||
|
||||
**SQL `products`** receives global metadata (registration, manufacturer, action flags, spray volumes, JSON-encoded arrays for ingredients, crops, diseases, etc.).
|
||||
|
||||
**SQL `product_uses`** receives one row per entry in the `uses` array (crop, disease, dose ranges, treatment intervals, growth stages, and related fields).
|
||||
|
||||
## Label chunk JSONL format
|
||||
|
||||
Each `.jsonl` file contains one JSON object per line. See `data/chunks/delan_pro_16562.jsonl` for an example.
|
||||
|
||||
**SQL `label_chunks`** receives one row per line with:
|
||||
|
||||
| JSON field | SQL column | Notes |
|
||||
|------------|------------|-------|
|
||||
| `chunk_id` | `chunk_id` | Primary key |
|
||||
| `product_id` | `product_id` | Foreign key to `products` |
|
||||
| `product_name` | `product_name` | |
|
||||
| `target_crops` | `target_crops` | Stored as JSON string via `json.dumps()` |
|
||||
| `target_diseases` | `target_diseases` | Stored as JSON string via `json.dumps()` |
|
||||
| `chunk_type` | `chunk_type` | |
|
||||
| `chunk_text` | `chunk_text` | |
|
||||
|
||||
On re-ingestion, all existing `label_chunks` rows for the file's `product_id` are deleted and replaced with the fresh set from the file.
|
||||
|
||||
## Project layout
|
||||
|
||||
```
|
||||
product_profile_ingestion/
|
||||
├── data/
|
||||
│ ├── productProfiles/ # Product profile JSON files (*.json)
|
||||
│ └── chunks/ # Label-chunk JSONL files (*.jsonl)
|
||||
├── ingest.py # Main ingestion script
|
||||
├── setup_weaviate.py # ProductProfile collection schema (Gemini embeddings)
|
||||
├── requirements.txt # Python dependencies
|
||||
├── docker-compose.yml # Local Weaviate instance
|
||||
├── .env.example # Environment variable template
|
||||
└── .processed_manifest.json # Generated at runtime (gitignored)
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
- [weaviate-client](https://weaviate.io/developers/weaviate/client-libraries/python) — Weaviate Python client
|
||||
- [pyodbc](https://github.com/mkleehammer/pyodbc) — SQL Server connectivity
|
||||
- [python-dotenv](https://github.com/theskumar/python-dotenv) — Load `.env` configuration
|
||||
33
data/chunks/aquicine_18458.jsonl
Normal file
33
data/chunks/aquicine_18458.jsonl
Normal file
@ -0,0 +1,33 @@
|
||||
{"chunk_id": "aquicine_18458_ppe_requirements_0", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["grapevine", "citrus", "olive", "lettuce", "herbs_fresh", "persimmon", "avocado", "pineapple", "potato", "tomato", "eggplant", "pepper", "strawberry"], "target_diseases": [], "chunk_type": "ppe_requirements", "chunk_text": "Utilizzare tuta completa e guanti durante le operazioni di miscelazione, carico ed applicazione del prodotto."}
|
||||
{"chunk_id": "aquicine_18458_reentry_requirements_0", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["grapevine", "citrus", "olive", "lettuce", "herbs_fresh", "persimmon", "avocado", "pineapple", "potato", "tomato", "eggplant", "pepper", "strawberry"], "target_diseases": [], "chunk_type": "reentry_requirements", "chunk_text": "Prima di accedere all’area trattata è opportuno attendere che la vegetazione sia completamente asciutta."}
|
||||
{"chunk_id": "aquicine_18458_buffer_zones_0", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["grapevine", "citrus", "olive", "lettuce", "herbs_fresh", "persimmon", "avocado", "pineapple", "potato", "tomato", "eggplant", "pepper", "strawberry"], "target_diseases": [], "chunk_type": "buffer_zones", "chunk_text": "Per proteggere gli organismi acquatici rispettare una fascia di sicurezza vegetata non trattata di 20 m dai corpi idrici superficiali."}
|
||||
{"chunk_id": "aquicine_18458_crop_instructions_0", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["grapevine", "citrus", "olive", "lettuce", "herbs_fresh", "persimmon", "avocado", "pineapple", "potato", "tomato", "eggplant", "pepper", "strawberry"], "target_diseases": ["downy mildew"], "chunk_type": "crop_instructions", "chunk_text": "AQUICINE è un fungicida sistemico e di contatto per l’impiego su vite, agrumi, olivo, lattughe e insalate, erbe fresche e fiori commestibili, kaki, avocado, frutti di piante arbustive, piccola frutta e bacche, ananas, patata, pomodoro, melanzana, peperone, fragola per il controllo della peronospora e di altre malattie fungine."}
|
||||
{"chunk_id": "aquicine_18458_crop_instructions_1", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "crop_instructions", "chunk_text": "Vite da tavola e da vino: contro Peronospora (Plasmopara viticola) iniziare i trattamenti, quando si manifestano le condizioni favorevoli allo sviluppo della malattia, a partire dal termine dello sviluppo delle foglie (BBCH > 20) e proseguirli ad intervalli di 10 giorni fino in prossimità della raccolta."}
|
||||
{"chunk_id": "aquicine_18458_dosage_instructions_0", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "Vite da tavola e da vino: Dosi di impiego: 0,75-2,5 L/ha, corrispondenti a 250 ml/hL di prodotto distribuiti con volumi d’acqua di 500-1000 L/ha. Numero massimo di trattamenti consentiti per anno: 3"}
|
||||
{"chunk_id": "aquicine_18458_crop_instructions_2", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["orange", "grapefruit", "lemon", "mandarin", "pomelo", "lime", "bergamot"], "target_diseases": ["phytophthora"], "chunk_type": "crop_instructions", "chunk_text": "AGRUMI (arancio, pompelmo, limone, mandarino, pomelo, limetta, cedro, arancio amaro, bergamotto): contro Peronospora (Phytophthora spp.) iniziare i trattamenti, quando si manifestano le condizioni favorevoli allo sviluppo della malattia, a partire dal termine di accrescimento dei germogli (BBCH > 40), e proseguirli ad intervalli di 20 giorni fino in prossimità della raccolta."}
|
||||
{"chunk_id": "aquicine_18458_dosage_instructions_1", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["orange", "grapefruit", "lemon", "mandarin", "pomelo", "lime", "bergamot"], "target_diseases": ["phytophthora"], "chunk_type": "dosage_instructions", "chunk_text": "AGRUMI (arancio, pompelmo, limone, mandarino, pomelo, limetta, cedro, arancio amaro, bergamotto): Dosi di impiego: 1,5-7,5 L/ha, corrispondenti a 150-250 ml/hL di prodotto distribuiti con volumi d’acqua di 1000-3500 L/ha. Numero massimo di trattamenti consentiti per anno: 2"}
|
||||
{"chunk_id": "aquicine_18458_crop_instructions_3", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["olive"], "target_diseases": ["olive peacock spot"], "chunk_type": "crop_instructions", "chunk_text": "Olivo: contro Occhio di pavone (Cycloconium oleaginum) effettuare un trattamento in inverno e due trattamenti in primavera distanziati di 10 giorni. Iniziare i trattamenti a partire dal termine dello sviluppo delle prime foglie (BBCH > 20)."}
|
||||
{"chunk_id": "aquicine_18458_dosage_instructions_2", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["olive"], "target_diseases": ["olive peacock spot"], "chunk_type": "dosage_instructions", "chunk_text": "Olivo: Dosi di impiego: 1,2-2,5 L/ha, corrispondenti a 150-250 ml/hL di prodotto distribuiti con volumi d’acqua di 800-1000 L/ha. Numero massimo di trattamenti consentiti per anno: 3"}
|
||||
{"chunk_id": "aquicine_18458_crop_instructions_4", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["lettuce", "escarole", "rocket", "herbs_fresh", "chervil", "chives", "celery", "parsley", "sage", "rosemary", "basil", "bay_laurel"], "target_diseases": ["downy mildew"], "chunk_type": "crop_instructions", "chunk_text": "LATTUGHE E INSALATE (lattughe, dolcetta/valerianella/gallinella, scarola/indivia a foglie larghe, crescione e altri germogli e gemme, barbarea, rucola, senape juncea, prodotti baby leaf comprese le brassicacee), ERBE FRESCHE E FIORI COMMESTIBILI (cerfoglio, erba cipollina, foglie di sedano, prezzemolo, salvia, rosmarino, timo, basilico e fiori commestibili, foglie di alloro/lauro, dragoncello): contro Peronospora (Bremia lactucae) iniziare i trattamenti, quando si manifestano le condizioni favorevoli allo sviluppo della malattia, a partire dalla comparsa della 2° foglia e proseguirli ad intervalli di 10 giorni fino in prossimità della raccolta (BBCH 12-49)."}
|
||||
{"chunk_id": "aquicine_18458_dosage_instructions_3", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["lettuce", "escarole", "rocket", "herbs_fresh", "chervil", "chives", "celery", "parsley", "sage", "rosemary", "basil", "bay_laurel"], "target_diseases": ["downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "LATTUGHE E INSALATE, ERBE FRESCHE E FIORI COMMESTIBILI: Dosi di impiego: 0,45-2,5 L/ha, corrispondenti a 150-250 ml/hL di prodotto distribuiti con volumi d’acqua di 300-1000 L/ha. Numero massimo di trattamenti consentiti per anno: 3"}
|
||||
{"chunk_id": "aquicine_18458_crop_instructions_5", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["persimmon"], "target_diseases": ["alternaria"], "chunk_type": "crop_instructions", "chunk_text": "CACHI: contro Alternaria (Alternaria alternata) iniziare i trattamenti, quando si manifestano le condizioni favorevoli allo sviluppo della malattia, a partire da quando i frutti raggiungono il 60% della dimensione finale e proseguirli ad intervalli di 15 giorni fino in prossimità della raccolta (BBCH 76-89)."}
|
||||
{"chunk_id": "aquicine_18458_dosage_instructions_4", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["persimmon"], "target_diseases": ["alternaria"], "chunk_type": "dosage_instructions", "chunk_text": "CACHI: Dosi di impiego: 2,5 L/ha, corrispondenti a 150-250 ml/hL di prodotto distribuiti con volumi d’acqua di 300-1000 L/ha. Numero massimo di trattamenti consentiti per anno: 3"}
|
||||
{"chunk_id": "aquicine_18458_crop_instructions_6", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["avocado"], "target_diseases": ["phytophthora"], "chunk_type": "crop_instructions", "chunk_text": "AVOCADO: contro Peronospora (Phytophthora cinnamomi) iniziare i trattamenti, quando si manifestano le condizioni favorevoli allo sviluppo della malattia, in tarda primavera/estate. Effettuare il 1° trattamento dall'inizio della fioritura alla caduta dei petali (BBCH 59-67); il 2° trattamento da quando il frutto ha una pezzatura di 10 mm fino ad acquisire il 50% della sua dimensione finale (BBC 71-75); il 3° trattamento da quando il frutto acquisisce il 50% della sua dimensione finale fino alla maturazione (BBC 75-85)."}
|
||||
{"chunk_id": "aquicine_18458_dosage_instructions_5", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["avocado"], "target_diseases": ["phytophthora"], "chunk_type": "dosage_instructions", "chunk_text": "AVOCADO: Dosi di impiego: 3,75 L/ha, corrispondenti a 150-250 ml/hL di prodotto distribuiti con volumi d’acqua di 500-1500 L/ha. Numero massimo di trattamenti consentiti per anno: 3"}
|
||||
{"chunk_id": "aquicine_18458_crop_instructions_7", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": [], "target_diseases": ["phytophthora"], "chunk_type": "crop_instructions", "chunk_text": "FRUTTI DI PIANTE ARBUSTIVE, PICCOLA FRUTTA E BACCHE: more di rovo, lamponi (rossi e gialli), ribes a grappoli (nero, rosso e bianco), uva spina (verde, rossa e gialla), mirtilli, azzeruolo, sambuco: contro Peronospora (Phytophthora spp.) iniziare i trattamenti, quando si manifestano le condizioni favorevoli allo sviluppo della malattia, a partire da quando i tralci raggiungono il 30% della dimensione finale e proseguirli ad intervalli di 10 giorni fino in prossimità della raccolta (BBCH 33-69)."}
|
||||
{"chunk_id": "aquicine_18458_dosage_instructions_6", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": [], "target_diseases": ["phytophthora"], "chunk_type": "dosage_instructions", "chunk_text": "FRUTTI DI PIANTE ARBUSTIVE, PICCOLA FRUTTA E BACCHE: Dosi di impiego: 0,45-2,5 L/ha, corrispondenti a 150-250 ml/hL di prodotto distribuiti con volumi d’acqua di 300-1000 L/ha. Numero massimo di trattamenti consentiti per anno: 3"}
|
||||
{"chunk_id": "aquicine_18458_crop_instructions_8", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["pineapple"], "target_diseases": ["phytophthora"], "chunk_type": "crop_instructions", "chunk_text": "ANANAS: contro Peronospora (Phytophthora nicotianae, Phytophthora cinnamomi) iniziare i trattamenti, quando si manifestano le condizioni favorevoli allo sviluppo della malattia dalla comparsa della 10° foglia e proseguirli ad intervalli di 20 giorni fino alla completa formazione del frutto (BBCH 10-79). In alternativa può essere essere effettuato un primo trattamento per immersione durante il trapianto alla dose di 150 ml/hl, ed un secondo tramite applicazioni fogliari 1 mese dopo il trapianto (BBCH 05-10) alla dose di 6,0 L/ha, corrispondenti a 150 ml/hL, distribuiti con volumi d’acqua di 3000-4000 L/ha."}
|
||||
{"chunk_id": "aquicine_18458_dosage_instructions_7", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["pineapple"], "target_diseases": ["phytophthora"], "chunk_type": "dosage_instructions", "chunk_text": "ANANAS: Dosi di impiego: 6,0 L/ha, distribuiti con volumi d’acqua di 3000-4000 L/ha. Numero massimo di trattamenti consentiti per anno: 2"}
|
||||
{"chunk_id": "aquicine_18458_crop_instructions_9", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["potato"], "target_diseases": ["late blight"], "chunk_type": "crop_instructions", "chunk_text": "PATATA: contro Peronospora (Phytophthora infestans) iniziare i trattamenti, quando si manifestano le condizioni favorevoli allo sviluppo della malattia, a partire dalla comparsa della 2° foglia e proseguirli ad intervalli di 10 giorni fino alla maturazione dei tuberi (BBCH 12-49)."}
|
||||
{"chunk_id": "aquicine_18458_dosage_instructions_8", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["potato"], "target_diseases": ["late blight"], "chunk_type": "dosage_instructions", "chunk_text": "PATATA: Dosi di impiego: 2,5 L/ha, corrispondenti a 150-250 ml/hL di prodotto distribuiti con volumi d’acqua di 300-1000 L/ha. Numero massimo di trattamenti consentiti per anno: 3"}
|
||||
{"chunk_id": "aquicine_18458_crop_instructions_10", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["tomato", "eggplant"], "target_diseases": ["late blight"], "chunk_type": "crop_instructions", "chunk_text": "POMODORO e MELANZANA (in serra): contro Peronospora (Phytophthora infestans) iniziare i trattamenti, quando si manifestano le condizioni favorevoli allo sviluppo della malattia, a partire dalla comparsa della 2° foglia e proseguirli ad intervalli di 10 giorni fino alla maturazione dei frutti (BBCH 12-89)."}
|
||||
{"chunk_id": "aquicine_18458_dosage_instructions_9", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["tomato", "eggplant"], "target_diseases": ["late blight"], "chunk_type": "dosage_instructions", "chunk_text": "POMODORO e MELANZANA (in serra): Dosi di impiego: 0,45-2,5 L/ha, corrispondenti a 150-250 ml/hL di prodotto distribuiti con volumi d’acqua di 300-1000 L/ha. Numero massimo di trattamenti consentiti per anno: 3"}
|
||||
{"chunk_id": "aquicine_18458_crop_instructions_11", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["pepper"], "target_diseases": ["phytophthora"], "chunk_type": "crop_instructions", "chunk_text": "PEPERONE (in serra): contro Peronospora (Phytophthora capsici) iniziare i trattamenti, quando si manifestano le condizioni favorevoli allo sviluppo della malattia, a partire dalla comparsa della 2° foglia e proseguirli ad intervalli di 10 giorni fino alla maturazione dei frutti (BBCH 12-89)."}
|
||||
{"chunk_id": "aquicine_18458_dosage_instructions_10", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["pepper"], "target_diseases": ["phytophthora"], "chunk_type": "dosage_instructions", "chunk_text": "PEPERONE (in serra): Dosi di impiego: 0,45-2,5 L/ha, corrispondenti a 150-250 ml/hL di prodotto distribuiti con volumi d’acqua di 300-1000 L/ha. Numero massimo di trattamenti consentiti per anno: 3"}
|
||||
{"chunk_id": "aquicine_18458_crop_instructions_12", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["strawberry"], "target_diseases": ["phytophthora"], "chunk_type": "crop_instructions", "chunk_text": "FRAGOLA (in serra): contro Peronospora (Phytophthora sp.) iniziare i trattamenti, quando si manifestano le condizioni favorevoli allo sviluppo della malattia, a partire dalla comparsa della 2° foglia e proseguirli ad intervalli di 10 giorni fino a quando i primi frutti acquisiscono il colore caratteristico della varietà (BBCH 12-89)."}
|
||||
{"chunk_id": "aquicine_18458_dosage_instructions_11", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["strawberry"], "target_diseases": ["phytophthora"], "chunk_type": "dosage_instructions", "chunk_text": "FRAGOLA (in serra): Dosi di impiego: 0,45-2,5 L/ha, corrispondenti a 150-250 ml/hL di prodotto distribuiti con volumi d’acqua di 300-1000 L/ha. Numero massimo di trattamenti consentiti per anno: 3"}
|
||||
{"chunk_id": "aquicine_18458_compatibility_0", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["grapevine", "citrus", "olive", "lettuce", "herbs_fresh", "persimmon", "avocado", "pineapple", "potato", "tomato", "eggplant", "pepper", "strawberry"], "target_diseases": [], "chunk_type": "compatibility", "chunk_text": "In caso di miscela con altri formulati, effettuare preventivamente un test di compatibilità.\nAVVERTENZE: In caso di miscela con altri formulati devono essere osservate le norme precauzionali prescritte per i prodotti più tossici. In caso di miscela con altri formulati devono essere osservati i tempi di carenza più lunghi. Qualora si verificassero casi d’intossicazione informare il medico della miscelazione compiuta."}
|
||||
{"chunk_id": "aquicine_18458_resistance_management_0", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["grapevine", "citrus", "olive", "lettuce", "herbs_fresh", "persimmon", "avocado", "pineapple", "potato", "tomato", "eggplant", "pepper", "strawberry"], "target_diseases": [], "chunk_type": "resistance_management", "chunk_text": "Per evitare o ritardare l’insorgere di fenomeni di resistenza, attenersi alle indicazioni riportate in etichetta e alternare CUNEB con prodotti aventi un differente meccanismo d’azione. Non superare il numero massimo di applicazioni indicate."}
|
||||
{"chunk_id": "aquicine_18458_reentry_requirements_1", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["strawberry", "grapevine", "citrus", "olive", "lettuce", "herbs_fresh", "avocado", "potato", "tomato", "eggplant", "pepper", "persimmon", "pineapple"], "target_diseases": [], "chunk_type": "reentry_requirements", "chunk_text": "SOSPENDERE I TRATTAMENTI 7 GIORNI PRIMA DELLA RACCOLTA PER FRAGOLA E FRUTTI DI PIANTE ARBUSTIVE, PICCOLA FRUTTA E BACCHE; 15 GIORNI PRIMA DELLA RACCOLTA PER VITE, AGRUMI, OLIVO, LATTUGHE E INSALATE, ERBE FRESCHE E FIORI COMMESTIBILI, AVOCADO, PATATA, POMODORO, MELANZANA, PEPERONE; 20 GIORNI PRIMA DELLA RACCOLTA PER CACHI; 30 GIORNI PRIMA DELLA RACCOLTA PER ANANAS"}
|
||||
{"chunk_id": "aquicine_18458_application_recommendations_0", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["grapevine", "citrus", "olive", "lettuce", "herbs_fresh", "persimmon", "avocado", "pineapple", "potato", "tomato", "eggplant", "pepper", "strawberry"], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "NON APPLICARE CON MEZZI AEREI"}
|
||||
{"chunk_id": "aquicine_18458_weather_constraints_0", "product_id": "aquicine_18458", "product_name": "AQUICINE", "target_crops": ["grapevine", "citrus", "olive", "lettuce", "herbs_fresh", "persimmon", "avocado", "pineapple", "potato", "tomato", "eggplant", "pepper", "strawberry"], "target_diseases": [], "chunk_type": "weather_constraints", "chunk_text": "OPERARE IN ASSENZA DI VENTO"}
|
||||
10
data/chunks/bagnante_sariaf_3754.jsonl
Normal file
10
data/chunks/bagnante_sariaf_3754.jsonl
Normal file
@ -0,0 +1,10 @@
|
||||
{"chunk_id": "bagnante_sariaf_3754_environmental_restrictions_0", "product_id": "bagnante_sariaf_3754", "product_name": "BAGNANTE SARIAF", "target_crops": [], "target_diseases": [], "chunk_type": "environmental_restrictions", "chunk_text": "Non contaminare l’acqua con il prodotto o il suo contenitore."}
|
||||
{"chunk_id": "bagnante_sariaf_3754_application_recommendations_0", "product_id": "bagnante_sariaf_3754", "product_name": "BAGNANTE SARIAF", "target_crops": [], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "Bagnante Sariaf è un coadiuvante a base di Sorbitan mono oleato etossilato che grazie alle sue proprietà riduce la tensione superficiale della miscela antiparassitaria. Bagnante Sariaf favorisce una migliore copertura delle colture trattate e una maggior superficie di contatto del prodotto fitosanitario con la pianta bersaglio aumentando così anche la resistenza del prodotto al dilavamento."}
|
||||
{"chunk_id": "bagnante_sariaf_3754_application_recommendations_1", "product_id": "bagnante_sariaf_3754", "product_name": "BAGNANTE SARIAF", "target_crops": [], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "Il prodotto si può applicare con qualsiasi tipo di irroratrice manuale o meccanica e le dosi variano in funzione del volume di irrorazione (normale, medio o basso), al tipo di coltura da trattare, alle sue dimensioni e dalla superficie fogliare da irrorare. Preparazione della soluzione: riempire la botte con circa 3/4 di acqua, mantenere una buona agitazione della soluzione, aggiungere Bagnante Sariaf e poi portare il serbatoio al volume finale di applicazione."}
|
||||
{"chunk_id": "bagnante_sariaf_3754_compatibility_0", "product_id": "bagnante_sariaf_3754", "product_name": "BAGNANTE SARIAF", "target_crops": [], "target_diseases": [], "chunk_type": "compatibility", "chunk_text": "Compatibilità: Bagnante Sariaf è compatibile con tutti i formulati sotto riportati e che non recano in etichetta limitazioni d’uso in miscela con coadiuvanti."}
|
||||
{"chunk_id": "bagnante_sariaf_3754_dosage_instructions_0", "product_id": "bagnante_sariaf_3754", "product_name": "BAGNANTE SARIAF", "target_crops": ["grapevine", "tomato", "potato", "melon", "watermelon", "zucchini", "garlic", "onion", "stone_fruit", "eggplant", "pome_fruit", "citrus", "olive", "walnut", "hazelnut"], "target_diseases": [], "chunk_type": "dosage_instructions", "chunk_text": "Attività Bagnante\nBagnante Sariaf si impiega per applicazioni fogliari in miscela con fungicidi, acaricidi, insetticidi alla dose di mL 50-150/hL (0.5-1.5 L/ha) come indicato nel paragrafo sottostante.\nFungicidi: Benzammidi–toluamidi (zoxamide) per applicazioni fogliari su vite, pomodoro, patata, cucurbitacee (melone, cocomero, zucchino), ortaggi a bulbo (aglio, cipolla) e principi attivi già autorizzati in associazione: morfoaniline (dimetomorf), acetammidi (cimoxanil) fosforganici-alcoilfosfonati (fosetil-al), rame. Es. ZOXIUM 240 SC, PRESIDIUM ONE, ELECTIS TRIO WDG, ELECTIS ZR, ELECTIS R FLOW\nInsetticidi/acaricidi: Carbammati (formetanate) per applicazioni fogliari su vite, drupacee, pomodoro, melanzana, cucurbitacee (melone, cocomero, zucchino), ortaggi a bulbo (aglio, cipolla). Es. DICARZOL 50 SP, DICARZOL 10 SP. Fosforganici (fosmet, clorpirifos etile, clorpirifos metile), per applicazioni fogliari su vite, pomacee, drupacee, agrumi, olivo, noce, nocciolo. Es. SPADA 50 WG, SPADA 200 EC, SPADA WDG, ROBÓ WDG, ROBÓ EC"}
|
||||
{"chunk_id": "bagnante_sariaf_3754_application_recommendations_2", "product_id": "bagnante_sariaf_3754", "product_name": "BAGNANTE SARIAF", "target_crops": ["grapevine", "pome_fruit", "stone_fruit", "citrus", "olive", "walnut", "hazelnut"], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "Attività Antideriva su fruttiferi e vite. Bagnante Sariaf impiegato alla dose di 2.5 L/ha permette di ridurre del 50% ad una distanza di 10 metri la deriva dei prodotti ai quali viene associato: - prodotti contenenti zoxamide: Es. ZOXIUM 240 SC, PRESIDIUM ONE, ELECTIS TRIO WDG, ELECTIS ZR WDG, ELECTIS R FLOW - Fosforganici (fosmet, clorpirifos) Es. SPADA 50 WG, SPADA 200 EC, SPADA WDG, ROBÓ WDG, ROBÓ EC"}
|
||||
{"chunk_id": "bagnante_sariaf_3754_reentry_requirements_0", "product_id": "bagnante_sariaf_3754", "product_name": "BAGNANTE SARIAF", "target_crops": [], "target_diseases": [], "chunk_type": "reentry_requirements", "chunk_text": "INTERVALLO: Viene rispettato l’intervallo del formulato miscelato con il Bagnante Sariaf."}
|
||||
{"chunk_id": "bagnante_sariaf_3754_application_recommendations_3", "product_id": "bagnante_sariaf_3754", "product_name": "BAGNANTE SARIAF", "target_crops": [], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "Non applicare con i mezzi aerei."}
|
||||
{"chunk_id": "bagnante_sariaf_3754_weather_constraints_0", "product_id": "bagnante_sariaf_3754", "product_name": "BAGNANTE SARIAF", "target_crops": [], "target_diseases": [], "chunk_type": "weather_constraints", "chunk_text": "Operare in assenza di vento."}
|
||||
{"chunk_id": "bagnante_sariaf_3754_ppe_requirements_0", "product_id": "bagnante_sariaf_3754", "product_name": "BAGNANTE SARIAF", "target_crops": [], "target_diseases": [], "chunk_type": "ppe_requirements", "chunk_text": "P280. Indossare guanti protettivi."}
|
||||
9
data/chunks/coesil_6771.jsonl
Normal file
9
data/chunks/coesil_6771.jsonl
Normal file
@ -0,0 +1,9 @@
|
||||
{"chunk_id": "coesil_6771_environmental_restrictions_0", "product_id": "coesil_6771", "product_name": "COESIL", "target_crops": [], "target_diseases": [], "chunk_type": "environmental_restrictions", "chunk_text": "H411 Tossico per gli organismi acquatici con effetti di lunga durata. Non contaminare l’acqua con il prodotto o il suo contenitore."}
|
||||
{"chunk_id": "coesil_6771_ppe_requirements_0", "product_id": "coesil_6771", "product_name": "COESIL", "target_crops": [], "target_diseases": [], "chunk_type": "ppe_requirements", "chunk_text": "Indossare guanti e indumenti protettivi. Proteggere gli occhi e il viso. Durante le operazioni di miscelazione e carico del prodotto usato in associazione con il bagnante indossare guanti e indumenti protettivi adatti."}
|
||||
{"chunk_id": "coesil_6771_reentry_requirements_0", "product_id": "coesil_6771", "product_name": "COESIL", "target_crops": [], "target_diseases": [], "chunk_type": "reentry_requirements", "chunk_text": "Prima di accedere ai campi trattati attendere che la vegetazione sia completamente asciutta."}
|
||||
{"chunk_id": "coesil_6771_application_recommendations_0", "product_id": "coesil_6771", "product_name": "COESIL", "target_crops": [], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "COESIL agisce abbassando la tensione superficiale ed è pertanto in grado di svolgere un’azione bagnante ed adesivante in abbinamento ai prodotti fitosanitari utilizzati per la difesa da malattie e fitofagi e per i trattamenti diserbanti. Tale azione si traduce in minori perdite di prodotto nel momento del trattamento, minor rischio di dilavamento ed in generale maggior efficacia soprattutto nei trattamenti su superfici fogliari difficili da bagnare sia per caratteristiche proprie (es. presenza di cere o peli) sia per andamenti stagionali avversi (stress idrici). Nei trattamenti insetticidi COESIL è particolarmente utile nei confronti di fitofagi protetti da loro secrezioni, quali ad esempio afidi e cocciniglie."}
|
||||
{"chunk_id": "coesil_6771_dosage_instructions_0", "product_id": "coesil_6771", "product_name": "COESIL", "target_crops": [], "target_diseases": [], "chunk_type": "dosage_instructions", "chunk_text": "MODALITA’ E DOSI DI IMPIEGO: COESIL si impiega alle dosi indicate in abbinamento alle seguenti famiglie di prodotti fitosanitari:\n• Tutti i fungicidi: 50 ml/hl (massimo 0,5 lt/ha su colture erbacee e 1 lt/ha su colture arboree)\n• Insetticidi (piretroidi): 50 ml/hl (massimo 0,5 lt/ha su colture erbacee e 1 lt/ha su colture arboree)\n• Erbicidi (solfoniluree e ormonici): 100 ml/hl (massimo 1 lt/ha)\nLe dosi massime indicate fanno riferimento a volumi massimi di trattamento di 10 hl/ha su colture erbacee e 20 hl/ha su colture arboree."}
|
||||
{"chunk_id": "coesil_6771_application_recommendations_1", "product_id": "coesil_6771", "product_name": "COESIL", "target_crops": [], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "Preparare la miscela dei prodotti fitosanitari secondo etichetta e successivamente aggiungere la dose prevista di COESIL direttamente nel serbatoio dell’irroratrice, mantenuto in costante agitazione."}
|
||||
{"chunk_id": "coesil_6771_compatibility_0", "product_id": "coesil_6771", "product_name": "COESIL", "target_crops": [], "target_diseases": [], "chunk_type": "compatibility", "chunk_text": "Non miscelare con prodotti diversi da quelli indicati. AVVERTENZA: in caso di miscela con altri formulati deve essere rispettato il periodo di carenza più lungo. Devono inoltre essere osservate le norme precauzionali prescritte per i prodotti più tossici. Qualora si verificassero casi di intossicazione informare il medico della miscelazione compiuta."}
|
||||
{"chunk_id": "coesil_6771_application_recommendations_2", "product_id": "coesil_6771", "product_name": "COESIL", "target_crops": [], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "Nel caso di associazione del bagnante con fungicidi rameici le applicazioni vanno effettuate con ugelli antideriva (riduzione del 55 %). NON APPLICARE CON MEZZI AEREI."}
|
||||
{"chunk_id": "coesil_6771_weather_constraints_0", "product_id": "coesil_6771", "product_name": "COESIL", "target_crops": [], "target_diseases": [], "chunk_type": "weather_constraints", "chunk_text": "OPERARE IN ASSENZA DI VENTO."}
|
||||
38
data/chunks/cupravit_duo_3640.jsonl
Normal file
38
data/chunks/cupravit_duo_3640.jsonl
Normal file
File diff suppressed because one or more lines are too long
21
data/chunks/cuprosar_40_wdg_3701.jsonl
Normal file
21
data/chunks/cuprosar_40_wdg_3701.jsonl
Normal file
@ -0,0 +1,21 @@
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_reentry_requirements_0", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": ["citrus", "olive", "stone_fruit", "pome_fruit", "ornamental_trees", "walnut", "almond"], "target_diseases": [], "chunk_type": "reentry_requirements", "chunk_text": "Ventilare a fondo le serre trattate fino all’essiccazione dello spray prima di accedervi. Ventilare le aree trattate e le serre fino a quando lo spray non si è asciugato prima di rientrare."}
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_buffer_zones_0", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": ["citrus", "olive", "stone_fruit", "pome_fruit", "ornamental_trees", "walnut", "almond"], "target_diseases": [], "chunk_type": "buffer_zones", "chunk_text": "Per proteggere gli organismi acquatici rispettare una fascia di sicurezza non trattata da corpi idrici superficiali di 5 metri su agrumi e olivo, e di 15 metri su drupacee, pomacee, ornamentali arboree, noce e mandorlo. Nel caso di applicazioni su drupacee, mandorlo, noce, pomacee e olivo, per proteggere le piante non bersaglio non trattare in una fascia di rispetto di 10 metri da aree non coltivate."}
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_application_recommendations_0", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": [], "target_diseases": ["bacteriosis"], "chunk_type": "application_recommendations", "chunk_text": "Il CUPROSAR 40 WDG è un fungicida in granuli idrodispersibili che agisce per contatto e si impiega nella lotta preventiva contro un gran numero di parassiti fungini sensibili al rame. Il prodotto inoltre è efficace contro numerose Batteriosi che attaccano le colture frutticole ed orticole. Il CUPROSAR 40 WDG è dotato di elevata efficacia, adesività e persistenza di azione."}
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_dosage_instructions_0", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": ["grapevine"], "target_diseases": ["downy mildew", "anthracnose", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "VITE: contro Peronospora (Plasmopara viticola), Antracnosi (Elsinoe spp., Colletorichum spp), Batteriosi (Xanthomonas spp.), intervenire alla dose di 190-625 g/hl d’acqua (1,9-2,5 kg/ha), utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 4 a 6 applicazioni per stagione, iniziando quando la vegetazione ha uno sviluppo di circa 10 cm al verificarsi delle condizioni climatiche favorevoli alle avversità e con un intervallo minimo tra i trattamenti di 7 giorni."}
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_dosage_instructions_1", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": ["apple", "pear", "quince", "medlar"], "target_diseases": ["scab", "canker", "brown rot", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "POMACEE (Melo, Pero, Cotogno, Nespolo): contro Ticchiolatura, Cancri rameali, Marciume (Nectria spp., Venturia spp., Monilia spp.), Batteriosi (Erwinia spp., Pseudomonas spp.) intervenire alla dose di 190-500 g/hl d’acqua (1,9-2,5 kg/ha), utilizzando dai 500 ai 1000 l/ha di acqua; effettuare da 2 a 4 applicazioni per stagione, sia in trattamenti autunnali (dopo la raccolta) che alla ripresa vegetativa fino alla fase di pre-fioritura al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_dosage_instructions_2", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": ["peach", "apricot", "plum", "cherry", "nectarine"], "target_diseases": ["leaf curl", "coryneum blight", "brown rot", "cylindrosporium leaf spot", "cytospora canker", "bacteriosis", "shot hole"], "chunk_type": "dosage_instructions", "chunk_text": "DRUPACEE (Pesco, albicocco, susino, ciliegio, nettarine): contro Bolla (Taphrina spp.), Corineo (Coryneum spp.), Marciume (Monilia spp.), Cilindrosporiosi del ciliegio, (Blumeriella japii), Seccume rameale (Cytospora leucostoma), Batteriosi (Pseudomonas spp.), Vaiolatura (Stigmina carpophila) intervenire alla dose di 190-625 g/hl d’acqua (1,9-2,5 kg/ha), utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 2 a 4 applicazioni per stagione sia in trattamenti autunnali (dal 50% di caduta foglie) che alla ripresa vegetativa fino alla fase di pre-fioritura al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_dosage_instructions_3", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": ["strawberry"], "target_diseases": ["phytophthora", "downy mildew", "leaf spot", "anthracnose", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "FRAGOLA in campo e in serra contro Peronospora (Phytophtora spp., Plasmopara spp.), Vaiolatura (Mycosphaerella spp.), Antracnosi (Colletotrichum spp.), Batteriosi (Xanthomonas spp., Pseudomonas spp.) intervenire alla dose di 190-625 g/hl d’acqua (1,9-2,5 kg/ha), utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 3 a 4 applicazioni a partire dalle prime fasi di sviluppo e fino alla pre-raccolta al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_dosage_instructions_4", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": ["almond", "walnut", "hazelnut", "chestnut", "pistachio"], "target_diseases": ["leaf curl", "coryneum blight", "brown rot", "bacteriosis", "shot hole", "cytospora canker", "chestnut leaf spot", "alternaria"], "chunk_type": "dosage_instructions", "chunk_text": "MANDORLO contro Bolla (Taphrina spp.), Corineo (Coryneum spp.), Marciume (Monilia spp.), Batteriosi (Pseudomonas spp.), Vaiolatura (Stigmina carpophila)e FRUTTIFERI CON FRUTTA A GUSCIO (Noce, Nocciolo, Castagno, Pistacchio) contro Batteriosi (Pseudomonas spp., Xanthomonas spp.), Mal dello stacco del nocciolo (Cytospora spp.), Fersa del castagno (Mycosphaerella spp.), Alternariosi (Alternaria spp.): intervenire alla dose di 190-500 g/hl d’acqua (1,9-2,5 kg/ha), utilizzando dai 500 ai 1000 l/ha di acqua; effettuare da 2 a 4 applicazioni per stagione sia in trattamenti autunnali (dal 50% di caduta foglie) che alla ripresa vegetativa fino alla fase di pre-fioritura al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_dosage_instructions_5", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": ["olive"], "target_diseases": ["olive peacock spot", "anthracnose", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "OLIVO: contro Occhio di Pavone (Spilocaea oleaginea), Lebbra (Gloeosporium olivarum, Colletotrichum gloeosporioides), Batteriosi (Pseudomonas spp.) intervenire alla dose di 190-415 g/hl d’acqua (1,9-2,5 kg/ha), utilizzando dai 600 ai 1000 l/ha di acqua; effettuare da 2 a 4 applicazioni per stagione iniziando alla ripresa vegetativa e fino all’invaiatura al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_dosage_instructions_6", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": ["orange", "lemon", "mandarin", "grapefruit"], "target_diseases": ["gummosis", "brown spot", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "AGRUMI (Arancio, Limone, Mandarino, Pompelmo): contro Gommosi (Phytophthora spp.), Maculatura bruna (Alternaria spp.), Piticchia batterica (Pseudomonas syringae) intervenire alla dose di 95-250 g/hl d’acqua (1,9-2,5 kg/ha), utilizzando dai 1000 ai 2000 l/ha di acqua; effettuare da 3 a 4 applicazioni per stagione iniziando alla ripresa vegetativa e proseguendo fino a due settimane prima della raccolta al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_dosage_instructions_7", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": ["tomato", "eggplant", "artichoke", "cauliflower", "broccoli", "cucumber", "gherkin", "zucchini", "melon"], "target_diseases": ["phytophthora", "downy mildew", "alternaria", "anthracnose", "leaf spot", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "SOLANACEE (Pomodoro, Melanzana) in campo e in serra; Carciofo in campo; CAVOLI A INFIORESCENZA (Cavolfiore, Cavoli broccoli) in campo; CUCURBITACEE A BUCCIA EDULE (Cetriolo, Certriolino, Zucchino) in campo e in serra; Melone in campo: contro Peronospora (Phytophthora spp., Bremia spp., Pseudoperonospora spp.), Alternariosi (Alternaria spp.), Antracnosi (Colletotrichum spp.), Marciume (Ascochyta spp.), Batteriosi (Pseudomonas spp., Xanthomonas spp.) intervenire alla dose di 190-625 g/hl d’acqua (1,9-2,5 kg/ha), utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 3 a 6 applicazioni per pomodoro e melanzana, da 3 a 5 applicazioni per carciofo, da 3 a 4 applicazioni per le altre colture a partire dalle prime fasi di sviluppo e fino alla pre-raccolta al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_dosage_instructions_8", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": ["onion", "garlic", "shallot", "lettuce"], "target_diseases": ["downy mildew", "phytophthora", "rust", "anthracnose", "alternaria", "bacteriosis", "sclerotinia"], "chunk_type": "dosage_instructions", "chunk_text": "ORTAGGI A BULBO (Cipolla, Aglio, Scalogno) in campo; LATTUGHE E INSALATE in campo e in serra: contro Peronospora (Peronospora spp., Phythophtora spp., Bremia spp.), Ruggine (Stemphylium spp.), Antracnosi (Marssonina spp., Colletotrichum spp.), Alternariosi (Alternaria spp.), Batteriosi (Pseudomonas spp., Xanthomonas spp.), Sclerotinia (Sclerotinia spp.) intervenire alla dose di 190-625 g/hl d’acqua (1,9-2,5 kg/ha), utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 3 a 4 applicazioni a partire dalle prime fasi di sviluppo e fino alla pre-raccolta al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_dosage_instructions_9", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": ["bean", "green_bean", "pea", "snow_pea", "lentil"], "target_diseases": ["anthracnose", "downy mildew", "septoria leaf blotch", "bacteriosis", "rust"], "chunk_type": "dosage_instructions", "chunk_text": "LEGUMI FRESCHI (Fagiolo, Fagiolino, Pisello, Pisello mangiatutto, Lenticchia) in campo: contro Antracnosi (Colletotrichum spp., Marssonina spp.), Peronospora (Peronospora spp.), Septoriosi (Septoria spp.), Batteriosi (Pseudomonas spp., Xanthomonas spp.), Ruggine (Uromyces spp.) intervenire alla dose di 190-625 g/hl d’acqua (1,9-2,5 kg/ha), utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 3 a 4 applicazioni a partire dalle prime fasi di sviluppo e fino alla pre-raccolta al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_dosage_instructions_10", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": ["potato"], "target_diseases": ["late blight", "alternaria", "anthracnose", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "PATATA in campo contro Peronospora (Phytophtora spp.), Alternariosi (Alternaria spp.), Antracnosi (Colletotrichum spp.), Batteriosi (Pseudomonas spp., Xanthomonas spp.) intervenire alla dose di 190-625 g/hl d’acqua (1,9-2,5 kg/ha), utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 3 a 6 applicazioni a partire dalle prime fasi di sviluppo e fino alla pre-raccolta al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_dosage_instructions_11", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": ["ornamental_plants", "forest_trees"], "target_diseases": ["downy mildew", "brown rot", "septoria leaf blotch", "anthracnose", "rust"], "chunk_type": "dosage_instructions", "chunk_text": "FLOREALI, ORNAMENTALI E FORESTALI in campo e in serra contro Peronospora (Peronospora spp.), Marciumi (Monilia spp.), Septoriosi (Septoria spp.), Antracnosi (Colletotrichum spp.), Ruggine (Puccinia spp.) intervenire alla dose di 190-625 g/hl d’acqua (1,9-2,5 kg/ha), utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 2 a 3 applicazioni durante la stagione vegetativa al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_environmental_restrictions_0", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": [], "target_diseases": [], "chunk_type": "environmental_restrictions", "chunk_text": "Al fine di ridurre al minimo il potenziale accumulo nel suolo e l'esposizione per gli organismi non bersaglio, tenendo conto al contempo delle condizioni agroclimatiche, non superare l'applicazione cumulativa di 28 kg di rame per ettaro nell'arco di 7 anni. Si raccomanda di rispettare il quantitativo applicato medio di 4 kg di rame per ettaro all'anno."}
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_compatibility_0", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": [], "target_diseases": [], "chunk_type": "compatibility", "chunk_text": "Avvertenza: In caso di miscela con altri formulati deve essere rispettato il periodo di carenza più lungo. Devono inoltre essere osservate le norme precauzionali prescritte per i prodotti più tossici. Qualora si verificassero casi di intossicazione, informare il medico della miscelazione compiuta."}
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_reentry_requirements_1", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": ["cucumber", "gherkin", "zucchini", "tomato", "eggplant", "onion", "garlic", "shallot", "bean", "green_bean", "pea", "snow_pea", "lentil", "artichoke", "melon", "lettuce", "strawberry", "citrus", "olive", "cauliflower", "broccoli", "potato", "grapevine"], "target_diseases": [], "chunk_type": "reentry_requirements", "chunk_text": "Sospendere i trattamenti 3 giorni prima della raccolta su cetriolo, cetriolino, zucchino, pomodoro e melanzana in serra, cipolla, aglio, scalogno, fagiolo, fagiolino, pisello, pisello mangiatutto, lenticchia. 7 giorni prima della raccolta di carciofo, melone, lattughe e insalate, fragola. 10 giorni su pomodoro e melanzana in campo. 14 giorni su agrumi, olivo, cavoli a infiorescenza, patata. 21 giorni su vite."}
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_phenology_constraints_0", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": ["pome_fruit", "stone_fruit", "almond", "nut_trees"], "target_diseases": [], "chunk_type": "phenology_constraints", "chunk_text": "Su pomacee, drupacee, mandorlo e fruttiferi a guscio sospendere i trattamenti prima dell’inizio della fioritura."}
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_application_recommendations_1", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": [], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "NON APPLICARE CON MEZZI AEREI"}
|
||||
{"chunk_id": "cuprosar_40_wdg_3701_weather_constraints_0", "product_id": "cuprosar_40_wdg_3701", "product_name": "CUPROSAR 40 WDG", "target_crops": [], "target_diseases": [], "chunk_type": "weather_constraints", "chunk_text": "OPERARE IN ASSENZA DI VENTO"}
|
||||
32
data/chunks/curenox_50_micro_11481.jsonl
Normal file
32
data/chunks/curenox_50_micro_11481.jsonl
Normal file
@ -0,0 +1,32 @@
|
||||
{"chunk_id": "curenox_50_micro_11481_reentry_requirements_0", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["grapevine", "apple", "pear", "quince", "medlar", "peach", "apricot", "plum", "cherry", "nectarine", "strawberry", "almond", "walnut", "hazelnut", "chestnut", "pistachio", "olive", "orange", "lemon", "mandarin", "grapefruit", "tomato", "eggplant", "pepper", "artichoke", "cauliflower", "broccoli", "cucumber", "gherkin", "zucchini", "onion", "garlic", "shallot", "lettuce", "bean", "green_bean", "pea", "snow_pea", "lentil", "ornamental_plants", "forest_trees"], "target_diseases": [], "chunk_type": "reentry_requirements", "chunk_text": "Ventilare a fondo le serre trattate fino all’essiccazione dello spray prima di accedervi."}
|
||||
{"chunk_id": "curenox_50_micro_11481_environmental_restrictions_0", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["grapevine", "apple", "pear", "quince", "medlar", "peach", "apricot", "plum", "cherry", "nectarine", "strawberry", "almond", "walnut", "hazelnut", "chestnut", "pistachio", "olive", "orange", "lemon", "mandarin", "grapefruit", "tomato", "eggplant", "pepper", "artichoke", "cauliflower", "broccoli", "cucumber", "gherkin", "zucchini", "onion", "garlic", "shallot", "lettuce", "bean", "green_bean", "pea", "snow_pea", "lentil", "ornamental_plants", "forest_trees"], "target_diseases": [], "chunk_type": "environmental_restrictions", "chunk_text": "Non contaminare l’acqua con il prodotto o il suo contenitore. Non pulire il materiale d’applicazione in prossimità delle acque di superficie. Evitare la contaminazione attraverso i sistemi di scolo delle acque dalle aziende agricole e dalle strade."}
|
||||
{"chunk_id": "curenox_50_micro_11481_buffer_zones_0", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["citrus", "olive", "peach", "apricot", "plum", "cherry", "nectarine", "apple", "pear", "quince", "medlar", "ornamental_trees", "walnut", "almond"], "target_diseases": [], "chunk_type": "buffer_zones", "chunk_text": "Per proteggere gli organismi acquatici rispettare una fascia di sicurezza non trattata da corpi idrici superficiali di 5 metri su agrumi e olivo, e di 15 metri su drupacee, pomacee, ornamentali arboree, noce e mandorlo."}
|
||||
{"chunk_id": "curenox_50_micro_11481_buffer_zones_1", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["peach", "apricot", "plum", "cherry", "nectarine", "almond", "walnut", "apple", "pear", "quince", "medlar", "olive"], "target_diseases": [], "chunk_type": "buffer_zones", "chunk_text": "Nel caso di applicazioni su drupacee, mandorlo, noce, pomacee e olivo, per proteggere le piante non bersaglio non trattare in una fascia di rispetto di 10 metri da aree non coltivate."}
|
||||
{"chunk_id": "curenox_50_micro_11481_dosage_instructions_0", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["grapevine"], "target_diseases": ["downy mildew", "anthracnose", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "VITE: contro Peronospora (Plasmopara viticola), Antracnosi (Elsinoe spp., Colletorichum spp), Batteriosi (Xanthomonas spp.), intervenire alla dose di 150-500 g/hl d’acqua (1,5-2 kg/ha), utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 4 a 6 applicazioni per stagione, con un intervallo minimo tra i trattamenti di 7 giorni."}
|
||||
{"chunk_id": "curenox_50_micro_11481_crop_instructions_0", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["grapevine"], "target_diseases": ["downy mildew", "anthracnose", "bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "Su VITE: iniziare quando la vegetazione ha uno sviluppo di circa 10 cm al verificarsi delle condizioni climatiche favorevoli alle avversità."}
|
||||
{"chunk_id": "curenox_50_micro_11481_dosage_instructions_1", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["apple", "pear", "quince", "medlar"], "target_diseases": ["scab", "canker", "brown rot", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "POMACEE (Melo, Pero, Cotogno, Nespolo): contro Ticchiolatura, Cancri rameali, Marciume (Nectria spp., Venturia spp., Monilia spp.), Batteriosi (Erwinia spp., Pseudomonas spp.) intervenire alla dose di 150-400 g/hl d’acqua (1,5-2 kg/ha), utilizzando dai 500 ai 1000 l/ha di acqua; effettuare da 2 a 4 applicazioni per stagione, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "curenox_50_micro_11481_crop_instructions_1", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["apple", "pear", "quince", "medlar"], "target_diseases": ["scab", "canker", "brown rot", "bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "Su POMACEE (Melo, Pero, Cotogno, Nespolo): effettuare sia in trattamenti autunnali (dopo la raccolta) che alla ripresa vegetativa fino alla fase di pre-fioritura al verificarsi delle condizioni favorevoli alle avversità."}
|
||||
{"chunk_id": "curenox_50_micro_11481_dosage_instructions_2", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["peach", "apricot", "plum", "cherry", "nectarine"], "target_diseases": ["leaf curl", "coryneum blight", "brown rot", "cylindrosporium leaf spot", "cytospora canker", "bacteriosis", "shot hole"], "chunk_type": "dosage_instructions", "chunk_text": "DRUPACEE (Pesco, albicocco, susino, ciliegio, nettarine): contro Bolla (Taphrina spp.), Corineo (Coryneum spp.), Marciume (Monilia spp.), Cilindrosporiosi del ciliegio (Blumeriella japii), Seccume rameale (Cytospora leucostoma), Batteriosi (Pseudomonas spp.), Vaiolatura (Stigmina carpophila) intervenire alla dose di 150-500 g/hl d’acqua (1,5-2 kg/ha), utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 2 a 4 applicazioni per stagione con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "curenox_50_micro_11481_crop_instructions_2", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["peach", "apricot", "plum", "cherry", "nectarine"], "target_diseases": ["leaf curl", "coryneum blight", "brown rot", "cylindrosporium leaf spot", "cytospora canker", "bacteriosis", "shot hole"], "chunk_type": "crop_instructions", "chunk_text": "Su DRUPACEE (Pesco, albicocco, susino, ciliegio, nettarine): effettuare sia in trattamenti autunnali (dal 50% di caduta foglie) che alla ripresa vegetativa fino alla fase di pre-fioritura al verificarsi delle condizioni favorevoli alle avversità."}
|
||||
{"chunk_id": "curenox_50_micro_11481_dosage_instructions_3", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["strawberry"], "target_diseases": ["phytophthora", "downy mildew", "shot hole", "anthracnose", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "FRAGOLA in campo e in serra contro Peronospora (Phytophtora spp., Plasmopara spp.), Vaiolatura (Mycosphaerella spp.), Antracnosi (Colletotrichum spp.), Batteriosi (Xanthomonas spp., Pseudomonas spp.) intervenire alla dose di 150-500 g/hl d’acqua (1,5-2 kg/ha), utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 3 a 4 applicazioni con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "curenox_50_micro_11481_crop_instructions_3", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["strawberry"], "target_diseases": ["phytophthora", "downy mildew", "shot hole", "anthracnose", "bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "Su FRAGOLA in campo e in serra: effettuare applicazioni a partire dalle prime fasi di sviluppo e fino alla pre-raccolta al verificarsi delle condizioni favorevoli alle avversità."}
|
||||
{"chunk_id": "curenox_50_micro_11481_dosage_instructions_4", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["almond", "walnut", "hazelnut", "chestnut", "pistachio"], "target_diseases": ["leaf curl", "coryneum blight", "brown rot", "bacteriosis", "shot hole", "cytospora canker", "chestnut leaf spot", "alternaria"], "chunk_type": "dosage_instructions", "chunk_text": "MANDORLO contro Bolla (Taphrina spp.), Corineo (Coryneum spp.), Marciume (Monilia spp.), Batteriosi (Pseudomonas spp.), Vaiolatura (Stigmina carpophila) e FRUTTIFERI CON FRUTTA A GUSCIO (Noce, Nocciolo, Castagno, Pistacchio) contro Batteriosi (Pseudomonas spp., Xanthomonas spp.), Mal dello stacco del nocciolo (Cytospora spp.), Fersa del castagno (Mycosphaerella spp.), Alternariosi (Alternaria spp.): intervenire alla dose di 150-400 g/hl d’acqua (1,5-2 kg/ha), utilizzando dai 500 ai 1000 l/ha di acqua; effettuare da 2 a 4 applicazioni per stagione con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "curenox_50_micro_11481_crop_instructions_4", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["almond", "walnut", "hazelnut", "chestnut", "pistachio"], "target_diseases": ["leaf curl", "coryneum blight", "brown rot", "bacteriosis", "shot hole", "cytospora canker", "chestnut leaf spot", "alternaria"], "chunk_type": "crop_instructions", "chunk_text": "Su MANDORLO e FRUTTIFERI CON FRUTTA A GUSCIO (Noce, Nocciolo, Castagno, Pistacchio): effettuare sia in trattamenti autunnali (dal 50% di caduta foglie) che alla ripresa vegetativa fino alla fase di pre-fioritura al verificarsi delle condizioni favorevoli alle avversità."}
|
||||
{"chunk_id": "curenox_50_micro_11481_dosage_instructions_5", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["olive"], "target_diseases": ["olive peacock spot", "anthracnose", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "OLIVO: contro Occhio di Pavone (Spilocea oleaginea), Lebbra (Gloeosporium olivarum, Colletotrichum gloeosporioides), Batteriosi (Pseudomonas spp.) intervenire alla dose di 150-330 g/hl d’acqua (1,5-2 kg/ha), utilizzando dai 600 ai 1000 l/ha di acqua; effettuare da 2 a 4 applicazioni per stagione con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "curenox_50_micro_11481_crop_instructions_5", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["olive"], "target_diseases": ["olive peacock spot", "anthracnose", "bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "Su OLIVO: iniziare alla ripresa vegetativa e fino all’invaiatura al verificarsi delle condizioni favorevoli alle avversità."}
|
||||
{"chunk_id": "curenox_50_micro_11481_dosage_instructions_6", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["orange", "lemon", "mandarin", "grapefruit"], "target_diseases": ["gummosis", "brown spot", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "AGRUMI (Arancio, Limone, Mandarino, Pompelmo): contro Gommosi (Phytophthora spp.), Maculatura bruna (Alternaria spp.), Piticchia batterica (Pseudomonas syringae) intervenire alla dose di 75-200 g/hl d’acqua (1,5-2 kg/ha), utilizzando dai 1000 ai 2000 l/ha di acqua; effettuare da 3 a 4 applicazioni per stagione con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "curenox_50_micro_11481_crop_instructions_6", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["orange", "lemon", "mandarin", "grapefruit"], "target_diseases": ["gummosis", "brown spot", "bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "Su AGRUMI (Arancio, Limone, Mandarino, Pompelmo): iniziare alla ripresa vegetativa e proseguendo fino a due settimane prima della raccolta al verificarsi delle condizioni favorevoli alle avversità."}
|
||||
{"chunk_id": "curenox_50_micro_11481_dosage_instructions_7", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["tomato", "eggplant", "pepper", "artichoke", "cauliflower", "broccoli", "cucumber", "gherkin", "zucchini"], "target_diseases": ["downy mildew", "alternaria", "anthracnose", "leaf spot", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "SOLANACEE (Pomodoro, Melanzana, Peperone) in campo e in serra; Carciofo in campo; CAVOLI A INFIORESCENZA (Cavolfiore, Cavoli broccoli) in campo; CUCURBITACEE A BUCCIA EDULE (Cetriolo, Cetriolino, Zucchino) in campo e in serra: contro Peronospora (Phytophthora spp., Bremia spp., Pseudoperonospora spp.), Alternariosi (Alternaria spp.), Antracnosi (Colletotrichum spp.), Marciume (Ascochyta spp.), Batteriosi (Pseudomonas spp., Xanthomonas spp.) intervenire alla dose di 150-500 g/hl d’acqua (1,5-2 kg/ha), utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 3 a 6 applicazioni per pomodoro e melanzana, da 3 a 5 applicazioni per carciofo, da 3 a 4 applicazioni per le altre colture, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "curenox_50_micro_11481_crop_instructions_7", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["tomato", "eggplant", "pepper", "artichoke", "cauliflower", "broccoli", "cucumber", "gherkin", "zucchini"], "target_diseases": ["downy mildew", "alternaria", "anthracnose", "leaf spot", "bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "Su SOLANACEE, Carciofo, CAVOLI A INFIORESCENZA, CUCURBITACEE A BUCCIA EDULE: effettuare applicazioni a partire dalle prime fasi di sviluppo e fino alla pre-raccolta al verificarsi delle condizioni favorevoli alle avversità."}
|
||||
{"chunk_id": "curenox_50_micro_11481_dosage_instructions_8", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["onion", "garlic", "shallot", "lettuce"], "target_diseases": ["downy mildew", "phytophthora", "rust", "anthracnose", "alternaria", "bacteriosis", "sclerotinia"], "chunk_type": "dosage_instructions", "chunk_text": "ORTAGGI A BULBO (Cipolla, Aglio, Scalogno) in campo; LATTUGHE E INSALATE in campo e in serra: contro Peronospora (Peronospora spp., Phytophtora spp., Bremia spp.), Ruggine (Stemphylium spp.), Antracnosi (Marssonina spp., Colletotrichum spp.), Alternariosi (Alternaria spp.), Batteriosi (Pseudomonas spp., Xanthomonas spp.), Sclerotinia (Sclerotinia spp.) intervenire alla dose di 150-500 g/hl d’acqua (1,5-2 kg/ha), utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 3 a 4 applicazioni con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "curenox_50_micro_11481_crop_instructions_8", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["onion", "garlic", "shallot", "lettuce"], "target_diseases": ["downy mildew", "phytophthora", "rust", "anthracnose", "alternaria", "bacteriosis", "sclerotinia"], "chunk_type": "crop_instructions", "chunk_text": "Su ORTAGGI A BULBO e LATTUGHE E INSALATE: effettuare applicazioni a partire dalle prime fasi di sviluppo e fino alla pre-raccolta al verificarsi delle condizioni favorevoli alle avversità."}
|
||||
{"chunk_id": "curenox_50_micro_11481_application_recommendations_0", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["grapevine", "apple", "pear", "quince", "medlar", "peach", "apricot", "plum", "cherry", "nectarine", "strawberry", "almond", "walnut", "hazelnut", "chestnut", "pistachio", "olive", "orange", "lemon", "mandarin", "grapefruit", "tomato", "eggplant", "pepper", "artichoke", "cauliflower", "broccoli", "cucumber", "gherkin", "zucchini", "onion", "garlic", "shallot", "lettuce", "bean", "green_bean", "pea", "snow_pea", "lentil", "ornamental_plants", "forest_trees"], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "Sospendere in poca acqua la dose di prodotto, mescolare sino ad ottenere una poltiglia fluida, aggiungere altra acqua e versare nel totale quantitativo d’acqua richiesto."}
|
||||
{"chunk_id": "curenox_50_micro_11481_dosage_instructions_9", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["bean", "green_bean", "pea", "snow_pea", "lentil"], "target_diseases": ["anthracnose", "downy mildew", "septoria leaf blotch", "bacteriosis", "rust"], "chunk_type": "dosage_instructions", "chunk_text": "LEGUMI FRESCHI (fagiolo, fagiolino, pisello, pisello mangiatutto, lenticchia) in campo: contro Antracnosi (Colletotrichum spp., Marssonina spp.), Peronospora (Peronospora spp.), Septoriosi (Septoria spp.), Batteriosi (Pseudomonas spp., Xanthomonas spp.), Ruggine (Uromyces spp.) intervenire alla dose di 150-500 g/hl d’acqua (1,5-2 kg/ha), utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 3 a 4 applicazioni con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "curenox_50_micro_11481_crop_instructions_9", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["bean", "green_bean", "pea", "snow_pea", "lentil"], "target_diseases": ["anthracnose", "downy mildew", "septoria leaf blotch", "bacteriosis", "rust"], "chunk_type": "crop_instructions", "chunk_text": "Su LEGUMI FRESCHI: effettuare applicazioni a partire dalle prime fasi di sviluppo e fino alla pre-raccolta al verificarsi delle condizioni favorevoli alle avversità."}
|
||||
{"chunk_id": "curenox_50_micro_11481_dosage_instructions_10", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["ornamental_plants", "forest_trees"], "target_diseases": ["downy mildew", "brown rot", "septoria leaf blotch", "anthracnose", "rust"], "chunk_type": "dosage_instructions", "chunk_text": "FLOREALI, ORNAMENTALI E FORESTALI in campo e in serra contro Peronospora (Peronospora spp.), Marciumi (Monilia spp.), Septoriosi (Septoria spp.), Antracnosi (Colletotrichum spp.), Ruggine (Puccinia spp.) intervenire alla dose di 150-500 g/hl d’acqua (1,5-2 kg/ha) utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 2 a 3 applicazioni durante la stagione vegetativa al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "curenox_50_micro_11481_resistance_management_0", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["grapevine", "apple", "pear", "quince", "medlar", "peach", "apricot", "plum", "cherry", "nectarine", "strawberry", "almond", "walnut", "hazelnut", "chestnut", "pistachio", "olive", "orange", "lemon", "mandarin", "grapefruit", "tomato", "eggplant", "pepper", "artichoke", "cauliflower", "broccoli", "cucumber", "gherkin", "zucchini", "onion", "garlic", "shallot", "lettuce", "bean", "green_bean", "pea", "snow_pea", "lentil", "ornamental_plants", "forest_trees"], "target_diseases": [], "chunk_type": "resistance_management", "chunk_text": "Al fine di ridurre al minimo il potenziale accumulo nel suolo e l'esposizione per gli organismi non bersaglio, tenendo conto al contempo delle condizioni agroclimatiche, non superare l'applicazione cumulativa di 28 kg di rame per ettaro nell'arco di 7 anni. Si raccomanda di rispettare il quantitativo applicato medio di 4 kg di rame per ettaro all'anno."}
|
||||
{"chunk_id": "curenox_50_micro_11481_compatibility_0", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["grapevine", "apple", "pear", "quince", "medlar", "peach", "apricot", "plum", "cherry", "nectarine", "strawberry", "almond", "walnut", "hazelnut", "chestnut", "pistachio", "olive", "orange", "lemon", "mandarin", "grapefruit", "tomato", "eggplant", "pepper", "artichoke", "cauliflower", "broccoli", "cucumber", "gherkin", "zucchini", "onion", "garlic", "shallot", "lettuce", "bean", "green_bean", "pea", "snow_pea", "lentil", "ornamental_plants", "forest_trees"], "target_diseases": [], "chunk_type": "compatibility", "chunk_text": "COMPATIBILITÀ\nAvvertenza: In caso di miscela con altri formulati deve essere rispettato il periodo di carenza più lungo. Devono inoltre essere osservate le norme precauzionali prescritte per i prodotti più tossici. Qualora si verificassero casi di intossicazione, informare il medico della miscelazione compiuta."}
|
||||
{"chunk_id": "curenox_50_micro_11481_reentry_requirements_1", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["cucumber", "gherkin", "zucchini", "tomato", "eggplant", "onion", "garlic", "shallot", "bean", "green_bean", "pea", "snow_pea", "lentil", "artichoke", "lettuce", "strawberry", "citrus", "olive", "pepper", "cauliflower", "broccoli", "grapevine"], "target_diseases": [], "chunk_type": "reentry_requirements", "chunk_text": "Sospendere i trattamenti:\n- 3 giorni prima della raccolta su cetriolo, cetriolino, zucchino, pomodoro e melanzana in serra, cipolla, aglio, scalogno, fagiolo, fagiolino, pisello, pisello mangiatutto, lenticchia.\n- 7 giorni prima della raccolta di carciofo, lattughe e insalate, fragola.\n- 10 giorni su pomodoro e melanzana in campo.\n- 14 giorni su agrumi, olivo, peperone, cavoli a infiorescenza.\n- 21 giorni su vite."}
|
||||
{"chunk_id": "curenox_50_micro_11481_phenology_constraints_0", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["apple", "pear", "quince", "medlar", "peach", "apricot", "plum", "cherry", "nectarine", "almond", "walnut", "hazelnut", "chestnut", "pistachio"], "target_diseases": [], "chunk_type": "phenology_constraints", "chunk_text": "Su pomacee, drupacee, mandorlo e fruttiferi a guscio sospendere i trattamenti prima dell’inizio della fioritura."}
|
||||
{"chunk_id": "curenox_50_micro_11481_application_recommendations_1", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["grapevine", "apple", "pear", "quince", "medlar", "peach", "apricot", "plum", "cherry", "nectarine", "strawberry", "almond", "walnut", "hazelnut", "chestnut", "pistachio", "olive", "orange", "lemon", "mandarin", "grapefruit", "tomato", "eggplant", "pepper", "artichoke", "cauliflower", "broccoli", "cucumber", "gherkin", "zucchini", "onion", "garlic", "shallot", "lettuce", "bean", "green_bean", "pea", "snow_pea", "lentil", "ornamental_plants", "forest_trees"], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "NON APPLICARE CON MEZZI AEREI"}
|
||||
{"chunk_id": "curenox_50_micro_11481_weather_constraints_0", "product_id": "curenox_50_micro_11481", "product_name": "CURENOX 50 MICRO", "target_crops": ["grapevine", "apple", "pear", "quince", "medlar", "peach", "apricot", "plum", "cherry", "nectarine", "strawberry", "almond", "walnut", "hazelnut", "chestnut", "pistachio", "olive", "orange", "lemon", "mandarin", "grapefruit", "tomato", "eggplant", "pepper", "artichoke", "cauliflower", "broccoli", "cucumber", "gherkin", "zucchini", "onion", "garlic", "shallot", "lettuce", "bean", "green_bean", "pea", "snow_pea", "lentil", "ornamental_plants", "forest_trees"], "target_diseases": [], "chunk_type": "weather_constraints", "chunk_text": "OPERARE IN ASSENZA DI VENTO"}
|
||||
21
data/chunks/curenox_flow_38_1849.jsonl
Normal file
21
data/chunks/curenox_flow_38_1849.jsonl
Normal file
@ -0,0 +1,21 @@
|
||||
{"chunk_id": "curenox_flow_38_1849_reentry_requirements_0", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["tomato", "eggplant", "pepper", "artichoke", "cauliflower", "broccoli", "cucumber", "gherkin", "zucchini", "onion", "garlic", "shallot", "lettuce", "bean", "green_bean", "pea", "snow_pea", "lentil", "ornamental_plants", "forest_trees"], "target_diseases": [], "chunk_type": "reentry_requirements", "chunk_text": "Ventilare a fondo le serre trattate fino all’essiccazione dello spray prima di accedervi."}
|
||||
{"chunk_id": "curenox_flow_38_1849_environmental_restrictions_0", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["grapevine", "apple", "pear", "quince", "medlar", "peach", "apricot", "plum", "cherry", "nectarine", "almond", "olive", "citrus", "orange", "lemon", "mandarin", "grapefruit", "tomato", "eggplant", "pepper", "artichoke", "cauliflower", "broccoli", "cucumber", "gherkin", "zucchini", "onion", "garlic", "shallot", "lettuce", "bean", "green_bean", "pea", "snow_pea", "lentil", "ornamental_plants", "forest_trees"], "target_diseases": [], "chunk_type": "environmental_restrictions", "chunk_text": "Non contaminare l’acqua con il prodotto o il suo contenitore. Non pulire il materiale d’applicazione in prossimità delle acque di superficie. Evitare la contaminazione attraverso i sistemi di scolo delle acque dalle aziende agricole e dalle strade."}
|
||||
{"chunk_id": "curenox_flow_38_1849_buffer_zones_0", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["citrus", "olive", "peach", "apricot", "plum", "cherry", "nectarine", "apple", "pear", "quince", "medlar", "ornamental_trees", "almond"], "target_diseases": [], "chunk_type": "buffer_zones", "chunk_text": "Per proteggere gli organismi acquatici rispettare una fascia di sicurezza non trattata da corpi idrici superficiali di 5 metri su agrumi e olivo, e di 15 metri su drupacee, pomacee, ornamentali arboree e mandorlo."}
|
||||
{"chunk_id": "curenox_flow_38_1849_buffer_zones_1", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["peach", "apricot", "plum", "cherry", "nectarine", "almond", "apple", "pear", "quince", "medlar", "olive"], "target_diseases": [], "chunk_type": "buffer_zones", "chunk_text": "Nel caso di applicazioni su drupacee, mandorlo, pomacee e olivo, per proteggere le piante non bersaglio non trattare in una fascia di rispetto di 10 metri da aree non coltivate."}
|
||||
{"chunk_id": "curenox_flow_38_1849_dosage_instructions_0", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "VITE: contro Peronospora (Plasmopara viticola), intervenire alla dose di 200-650 ml/hl d’acqua (2-2,6 l/ha), utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 4 a 6 applicazioni per stagione, iniziando quando la vegetazione ha uno sviluppo di circa 10 cm al verificarsi delle condizioni climatiche favorevoli alle avversità e con un intervallo minimo tra i trattamenti di 7 giorni."}
|
||||
{"chunk_id": "curenox_flow_38_1849_dosage_instructions_1", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["apple", "pear", "quince", "medlar"], "target_diseases": ["scab", "canker", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "POMACEE (Melo, Pero, Cotogno, Nespolo): contro Ticchiolatura, Cancri rameali (Nectria spp.), Ticchiolatura (Venturia spp.), Batteriosi (Erwinia spp., Pseudomonas spp.) intervenire alla dose di 200-525 ml/hl d’acqua (2-2,6 l/ha), utilizzando dai 500 ai 1000 l/ha di acqua; effettuare da 2 a 4 applicazioni per stagione, sia in trattamenti autunnali (dopo la raccolta) che alla ripresa vegetativa fino alla fase di pre-fioritura al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "curenox_flow_38_1849_dosage_instructions_2", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["peach", "apricot", "plum", "cherry", "nectarine"], "target_diseases": ["coryneum blight", "cylindrosporium leaf spot", "cytospora canker", "bacteriosis", "shot hole"], "chunk_type": "dosage_instructions", "chunk_text": "DRUPACEE (Pesco, albicocco, susino, ciliegio, nettarine): contro Corineo (Coryneum spp.), Cilindrosporiosi del ciliegio (Blumeriella japii), Seccume rameale (Cytospora leucostoma), Batteriosi (Pseudomonas spp.), Vaiolatura (Stigmina carpophila) intervenire alla dose di 200-650 ml/hl d’acqua (2-2,6 l/ha), utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 2 a 4 applicazioni per stagione sia in trattamenti autunnali (dal 50% di caduta foglie) che alla ripresa vegetativa fino alla fase di pre-fioritura al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "curenox_flow_38_1849_dosage_instructions_3", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["almond"], "target_diseases": ["coryneum blight", "bacteriosis", "shot hole"], "chunk_type": "dosage_instructions", "chunk_text": "MANDORLO contro Corineo (Coryneum spp.), Batteriosi (Pseudomonas spp.), Vaiolatura (Stigmina carpophila): intervenire alla dose di 200-525 ml/hl d’acqua (2-2,6 l/ha), utilizzando dai 500 ai 1000 l/ha di acqua; effettuare da 2 a 4 applicazioni per stagione sia in trattamenti autunnali (dal 50% di caduta foglie) che alla ripresa vegetativa fino alla fase di pre-fioritura al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "curenox_flow_38_1849_dosage_instructions_4", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["olive"], "target_diseases": ["olive peacock spot", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "OLIVO: contro Occhio di Pavone (Spilocea oleaginea), Batteriosi (Pseudomonas spp.) intervenire alla dose di 200-430 ml/hl d’acqua (2-2,6 l/ha), utilizzando dai 600 ai 1000 l/ha di acqua; effettuare da 2 a 4 applicazioni per stagione iniziando alla ripresa vegetativa e fino all’invaiatura al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "curenox_flow_38_1849_dosage_instructions_5", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["orange", "lemon", "mandarin", "grapefruit"], "target_diseases": ["alternaria", "mal secco", "anthracnose", "sooty mould"], "chunk_type": "dosage_instructions", "chunk_text": "AGRUMI (Arancio, Limone, Mandarino, Pompelmo): contro Maculatura bruna (Alternaria spp.), intervenire alla dose di 100-260 ml/hl d’acqua (2-2,6 l/ha), utilizzando dai 1000 ai 2000 l/ha di acqua; effettuare da 3 a 4 applicazioni per stagione iniziando alla ripresa vegetativa e proseguendo fino a due settimane prima della raccolta al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni. contro Mal secco, Antracnosi e Fumaggine 400 ml/hl."}
|
||||
{"chunk_id": "curenox_flow_38_1849_dosage_instructions_6", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["tomato", "eggplant", "pepper", "artichoke", "cauliflower", "broccoli", "cucumber", "gherkin", "zucchini"], "target_diseases": ["phytophthora", "downy mildew", "alternaria", "anthracnose", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "SOLANACEE (Pomodoro, Melanzana, Peperone) in campo e in serra; Carciofo in campo; CAVOLI A INFIORESCENZA (Cavolfiore, Cavoli broccoli) in campo; CUCURBITACEE A BUCCIA EDULE (Cetriolo, Cetriolino, Zucchino) in campo e in serra: contro Peronospora (Phytophthora spp., Bremia spp., Pseudoperonospora spp.), Alternariosi (Alternaria spp.), Antracnosi (Colletotrichum spp.), Batteriosi (Pseudomonas spp., Xanthomonas spp.) intervenire alla dose di 200-650 ml/hl d’acqua (2-2,6 l/ha), utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 3 a 6 applicazioni per pomodoro e melanzana, da 3 a 5 applicazioni per carciofo, da 3 a 4 applicazioni per le altre colture a partire dalle prime fasi di sviluppo e fino alla pre-raccolta al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "curenox_flow_38_1849_dosage_instructions_7", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["onion", "garlic", "shallot", "lettuce"], "target_diseases": ["downy mildew", "phytophthora", "rust", "anthracnose", "alternaria"], "chunk_type": "dosage_instructions", "chunk_text": "ORTAGGI A BULBO (Cipolla, Aglio, Scalogno) in campo; LATTUGHE E INSALATE in campo e in serra: contro Peronospora (Peronospora spp., Phytophtora spp., Bremia spp.), Ruggine (Stemphylium spp.), Antracnosi (Marssonina spp., Colletotrichum spp.), Alternariosi (Alternaria spp.), intervenire alla dose di 200-650 ml/hl d’acqua (2-2,6 l/ha), utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 3 a 4 applicazioni a partire dalle prime fasi di sviluppo e fino alla pre-raccolta al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "curenox_flow_38_1849_dosage_instructions_8", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["bean", "green_bean", "pea", "snow_pea", "lentil"], "target_diseases": ["anthracnose", "downy mildew", "septoria leaf blotch", "rust"], "chunk_type": "dosage_instructions", "chunk_text": "LEGUMI FRESCHI (fagiolo, fagiolino, pisello, pisello mangiatutto, lenticchia) in campo: contro Antracnosi (Colletotrichum spp., Marssonina spp.), Peronospora (Peronospora spp.), Septoriosi (Septoria spp.), Ruggine (Uromyces spp.) intervenire alla dose di 200-650 ml/hl d’acqua (2-2,6 l/ha), utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 3 a 4 applicazioni a partire dalle prime fasi di sviluppo e fino alla pre-raccolta al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "curenox_flow_38_1849_dosage_instructions_9", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["ornamental_plants", "forest_trees"], "target_diseases": ["downy mildew", "rust"], "chunk_type": "dosage_instructions", "chunk_text": "FLOREALI, ORNAMENTALI E FORESTALI in campo e in serra contro Peronospora (Peronospora spp.), Ruggine (Puccinia spp.) intervenire alla dose di 200-650 ml/hl d’acqua (2-2,6 l/ha) utilizzando dai 400 ai 1000 l/ha di acqua; effettuare da 2 a 3 applicazioni durante la stagione vegetativa al verificarsi delle condizioni favorevoli alle avversità, con un intervallo tra i trattamenti minimo di 7 giorni."}
|
||||
{"chunk_id": "curenox_flow_38_1849_environmental_restrictions_1", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["grapevine", "apple", "pear", "quince", "medlar", "peach", "apricot", "plum", "cherry", "nectarine", "almond", "olive", "citrus", "orange", "lemon", "mandarin", "grapefruit", "tomato", "eggplant", "pepper", "artichoke", "cauliflower", "broccoli", "cucumber", "gherkin", "zucchini", "onion", "garlic", "shallot", "lettuce", "bean", "green_bean", "pea", "snow_pea", "lentil", "ornamental_plants", "forest_trees"], "target_diseases": [], "chunk_type": "environmental_restrictions", "chunk_text": "Al fine di ridurre al minimo il potenziale accumulo nel suolo e l'esposizione per gli organismi non bersaglio, tenendo conto al contempo delle condizioni agroclimatiche, non superare l'applicazione cumulativa di 28 kg di rame per ettaro nell'arco di 7 anni. Si raccomanda di rispettare il quantitativo applicato medio di 4 kg di rame per ettaro all'anno."}
|
||||
{"chunk_id": "curenox_flow_38_1849_compatibility_0", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["grapevine", "apple", "pear", "quince", "medlar", "peach", "apricot", "plum", "cherry", "nectarine", "almond", "olive", "citrus", "orange", "lemon", "mandarin", "grapefruit", "tomato", "eggplant", "pepper", "artichoke", "cauliflower", "broccoli", "cucumber", "gherkin", "zucchini", "onion", "garlic", "shallot", "lettuce", "bean", "green_bean", "pea", "snow_pea", "lentil", "ornamental_plants", "forest_trees"], "target_diseases": [], "chunk_type": "compatibility", "chunk_text": "Il prodotto non è compatibile le miscele alcaline come Polisolfuri e Calce. AVVERTENZA: in caso di miscela con altri formulati deve essere rispettato il periodo di carenza più lungo. Devono inoltre essere osservate le norme precauzionali prescritte per i prodotti più tossici. Qualora si verificassero casi di intossicazione informare il medico della miscelazione compiuta."}
|
||||
{"chunk_id": "curenox_flow_38_1849_resistance_management_0", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["grapevine", "apple", "pear", "quince", "medlar", "peach", "apricot", "plum", "cherry", "nectarine", "almond", "olive", "citrus", "orange", "lemon", "mandarin", "grapefruit", "tomato", "eggplant", "pepper", "artichoke", "cauliflower", "broccoli", "cucumber", "gherkin", "zucchini", "onion", "garlic", "shallot", "lettuce", "bean", "green_bean", "pea", "snow_pea", "lentil", "ornamental_plants", "forest_trees"], "target_diseases": [], "chunk_type": "resistance_management", "chunk_text": "Per evitare l’insorgere di fenomeni di resistenza attenersi alle indicazioni riportate in etichetta e alternare CURENOX FLOW 38 a prodotti aventi differente meccanismo d’azione."}
|
||||
{"chunk_id": "curenox_flow_38_1849_reentry_requirements_1", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["cucumber", "gherkin", "zucchini", "tomato", "eggplant", "onion", "garlic", "shallot", "bean", "green_bean", "pea", "snow_pea", "lentil", "artichoke", "lettuce", "strawberry", "citrus", "olive", "pepper", "cauliflower", "broccoli", "grapevine"], "target_diseases": [], "chunk_type": "reentry_requirements", "chunk_text": "Sospendere i trattamenti:\n- 3 giorni prima della raccolta su cetriolo, cetriolino, zucchino, pomodoro e melanzana in serra, cipolla, aglio, scalogno, fagiolo, fagiolino, pisello, pisello mangiatutto, lenticchia.\n- 7 giorni prima della raccolta di carciofo, lattughe e insalate, fragola.\n- 10 giorni su pomodoro e melanzana in campo.\n- 14 giorni su agrumi, olivo, peperone, cavoli a infiorescenza.\n- 21 giorni su vite."}
|
||||
{"chunk_id": "curenox_flow_38_1849_phenology_constraints_0", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["apple", "pear", "quince", "medlar", "peach", "apricot", "plum", "cherry", "nectarine", "almond"], "target_diseases": [], "chunk_type": "phenology_constraints", "chunk_text": "Su pomacee, drupacee e mandorlo sospendere i trattamenti prima dell’inizio della fioritura."}
|
||||
{"chunk_id": "curenox_flow_38_1849_application_recommendations_0", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["grapevine", "apple", "pear", "quince", "medlar", "peach", "apricot", "plum", "cherry", "nectarine", "almond", "olive", "citrus", "orange", "lemon", "mandarin", "grapefruit", "tomato", "eggplant", "pepper", "artichoke", "cauliflower", "broccoli", "cucumber", "gherkin", "zucchini", "onion", "garlic", "shallot", "lettuce", "bean", "green_bean", "pea", "snow_pea", "lentil", "ornamental_plants", "forest_trees"], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "NON APPLICARE CON MEZZI AEREI"}
|
||||
{"chunk_id": "curenox_flow_38_1849_weather_constraints_0", "product_id": "curenox_flow_38_1849", "product_name": "CURENOX FLOW 38", "target_crops": ["grapevine", "apple", "pear", "quince", "medlar", "peach", "apricot", "plum", "cherry", "nectarine", "almond", "olive", "citrus", "orange", "lemon", "mandarin", "grapefruit", "tomato", "eggplant", "pepper", "artichoke", "cauliflower", "broccoli", "cucumber", "gherkin", "zucchini", "onion", "garlic", "shallot", "lettuce", "bean", "green_bean", "pea", "snow_pea", "lentil", "ornamental_plants", "forest_trees"], "target_diseases": [], "chunk_type": "weather_constraints", "chunk_text": "OPERARE IN ASSENZA DI VENTO"}
|
||||
12
data/chunks/curzate_3553.jsonl
Normal file
12
data/chunks/curzate_3553.jsonl
Normal file
@ -0,0 +1,12 @@
|
||||
{"chunk_id": "curzate_3553_environmental_restrictions_0", "product_id": "curzate_3553", "product_name": "CURZATE", "target_crops": ["grapevine", "tomato", "potato", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "pea", "onion", "garlic", "leek", "artichoke"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "environmental_restrictions", "chunk_text": "Non contaminare l'acqua con il prodotto o il suo contenitore. Non pulire il materiale d'applicazione in prossimità delle acque di superficie. Evitare la contaminazione attraverso i sistemi di scolo delle acque dalle aziende agricole e dalle strade."}
|
||||
{"chunk_id": "curzate_3553_ppe_requirements_0", "product_id": "curzate_3553", "product_name": "CURZATE", "target_crops": ["grapevine", "tomato", "potato", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "pea", "onion", "garlic", "leek", "artichoke"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "ppe_requirements", "chunk_text": "Indossare tuta/abbigliamento da lavoro e guanti durante le fasi di miscelazione/caricamento del prodotto e durante l’applicazione."}
|
||||
{"chunk_id": "curzate_3553_reentry_requirements_0", "product_id": "curzate_3553", "product_name": "CURZATE", "target_crops": ["grapevine", "tomato", "potato", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "pea", "onion", "garlic", "leek", "artichoke"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "reentry_requirements", "chunk_text": "Non rientrare nell’area trattata prima che la vegetazione sia completamente asciutta. Prima di rientrare nell’area trattata indossare i guanti."}
|
||||
{"chunk_id": "curzate_3553_resistance_management_0", "product_id": "curzate_3553", "product_name": "CURZATE", "target_crops": ["grapevine", "tomato", "potato", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "pea", "onion", "garlic", "leek", "artichoke"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "resistance_management", "chunk_text": "CURZATE ha proprietà curative, ma si raccomanda l’impiego per trattamenti preventivi o nei primi stadi di sviluppo della malattia. CURZATE deve sempre essere applicato in miscela con antiperonosporici di copertura. CURZATE contiene cymoxanil che appartiene al gruppo 27 dello schema FRAC. Per evitare o ritardare la comparsa di resistenza, CURZATE deve sempre essere impiegato in via preventiva e in miscela con prodotti aventi un differente meccanismo d’azione. Non superare il numero massimo di applicazioni indicate."}
|
||||
{"chunk_id": "curzate_3553_dosage_instructions_0", "product_id": "curzate_3553", "product_name": "CURZATE", "target_crops": ["grapevine", "potato", "tomato", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "garlic", "onion", "spinach", "pea", "leek", "artichoke"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "dosage_instructions", "chunk_text": "DOSI ED EPOCA DI IMPIEGO\nVITE: per il controllo della Peronospora (Plasmopara viticola) applicare 70 g/hl di CURZATE disciolto in 300-1200 litri di acqua per un dosaggio massimo pari a 840 g/ha. Effettuare un massimo di 4 applicazioni per anno ad un intervallo di 7 giorni.\nPATATA: per il controllo di Peronospora (Phytophthora infestans) in pieno campo applicare 600 g/ha di CURZATE disciolto in 300-1000 litri di acqua. Effettuare un massimo di 5 applicazioni per anno ad un intervallo di 7 giorni.\nPOMODORO: per il controllo di Peronospora (Phytophthora infestans) applicare in pieno campo e in serra 780 g/ha (60 g/hl) di CURZATE disciolto in 500-1300 litri di acqua. Effettuare un massimo di 4 applicazioni per anno ad un intervallo di 7 giorni.\nCETRIOLO, CETRIOLINO e ZUCCHINO: per il controllo della Peronospora delle cucurbitacee (Pseudoperonospora cubensis) applicare in pieno campo e in serra 1200 g/ha (90 g/hl) di CURZATE disciolto in 500-1300 litri di acqua. Effettuare un massimo di 4 applicazioni per anno ad un intervallo di 7 giorni.\nMELONE, ANGURIA e ZUCCA: per il controllo della Peronospora delle cucurbitacee (Pseudoperonospora cubensis) in pieno campo e in serra applicare 900 g/ha di CURZATE disciolto in 500-1000 litri di acqua. Effettuare un massimo di 4 applicazioni per anno ad un intervallo di 7 giorni.\nLATTUGHE: per il controllo di Peronospora (Bremia lactucae) in pieno campo applicare 900 g/ha di CURZATE disciolto in 500-1000 litri di acqua. Effettuare un massimo di 4 applicazioni per anno ad un intervallo di 5 giorni.\nAGLIO e CIPOLLA: per il controllo di Peronospora (Peronospora porri) in pieno campo applicare 1200 g/ha di CURZATE disciolto in 300-1000 litri di acqua. Effettuare un massimo di 4 applicazioni per anno ad un intervallo di 7 giorni.\nSPINACIO, PISELLO: per il controllo di Peronospora in pieno campo applicare 900 g/ha di CURZATE disciolto in 300-1000 litri di acqua. Effettuare un massimo di 4 applicazioni per anno ad un intervallo di 7 giorni.\nPORRO: per il controllo di Peronospora in pieno campo applicare 600 g/ha di CURZATE disciolto in 300-1000 litri di acqua. Effettuare un massimo di 4 applicazioni per anno ad un intervallo di 7 giorni.\nCARCIOFO: per il controllo di Peronospora in pieno campo applicare 800 g/ha di CURZATE disciolto in 300-1000 litri di acqua. Effettuare un massimo di 4 applicazioni per anno ad un intervallo di 7 giorni.\nATTENZIONE: Indipendentemente dai volumi d’acqua e dalle attrezzature di distribuzione impiegate si raccomanda di non utilizzare un dosaggio inferiore a 600 g/ha di CURZATE"}
|
||||
{"chunk_id": "curzate_3553_crop_instructions_0", "product_id": "curzate_3553", "product_name": "CURZATE", "target_crops": ["lettuce"], "target_diseases": ["downy mildew"], "chunk_type": "crop_instructions", "chunk_text": "Da non impiegare su colture raccolte fino allo stadio di ottava foglia (baby leaf)"}
|
||||
{"chunk_id": "curzate_3553_application_recommendations_0", "product_id": "curzate_3553", "product_name": "CURZATE", "target_crops": ["grapevine", "tomato", "potato", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "pea", "onion", "garlic", "leek", "artichoke"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "PREPARAZIONE DELLA POLTIGLIA\nDopo aver riempito per circa metà della sua capacità il serbatoio dell’irroratrice, versare la quantità desiderata di CURZATE direttamente nel serbatoio, mantenendo l’agitatore in funzione. Sciacquare ripetutamente il contenitore e versare nel serbatoio l’acqua di risciacquo. Subito dopo il trattamento, svuotare completamente il serbatoio e risciacquare bene tutte le parti dell’irroratrice (serbatoio, tubazioni, ugelli). Nel corso delle operazioni di pulizia, prendere tutte le necessarie misure di sicurezza."}
|
||||
{"chunk_id": "curzate_3553_compatibility_0", "product_id": "curzate_3553", "product_name": "CURZATE", "target_crops": ["grapevine", "tomato", "potato", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "pea", "onion", "garlic", "leek", "artichoke"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "compatibility", "chunk_text": "Il prodotto non è compatibile con gli antiparassitari a reazione alcalina."}
|
||||
{"chunk_id": "curzate_3553_phytotoxicity_0", "product_id": "curzate_3553", "product_name": "CURZATE", "target_crops": ["grapevine", "tomato", "potato", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "pea", "onion", "garlic", "leek", "artichoke"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "phytotoxicity", "chunk_text": "Il prodotto può risultare fitotossico per le colture non indicate in etichetta."}
|
||||
{"chunk_id": "curzate_3553_reentry_requirements_1", "product_id": "curzate_3553", "product_name": "CURZATE", "target_crops": ["tomato", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "onion", "garlic", "leek", "artichoke", "pea", "potato", "grapevine"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "reentry_requirements", "chunk_text": "INTERVALLO DI SICUREZZA\nPomodoro, Cetriolo, cetriolino, zucchino, melone, anguria e zucca: 3 giorni – Lattughe, spinacio, cipolla, aglio, porro: 7 giorni – Carciofo e pisello: 14 giorni – Patata: 20 giorni - Vite: 21 giorni."}
|
||||
{"chunk_id": "curzate_3553_application_recommendations_1", "product_id": "curzate_3553", "product_name": "CURZATE", "target_crops": ["grapevine", "tomato", "potato", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "pea", "onion", "garlic", "leek", "artichoke"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "Non applicare con mezzi aerei."}
|
||||
{"chunk_id": "curzate_3553_weather_constraints_0", "product_id": "curzate_3553", "product_name": "CURZATE", "target_crops": ["grapevine", "tomato", "potato", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "pea", "onion", "garlic", "leek", "artichoke"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "weather_constraints", "chunk_text": "Operare in assenza di vento."}
|
||||
19
data/chunks/cuthiol_3141.jsonl
Normal file
19
data/chunks/cuthiol_3141.jsonl
Normal file
@ -0,0 +1,19 @@
|
||||
{"chunk_id": "cuthiol_3141_ppe_requirements_0", "product_id": "cuthiol_3141", "product_name": "CUTHIOL", "target_crops": ["grapevine", "citrus", "olive", "sugar_beet", "apple", "pear", "peach", "apricot", "cherry", "plum", "almond", "potato", "tomato", "asparagus", "artichoke", "cabbage", "cauliflower", "cucumber", "watermelon", "melon", "zucchini", "strawberry", "lettuce", "pea", "bean", "green_bean", "eggplant", "celery", "fennel", "garlic", "onion", "rose"], "target_diseases": ["downy mildew", "botrytis (grey mould)", "powdery mildew", "mal secco", "phytophthora", "sooty mould", "bacteriosis", "olive peacock spot", "anthracnose", "olive knot", "cercospora leaf spot", "scab", "canker", "brown rot", "leaf curl", "coryneum blight", "alternaria"], "chunk_type": "ppe_requirements", "chunk_text": "P280: Indossare guanti/indumenti protettivi/Proteggere gli occhi/ Proteggere il viso."}
|
||||
{"chunk_id": "cuthiol_3141_reentry_requirements_0", "product_id": "cuthiol_3141", "product_name": "CUTHIOL", "target_crops": ["grapevine", "citrus", "olive", "sugar_beet", "apple", "pear", "peach", "apricot", "cherry", "plum", "almond", "potato", "tomato", "asparagus", "artichoke", "cabbage", "cauliflower", "cucumber", "watermelon", "melon", "zucchini", "strawberry", "lettuce", "pea", "bean", "green_bean", "eggplant", "celery", "fennel", "garlic", "onion", "rose"], "target_diseases": ["downy mildew", "botrytis (grey mould)", "powdery mildew", "mal secco", "phytophthora", "sooty mould", "bacteriosis", "olive peacock spot", "anthracnose", "olive knot", "cercospora leaf spot", "scab", "canker", "brown rot", "leaf curl", "coryneum blight", "alternaria"], "chunk_type": "reentry_requirements", "chunk_text": "Tempi di rientro: attendere l’asciugatura dell’irrorato prima di entrare nell’area trattata."}
|
||||
{"chunk_id": "cuthiol_3141_environmental_restrictions_0", "product_id": "cuthiol_3141", "product_name": "CUTHIOL", "target_crops": ["grapevine", "citrus", "olive", "sugar_beet", "apple", "pear", "peach", "apricot", "cherry", "plum", "almond", "potato", "tomato", "asparagus", "artichoke", "cabbage", "cauliflower", "cucumber", "watermelon", "melon", "zucchini", "strawberry", "lettuce", "pea", "bean", "green_bean", "eggplant", "celery", "fennel", "garlic", "onion", "rose"], "target_diseases": ["downy mildew", "botrytis (grey mould)", "powdery mildew", "mal secco", "phytophthora", "sooty mould", "bacteriosis", "olive peacock spot", "anthracnose", "olive knot", "cercospora leaf spot", "scab", "canker", "brown rot", "leaf curl", "coryneum blight", "alternaria"], "chunk_type": "environmental_restrictions", "chunk_text": "Non contaminare l’acqua con il prodotto o il suo contenitore. Non pulire il materiale d’applicazione in prossimità delle acque di superficie. Evitare la contaminazione attraverso i sistemi di scolo delle acque dalle aziende agricole e dalle strade."}
|
||||
{"chunk_id": "cuthiol_3141_environmental_restrictions_1", "product_id": "cuthiol_3141", "product_name": "CUTHIOL", "target_crops": ["grapevine", "citrus", "olive", "sugar_beet", "apple", "pear", "peach", "apricot", "cherry", "plum", "almond", "potato", "tomato", "asparagus", "artichoke", "cabbage", "cauliflower", "cucumber", "watermelon", "melon", "zucchini", "strawberry", "lettuce", "pea", "bean", "green_bean", "eggplant", "celery", "fennel", "garlic", "onion", "rose"], "target_diseases": ["downy mildew", "botrytis (grey mould)", "powdery mildew", "mal secco", "phytophthora", "sooty mould", "bacteriosis", "olive peacock spot", "anthracnose", "olive knot", "cercospora leaf spot", "scab", "canker", "brown rot", "leaf curl", "coryneum blight", "alternaria"], "chunk_type": "environmental_restrictions", "chunk_text": "Al fine di ridurre al minimo il potenziale accumulo nel suolo e l'esposizione per gli organismi non bersaglio, tenendo conto al contempo delle condizioni agroclimatiche, non superare l'applicazione cumulativa di 28 kg di rame per ettaro nell'arco di 7 anni. Si raccomanda di rispettare il quantitativo medio applicato di 4 kg di rame per ettaro all'anno."}
|
||||
{"chunk_id": "cuthiol_3141_dosage_instructions_0", "product_id": "cuthiol_3141", "product_name": "CUTHIOL", "target_crops": ["grapevine", "citrus", "olive", "sugar_beet", "apple", "pear", "peach", "apricot", "cherry", "plum", "almond", "potato", "tomato", "asparagus", "artichoke", "cabbage", "cauliflower", "cucumber", "watermelon", "melon", "zucchini", "strawberry", "lettuce", "pea", "bean", "green_bean", "eggplant", "celery", "fennel", "garlic", "onion", "rose"], "target_diseases": ["downy mildew", "botrytis (grey mould)", "powdery mildew", "mal secco", "phytophthora", "sooty mould", "bacteriosis", "olive peacock spot", "anthracnose", "olive knot", "cercospora leaf spot", "scab", "canker", "brown rot", "leaf curl", "coryneum blight", "alternaria"], "chunk_type": "dosage_instructions", "chunk_text": "IMPIEGO E DOSI\nVITE: contro Peronospora con azione collaterale contro Botrite ed Oidio ml 450-650 (700-1000 g)/hl\nAGRUMI: contro Mal secco, Allupatura, Fumaggini e Batteriosi ml 450 (700 g)/hl\nOLIVO: contro Occhio di Pavone, Fumaggine, Lebbra e Rogna ml 450-650 (700-1000 g)/hl\nBARBABIETOLA DA ZUCCHERO: contro Peronospora, Cercospora e Oidio L 3,2-3,4 (5-5,3 Kg)/ha\nPOMACEE (Melo e Pero) (trattamenti consentiti fino a inizio fioritura): contro Ticchiolatura, Nectria, Oidio, Moniolisi e Batteriosi\ntrattamenti autunno-invernali: ml 850 (1300 g)/hl\ntrattamenti pre-fiorali: ml 450 (700 g)/hl\nDRUPACEE (Pesco, Albicocco, Ciliegio, Susino – consentiti solo trattamenti invernali), MANDORLO trattamenti autunno-invernali: contro Boilla Corineo, Monilia e Cancro dei rametti ml 850 (1300 g)/hl\nPATATA E POMODORO: contro Peronospora, Cercospora, Oidio ed Altemariosi ml 450-650 (700-1000 g)/hl\nCOLTURE ORTICOLE Asparago (trattamenti consentiti subito dopo la raccolta dei turioni), Carciofo, Cavolo, Cavolfiore, Cetriolo, Cocomero, Melone, Zucchino, Fragola, Insalata, Pisello, Fagiolo, Fagiolino, Melanzana, Sedano, Finocchio): contro Peronospora, Oidio, Cercospora ed Altemariosi ml 450-650 (700-1000 g)/hl\nAglio, Cipolla: contro Peronospora, Oidio, Cercospora ed Altemariosi ml 450 (700 g)/hl\nROSA: contro Peronospora, Cercospora, Altemariosi e Oidio ml 450-650 (700-1000 g)/hl"}
|
||||
{"chunk_id": "cuthiol_3141_crop_instructions_0", "product_id": "cuthiol_3141", "product_name": "CUTHIOL", "target_crops": ["apple", "pear"], "target_diseases": ["scab", "canker", "powdery mildew", "brown rot", "bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "POMACEE (Melo e Pero) (trattamenti consentiti fino a inizio fioritura)"}
|
||||
{"chunk_id": "cuthiol_3141_crop_instructions_1", "product_id": "cuthiol_3141", "product_name": "CUTHIOL", "target_crops": ["peach", "apricot", "cherry", "plum", "almond"], "target_diseases": ["leaf curl", "coryneum blight", "brown rot", "canker"], "chunk_type": "crop_instructions", "chunk_text": "DRUPACEE (Pesco, Albicocco, Ciliegio, Susino – consentiti solo trattamenti invernali), MANDORLO"}
|
||||
{"chunk_id": "cuthiol_3141_crop_instructions_2", "product_id": "cuthiol_3141", "product_name": "CUTHIOL", "target_crops": ["asparagus"], "target_diseases": ["downy mildew", "powdery mildew", "cercospora leaf spot", "alternaria"], "chunk_type": "crop_instructions", "chunk_text": "Asparago (trattamenti consentiti subito dopo la raccolta dei turioni)"}
|
||||
{"chunk_id": "cuthiol_3141_application_recommendations_0", "product_id": "cuthiol_3141", "product_name": "CUTHIOL", "target_crops": ["grapevine", "citrus", "olive", "sugar_beet", "apple", "pear", "peach", "apricot", "cherry", "plum", "almond", "potato", "tomato", "asparagus", "artichoke", "cabbage", "cauliflower", "cucumber", "watermelon", "melon", "zucchini", "strawberry", "lettuce", "pea", "bean", "green_bean", "eggplant", "celery", "fennel", "garlic", "onion", "rose"], "target_diseases": ["downy mildew", "botrytis (grey mould)", "powdery mildew", "mal secco", "phytophthora", "sooty mould", "bacteriosis", "olive peacock spot", "anthracnose", "olive knot", "cercospora leaf spot", "scab", "canker", "brown rot", "leaf curl", "coryneum blight", "alternaria"], "chunk_type": "application_recommendations", "chunk_text": "L'aggiunta di bagnanti-adesivanti è da evitare poiché il Cuthiol può essere adoperato come tale, essendo dotato della necessaria adesività e bagnabilità."}
|
||||
{"chunk_id": "cuthiol_3141_weather_constraints_0", "product_id": "cuthiol_3141", "product_name": "CUTHIOL", "target_crops": ["grapevine", "citrus", "olive", "sugar_beet", "apple", "pear", "peach", "apricot", "cherry", "plum", "almond", "potato", "tomato", "asparagus", "artichoke", "cabbage", "cauliflower", "cucumber", "watermelon", "melon", "zucchini", "strawberry", "lettuce", "pea", "bean", "green_bean", "eggplant", "celery", "fennel", "garlic", "onion", "rose"], "target_diseases": ["downy mildew", "botrytis (grey mould)", "powdery mildew", "mal secco", "phytophthora", "sooty mould", "bacteriosis", "olive peacock spot", "anthracnose", "olive knot", "cercospora leaf spot", "scab", "canker", "brown rot", "leaf curl", "coryneum blight", "alternaria"], "chunk_type": "weather_constraints", "chunk_text": "Evitare le irrorazioni a pieno sole nelle giornate calde."}
|
||||
{"chunk_id": "cuthiol_3141_application_recommendations_1", "product_id": "cuthiol_3141", "product_name": "CUTHIOL", "target_crops": ["grapevine", "citrus", "olive", "sugar_beet", "apple", "pear", "peach", "apricot", "cherry", "plum", "almond", "potato", "tomato", "asparagus", "artichoke", "cabbage", "cauliflower", "cucumber", "watermelon", "melon", "zucchini", "strawberry", "lettuce", "pea", "bean", "green_bean", "eggplant", "celery", "fennel", "garlic", "onion", "rose"], "target_diseases": ["downy mildew", "botrytis (grey mould)", "powdery mildew", "mal secco", "phytophthora", "sooty mould", "bacteriosis", "olive peacock spot", "anthracnose", "olive knot", "cercospora leaf spot", "scab", "canker", "brown rot", "leaf curl", "coryneum blight", "alternaria"], "chunk_type": "application_recommendations", "chunk_text": "PREPARAZIONE: Agitare il contenuto della confezione, versare la dose di Cuthiol in acqua e mescolare."}
|
||||
{"chunk_id": "cuthiol_3141_compatibility_0", "product_id": "cuthiol_3141", "product_name": "CUTHIOL", "target_crops": ["grapevine", "citrus", "olive", "sugar_beet", "apple", "pear", "peach", "apricot", "cherry", "plum", "almond", "potato", "tomato", "asparagus", "artichoke", "cabbage", "cauliflower", "cucumber", "watermelon", "melon", "zucchini", "strawberry", "lettuce", "pea", "bean", "green_bean", "eggplant", "celery", "fennel", "garlic", "onion", "rose"], "target_diseases": [], "chunk_type": "compatibility", "chunk_text": "COMPATIBILITÀ: Non è compatibile (o miscibile) con antiparassitari alcalini (polisolfuri, poltiglia bordolese, ecc.) con olii minerali, con Captano, con DDVP. Deve essere irrorato a distanza di almeno tre settimane dall'impiego degli olii minerali e dei Captano."}
|
||||
{"chunk_id": "cuthiol_3141_compatibility_1", "product_id": "cuthiol_3141", "product_name": "CUTHIOL", "target_crops": ["grapevine", "citrus", "olive", "sugar_beet", "apple", "pear", "peach", "apricot", "cherry", "plum", "almond", "potato", "tomato", "asparagus", "artichoke", "cabbage", "cauliflower", "cucumber", "watermelon", "melon", "zucchini", "strawberry", "lettuce", "pea", "bean", "green_bean", "eggplant", "celery", "fennel", "garlic", "onion", "rose"], "target_diseases": [], "chunk_type": "compatibility", "chunk_text": "AVVERTENZA: In caso di miscela con altri formulati, deve essere rispettato il periodo di carenza più lungo. Devono, inoltre essere osservate le norme precauzionali prescritte per i prodotti più tossici. Qualora si verificassero casi di intossicazione informare il medico della miscelazione compiuta."}
|
||||
{"chunk_id": "cuthiol_3141_phytotoxicity_0", "product_id": "cuthiol_3141", "product_name": "CUTHIOL", "target_crops": ["apple", "pear", "grapevine", "cucumber", "watermelon", "melon", "zucchini", "pumpkin", "peach", "plum"], "target_diseases": [], "chunk_type": "phytotoxicity", "chunk_text": "FITOTOSSICITÀ: può arrecare danno alle seguenti cultivar di MELE: Black Ben Davis, Black Stayman, Calvilla Bianca, Commercio, Golden Delicious, Jonathan, Imperatore, Morgenduft, Renetta, Rome Beauty, Stayman Red, Winesap. PERE: Buona Luigia D’Avranches, Contessa di Parigi, Kaiser, Alexander, Olivier de Serres, William, Decana del Comizio. VITE: Sangiovese. CUCURBITACEE: può essere fitotossico."}
|
||||
{"chunk_id": "cuthiol_3141_phenology_constraints_0", "product_id": "cuthiol_3141", "product_name": "CUTHIOL", "target_crops": ["grapevine", "citrus", "olive", "sugar_beet", "apple", "pear", "peach", "apricot", "cherry", "plum", "almond", "potato", "tomato", "asparagus", "artichoke", "cabbage", "cauliflower", "cucumber", "watermelon", "melon", "zucchini", "strawberry", "lettuce", "pea", "bean", "green_bean", "eggplant", "celery", "fennel", "garlic", "onion", "rose"], "target_diseases": [], "chunk_type": "phenology_constraints", "chunk_text": "Non si deve trattare durante la fioritura."}
|
||||
{"chunk_id": "cuthiol_3141_phytotoxicity_1", "product_id": "cuthiol_3141", "product_name": "CUTHIOL", "target_crops": ["peach", "plum", "apple", "pear"], "target_diseases": [], "chunk_type": "phytotoxicity", "chunk_text": "Su pesco, susino e varietà di melo (Abbondanza Belford, Gravenstein, Stayman, Winesap, Black Davis, King Davis, Renetta del Canadà, Rosa Mantovana) e di pero (Abate Fetel, Butirra Clairgeau, Passacrasana, B.C. William, Dott. Jules Guyot, Favorita di Clapp, Kaiser, Butirra Giffard) il prodotto può essere tossico se distribuito in piena vegetazione: in tali casi se ne sconsiglia l'impiego dopo la piena ripresa vegetativa."}
|
||||
{"chunk_id": "cuthiol_3141_reentry_requirements_1", "product_id": "cuthiol_3141", "product_name": "CUTHIOL", "target_crops": ["tomato", "eggplant", "cucumber", "zucchini", "garlic", "onion", "strawberry", "watermelon", "melon", "potato", "grapevine", "citrus", "olive", "sugar_beet", "apple", "pear", "peach", "apricot", "cherry", "plum", "almond", "asparagus", "artichoke", "cabbage", "cauliflower", "lettuce", "pea", "bean", "green_bean", "celery", "fennel", "rose"], "target_diseases": [], "chunk_type": "reentry_requirements", "chunk_text": "Sospendere i trattamenti 5 giorni prima della raccolta per POMODORO, MELANZANA, CETRIOLO, ZUCCHINO, AGLIO, CIPOLLA, FRAGOLA, COCOMERO, MELONE; 7 giorni per PATATA, 20 giorni per le ALTRE COLTURE"}
|
||||
{"chunk_id": "cuthiol_3141_application_recommendations_2", "product_id": "cuthiol_3141", "product_name": "CUTHIOL", "target_crops": ["grapevine", "citrus", "olive", "sugar_beet", "apple", "pear", "peach", "apricot", "cherry", "plum", "almond", "potato", "tomato", "asparagus", "artichoke", "cabbage", "cauliflower", "cucumber", "watermelon", "melon", "zucchini", "strawberry", "lettuce", "pea", "bean", "green_bean", "eggplant", "celery", "fennel", "garlic", "onion", "rose"], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "Non applicare con mezzi aerei."}
|
||||
{"chunk_id": "cuthiol_3141_weather_constraints_1", "product_id": "cuthiol_3141", "product_name": "CUTHIOL", "target_crops": ["grapevine", "citrus", "olive", "sugar_beet", "apple", "pear", "peach", "apricot", "cherry", "plum", "almond", "potato", "tomato", "asparagus", "artichoke", "cabbage", "cauliflower", "cucumber", "watermelon", "melon", "zucchini", "strawberry", "lettuce", "pea", "bean", "green_bean", "eggplant", "celery", "fennel", "garlic", "onion", "rose"], "target_diseases": [], "chunk_type": "weather_constraints", "chunk_text": "Operare in assenza di vento."}
|
||||
19
data/chunks/daramun_16946.jsonl
Normal file
19
data/chunks/daramun_16946.jsonl
Normal file
@ -0,0 +1,19 @@
|
||||
{"chunk_id": "daramun_16946_environmental_restrictions_0", "product_id": "daramun_16946", "product_name": "DARAMUN", "target_crops": ["grapevine", "tomato", "potato", "turf"], "target_diseases": ["downy mildew", "late blight", "pythium"], "chunk_type": "environmental_restrictions", "chunk_text": "H410 Molto tossico per gli organismi acquatici con effetti di lunga durata."}
|
||||
{"chunk_id": "daramun_16946_ppe_requirements_0", "product_id": "daramun_16946", "product_name": "DARAMUN", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "ppe_requirements", "chunk_text": "Vite: utilizzare tuta protettiva per applicazione in campo."}
|
||||
{"chunk_id": "daramun_16946_ppe_requirements_1", "product_id": "daramun_16946", "product_name": "DARAMUN", "target_crops": ["tomato"], "target_diseases": ["late blight"], "chunk_type": "ppe_requirements", "chunk_text": "Pomodori in campo: utilizzare tuta e guanti durante le operazioni di miscelamento e caricamento con macchine irroratrici. Utilizzare tuta per applicazione manuale e con macchine irroratrici."}
|
||||
{"chunk_id": "daramun_16946_ppe_requirements_2", "product_id": "daramun_16946", "product_name": "DARAMUN", "target_crops": ["tomato"], "target_diseases": ["late blight"], "chunk_type": "ppe_requirements", "chunk_text": "Pomodori in serra: utilizzare guanti e tuta durante l’applicazione manuale."}
|
||||
{"chunk_id": "daramun_16946_buffer_zones_0", "product_id": "daramun_16946", "product_name": "DARAMUN", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "buffer_zones", "chunk_text": "Per proteggere gli organismi acquatici rispettare una fascia di sicurezza non trattata di 5 metri da corpi idrici superficiali per vite solo su applicazioni tardive, in combinazione con una riduzione della deriva del 50%."}
|
||||
{"chunk_id": "daramun_16946_ppe_requirements_3", "product_id": "daramun_16946", "product_name": "DARAMUN", "target_crops": ["turf"], "target_diseases": ["pythium"], "chunk_type": "ppe_requirements", "chunk_text": "Tappeti erbosi: utilizzare tuta protettiva durante le operazioni di miscelamento, caricamento e per l’applicazione in campo."}
|
||||
{"chunk_id": "daramun_16946_reentry_requirements_0", "product_id": "daramun_16946", "product_name": "DARAMUN", "target_crops": ["turf"], "target_diseases": ["pythium"], "chunk_type": "reentry_requirements", "chunk_text": "Non rientrare nell’area trattata prima che la vegetazione sia completamente asciutta."}
|
||||
{"chunk_id": "daramun_16946_buffer_zones_1", "product_id": "daramun_16946", "product_name": "DARAMUN", "target_crops": ["turf"], "target_diseases": ["pythium"], "chunk_type": "buffer_zones", "chunk_text": "Per trattamenti su tappeti erbosi, per proteggere gli organismi acquatici rispettare una fascia di sicurezza non trattata di 5 metri da corpi idrici superficiali o utilizzare ugelli con una riduzione della deriva del 75%."}
|
||||
{"chunk_id": "daramun_16946_application_recommendations_0", "product_id": "daramun_16946", "product_name": "DARAMUN", "target_crops": ["grapevine", "tomato", "potato"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "DARAMUN è un fungicida ad azione preventiva per il controllo della peronospora di vite, pomodoro e patata; è dotato di elevata affinità per le cere cuticolari, con moderata capacità di penetrazione; ne derivano resistenza all’azione dilavante della pioggia e parziale ridistribuzione all’interno della vegetazione trattata. Adattare la cadenza dei trattamenti in base all’andamento meteorologico e alla pressione della malattia."}
|
||||
{"chunk_id": "daramun_16946_application_recommendations_1", "product_id": "daramun_16946", "product_name": "DARAMUN", "target_crops": ["turf"], "target_diseases": ["pythium"], "chunk_type": "application_recommendations", "chunk_text": "DARAMUN è un fungicida ad azione preventiva per il controllo di Pythium spp. su tappeti erbosi. Su tappeti erbosi presenta anche una parziale attività curativa in caso di interventi precoci e con bassa pressione di malattia."}
|
||||
{"chunk_id": "daramun_16946_application_recommendations_2", "product_id": "daramun_16946", "product_name": "DARAMUN", "target_crops": ["grapevine", "tomato", "potato", "turf"], "target_diseases": ["downy mildew", "late blight", "pythium"], "chunk_type": "application_recommendations", "chunk_text": "Diluire direttamente in acqua la dose prescritta. In caso di impiego di irroratrici a basso volume, le dosi prescritte vanno mantenute in modo da distribuire, per unità di superficie, la stessa quantità di prodotto."}
|
||||
{"chunk_id": "daramun_16946_dosage_instructions_0", "product_id": "daramun_16946", "product_name": "DARAMUN", "target_crops": ["grapevine", "tomato", "potato", "turf"], "target_diseases": ["downy mildew", "late blight", "pythium"], "chunk_type": "dosage_instructions", "chunk_text": "CAMPI DI IMPIEGO E DOSI\nColtura Avversità Epoche d’impiego Dosi/ha Volume D’acqua (L) N° max trattamenti anno Intervallo tra i trattamenti (gg)\nVITE Peronospora (Plasmopara viticola), BBCH 11-89 (da prefioritura a maturazione) 0,9-1,1 L/ha 300-1000 4 8-10 a dose minima, 12-14 a dose max\nPOMODORO (da industria e mensa) in pieno campo e serra Peronospora (Phytophtora infestans) BBCH 12-89 (da prefioritura a maturazione) 0,8 L/ha 400-1000 6 7-10\nPATATA Peronospora (Phytophtora infestans) BBCH 12-89 (da sviluppo fogliare a pre-raccolta) 0,8 L/ha 200-500 6 5-7 (fino a 10 in caso di basso rischio)\nTAPPETI ERBOSI (PRATI E PRATI ORNAMENTALI, CAMPI DA GOLF, CAMPI SPORTIVI) Pythium spp. BBCH 11-19 (attecchimento prato) 2.5 L/ha 300-500 3 10\nBBCH 31 (prato sviluppato) 3 L/ha 300-500 2 10"}
|
||||
{"chunk_id": "daramun_16946_crop_instructions_0", "product_id": "daramun_16946", "product_name": "DARAMUN", "target_crops": ["turf"], "target_diseases": ["pythium"], "chunk_type": "crop_instructions", "chunk_text": "Tappeti erbosi (PRATI E PRATI ORNAMENTALI, CAMPI DA GOLF, CAMPI SPORTIVI): Intervenire in via preventiva al verificarsi delle condizioni predisponenti alla malattia o alla comparsa dei primi sintomi. In particolare, intervenire in fase di attecchimento del tappeto erboso (BBCH 11-19) e quando il tappeto erboso copre uniformemente il terreno (BBCH 31) in presenza di elevata temperatura e umidità ambientale, avendo cura di non superare la dose complessiva di 7.5 litri di prodotto (equivalenti a 750g di sostanza attiva) nell’arco dell’intera stagione. In caso di trattamenti consecutivi, rispettare un intervallo di dieci giorni fra gli stessi."}
|
||||
{"chunk_id": "daramun_16946_resistance_management_0", "product_id": "daramun_16946", "product_name": "DARAMUN", "target_crops": ["grapevine", "tomato", "potato", "turf"], "target_diseases": ["downy mildew", "late blight", "pythium"], "chunk_type": "resistance_management", "chunk_text": "Gestione del rischio di resistenza\nDARAMUN contiene la sostanza attiva cyazofamide che appartiene al gruppo 21 del FRAC. Per gestire il rischio di comparsa di resistenza in campo, adottare i seguenti accorgimenti: applicare il prodotto prima dell’evento infettante; miscelare con antiperonosporici aventi diverso meccanismo d’azione; impiegare il prodotto in un programma che preveda l’uso di antiperonosporici aventi diverso meccanismo d’azione."}
|
||||
{"chunk_id": "daramun_16946_compatibility_0", "product_id": "daramun_16946", "product_name": "DARAMUN", "target_crops": ["grapevine", "tomato", "potato", "turf"], "target_diseases": ["downy mildew", "late blight", "pythium"], "chunk_type": "compatibility", "chunk_text": "Compatibilità. Il formulato si è mostrato compatibile con numerosi prodotti commerciali tra cui quelli a base delle seguenti sostanze attive:\n• Fungicidi: azoxistrobin, benalaxyl-m, cimoxanil, folpet, fosetil alluminio, fosfonato di disodio, fosfonato di potassio, metalaxyl-m, penconazolo, rame metallo, zolfo.\n• Insetticidi: abamectina, deltametrina, lambda-cialotrina.\nAvvertenza: in caso di miscela con altri formulati deve essere rispettato il periodo di carenza più lungo. Devono inoltre essere osservate le norme precauzionali prescritte per i prodotti più tossici. Qualora si verificassero casi di intossicazione informare il medico della miscelazione compiuta."}
|
||||
{"chunk_id": "daramun_16946_reentry_requirements_1", "product_id": "daramun_16946", "product_name": "DARAMUN", "target_crops": ["potato", "tomato", "grapevine"], "target_diseases": ["late blight", "downy mildew"], "chunk_type": "reentry_requirements", "chunk_text": "Sospendere i trattamenti 7 giorni prima del raccolto per patata, 3 giorni su pomodoro in serra ed in pieno campo, 21 su vite."}
|
||||
{"chunk_id": "daramun_16946_reentry_requirements_2", "product_id": "daramun_16946", "product_name": "DARAMUN", "target_crops": ["grapevine", "tomato", "potato", "turf"], "target_diseases": ["downy mildew", "late blight", "pythium"], "chunk_type": "reentry_requirements", "chunk_text": "In caso di trattamenti in parchi o zone aperte al pubblico segnalare la zona trattata con appositi segnali per almeno 48 ore."}
|
||||
{"chunk_id": "daramun_16946_application_recommendations_3", "product_id": "daramun_16946", "product_name": "DARAMUN", "target_crops": ["grapevine", "tomato", "potato", "turf"], "target_diseases": ["downy mildew", "late blight", "pythium"], "chunk_type": "application_recommendations", "chunk_text": "NON APPLICARE CON I MEZZI AEREI."}
|
||||
{"chunk_id": "daramun_16946_weather_constraints_0", "product_id": "daramun_16946", "product_name": "DARAMUN", "target_crops": ["grapevine", "tomato", "potato", "turf"], "target_diseases": ["downy mildew", "late blight", "pythium"], "chunk_type": "weather_constraints", "chunk_text": "OPERARE IN ASSENZA DI VENTO."}
|
||||
19
data/chunks/delan_pro_16562.jsonl
Normal file
19
data/chunks/delan_pro_16562.jsonl
Normal file
@ -0,0 +1,19 @@
|
||||
{"chunk_id": "delan_pro_16562_ppe_requirements_0", "product_id": "delan_pro_16562", "product_name": "DELAN PRO", "target_crops": ["apple", "pear", "grapevine"], "target_diseases": ["scab", "alternaria", "anthracnose", "powdery mildew", "brown spot", "phomopsis (dead-arm)", "downy mildew", "black rot"], "chunk_type": "ppe_requirements", "chunk_text": "Utilizzare tuta/abbigliamento da lavoro, guanti adatti e proteggere gli occhi/il viso durante le operazioni di miscelazione e caricamento del prodotto. Indossare tuta/abbigliamento da lavoro e guanti adatti durante l’applicazione della miscela e nel corso delle lavorazioni di rientro."}
|
||||
{"chunk_id": "delan_pro_16562_compatibility_0", "product_id": "delan_pro_16562", "product_name": "DELAN PRO", "target_crops": ["grapevine"], "target_diseases": [], "chunk_type": "compatibility", "chunk_text": "Si sconsiglia di effettuare miscele con prodotti a base di zolfo, in vigneti in cui si prevedono frequenti lavorazioni manuali dopo i trattamenti."}
|
||||
{"chunk_id": "delan_pro_16562_reentry_requirements_0", "product_id": "delan_pro_16562", "product_name": "DELAN PRO", "target_crops": ["grapevine"], "target_diseases": [], "chunk_type": "reentry_requirements", "chunk_text": "Non rientrare nell’area trattata finché la vegetazione non sia completamente asciutta. Lasciar trascorrere almeno 48 ore per il rientro nel vigneto."}
|
||||
{"chunk_id": "delan_pro_16562_buffer_zones_0", "product_id": "delan_pro_16562", "product_name": "DELAN PRO", "target_crops": ["apple", "pear"], "target_diseases": [], "chunk_type": "buffer_zones", "chunk_text": "Per gli impieghi su MELO e PERO, per proteggere gli organismi acquatici applicare una delle seguenti misure di mitigazione:\n• fascia di rispetto di 25 metri da corpi idrici superficiali;\n• fascia di rispetto di 20 metri da corpi idrici superficiali in combinazione all’utilizzo di ugelli che abbattano del 30% la deriva;\n• fascia di rispetto di 20 metri da corpi idrici superficiali in combinazione al trattamento dell’ultima fila dall’esterno all’interno con un ulteriore abbattimento della deriva del 35%."}
|
||||
{"chunk_id": "delan_pro_16562_buffer_zones_1", "product_id": "delan_pro_16562", "product_name": "DELAN PRO", "target_crops": ["grapevine"], "target_diseases": [], "chunk_type": "buffer_zones", "chunk_text": "Per gli impieghi su VITE, per proteggere gli organismi acquatici applicare una fascia di rispetto vegetata non trattata di 20 metri da corpi idrici superficiali; in alternativa applicare una fascia di rispetto vegetata non trattata di 5 metri in combinazione all’utilizzo di dispositivi che abbattano la deriva del 95%."}
|
||||
{"chunk_id": "delan_pro_16562_dosage_instructions_0", "product_id": "delan_pro_16562", "product_name": "DELAN PRO", "target_crops": ["apple", "pear", "grapevine"], "target_diseases": ["scab", "alternaria", "anthracnose", "powdery mildew", "brown spot", "phomopsis (dead-arm)", "downy mildew", "black rot"], "chunk_type": "dosage_instructions", "chunk_text": "DOSI, EPOCHE E MODALITA’ D'IMPIEGO\nSi raccomanda lo scrupoloso rispetto di dosi, intervallo tra i trattamenti e numero massimo di trattamenti all’anno.\n*dose valida per il volume di soluzione massimo di 300 L/ha\nColtura | Malattia | Dose L/hl | Dose L/ha | Intervallo tra i trattamenti (giorni) | N° massimo di trattamenti all’anno\nMelo | Ticchiolatura (Venturia inaequalis) Alternariosi (Alternaria spp.) Glomerella (Colletotrichum spp.) Patina bianca (Tilletiopsis spp.) | 0,17 | 2,5 | 5-10 | 6\nPero | Ticchiolatura (Venturia pirina) Maculatura bruna (Stemphylium vesicarium) | 0,17 | 2,5 | 5-10 | 6\nVite (Uva da vino) | Escoriosi (Phomopsis viticola) | 1* | 3 | 7 | 2\nVite (Uva da vino) | Peronospora (Plasmopara viticola) Marciume nero (Guignardia bidwellii) | 0,3 - 0,4 | 3-4 | 10-14 | 4"}
|
||||
{"chunk_id": "delan_pro_16562_application_recommendations_0", "product_id": "delan_pro_16562", "product_name": "DELAN PRO", "target_crops": ["apple", "pear", "grapevine"], "target_diseases": ["scab", "alternaria", "anthracnose", "powdery mildew", "brown spot", "phomopsis (dead-arm)", "downy mildew", "black rot"], "chunk_type": "application_recommendations", "chunk_text": "Impiegare volumi di soluzione che consentano una completa ed omogenea bagnatura, evitando lo sgocciolamento della vegetazione."}
|
||||
{"chunk_id": "delan_pro_16562_crop_instructions_0", "product_id": "delan_pro_16562", "product_name": "DELAN PRO", "target_crops": ["apple", "pear"], "target_diseases": ["scab", "brown spot", "alternaria", "anthracnose", "powdery mildew"], "chunk_type": "crop_instructions", "chunk_text": "Per il controllo di ticchiolatura, maculatura bruna, alternariosi, glomerella e patina bianca intervenire da schiusura gemme fino ad inizio maturazione dei frutti, utilizzando un volume d’acqua compreso tra 200 e 1500 litri ad ettaro a seconda dello sviluppo vegetativo."}
|
||||
{"chunk_id": "delan_pro_16562_crop_instructions_1", "product_id": "delan_pro_16562", "product_name": "DELAN PRO", "target_crops": ["grapevine"], "target_diseases": ["phomopsis (dead-arm)"], "chunk_type": "crop_instructions", "chunk_text": "Per il controllo dell’escoriosi intervenire da germogliamento a foglie distese della vite, utilizzando un volume d’acqua pari a 150-300 litri ad ettaro."}
|
||||
{"chunk_id": "delan_pro_16562_crop_instructions_2", "product_id": "delan_pro_16562", "product_name": "DELAN PRO", "target_crops": ["grapevine"], "target_diseases": ["downy mildew", "black rot"], "chunk_type": "crop_instructions", "chunk_text": "Per il controllo della peronospora e del marciume nero intervenire a partire dalla fase fenologica di foglie distese della vite, utilizzando un volume d’acqua compreso tra 200 e 1000 litri ad ettaro a seconda dello sviluppo vegetativo. Il prodotto deve essere usato preventivamente, nei periodi critici per lo sviluppo delle malattie della vite."}
|
||||
{"chunk_id": "delan_pro_16562_weather_constraints_0", "product_id": "delan_pro_16562", "product_name": "DELAN PRO", "target_crops": ["apple", "pear", "grapevine"], "target_diseases": [], "chunk_type": "weather_constraints", "chunk_text": "Con alta pressione di malattia, con forti precipitazioni o con rapida crescita della vegetazione è necessario rispettare l’intervallo più breve tra i trattamenti."}
|
||||
{"chunk_id": "delan_pro_16562_resistance_management_0", "product_id": "delan_pro_16562", "product_name": "DELAN PRO", "target_crops": ["apple", "pear", "grapevine"], "target_diseases": ["scab", "alternaria", "anthracnose", "powdery mildew", "brown spot", "phomopsis (dead-arm)", "downy mildew", "black rot"], "chunk_type": "resistance_management", "chunk_text": "GESTIONE DELLA RESISTENZA\nPer evitare o ritardare l’insorgenza di fenomeni di resistenza attenersi alle indicazioni riportate in etichetta e applicare DELAN PRO preventivamente."}
|
||||
{"chunk_id": "delan_pro_16562_application_recommendations_1", "product_id": "delan_pro_16562", "product_name": "DELAN PRO", "target_crops": ["apple", "pear", "grapevine"], "target_diseases": ["scab", "alternaria", "anthracnose", "powdery mildew", "brown spot", "phomopsis (dead-arm)", "downy mildew", "black rot"], "chunk_type": "application_recommendations", "chunk_text": "PREPARAZIONE DELLA MISCELA\nAttenzione: durante la fase di miscelazione e carico del prodotto utilizzare occhiali protettivi. Assicurarsi che l’attrezzatura sia pulita e tarata correttamente per il trattamento da effettuare. Riempire il serbatoio con acqua fino a metà. Mettere in moto l’agitatore del serbatoio prima di versarvi la dose di prodotto necessaria. Continuando ad agitare la soluzione, aggiungere acqua sino al volume previsto per l’applicazione. Dopo l’applicazione pulire l’attrezzatura con acqua."}
|
||||
{"chunk_id": "delan_pro_16562_application_recommendations_2", "product_id": "delan_pro_16562", "product_name": "DELAN PRO", "target_crops": ["apple", "pear", "grapevine"], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "CONSERVAZIONE: Per garantire la stabilità del prodotto, non conservare a temperature superiori ai 40°C."}
|
||||
{"chunk_id": "delan_pro_16562_compatibility_1", "product_id": "delan_pro_16562", "product_name": "DELAN PRO", "target_crops": ["apple", "pear", "grapevine"], "target_diseases": [], "chunk_type": "compatibility", "chunk_text": "COMPATIBILITA'\nDELAN PRO è risultato compatibile, mantenendo in agitazione la miscela, con i più diffusi prodotti fungicidi, insetticidi e regolatori di crescita in commercio al momento della sua registrazione. In caso di miscela con nuovi prodotti è buona prassi effettuare saggi preliminari di miscibilità. Il prodotto non é compatibile con concimi fogliari contenenti azoto (nitrico ed ammoniacale). Non effettuare miscele con formulati oleosi e non irrorare il prodotto su colture precedentemente trattate con formulati oleosi perché ostacolerebbero la penetrazione del prodotto nella pianta. Si consiglia cautela quando si effettuano miscele con prodotti contenenti carbonato o bicarbonato in quanto potrebbe formarsi anidride carbonica e/o schiuma."}
|
||||
{"chunk_id": "delan_pro_16562_phytotoxicity_0", "product_id": "delan_pro_16562", "product_name": "DELAN PRO", "target_crops": ["grapevine"], "target_diseases": [], "chunk_type": "phytotoxicity", "chunk_text": "FITOTOSSICITA'\nSu varietà Corvina, Corvinone, Garganega, Malvasia, Molinara, Rondinella, Schiava e altre varietà locali effettuare saggi preliminari su poche piante, prima di estendere i trattamenti a tutto il vigneto, soprattutto in caso di miscela con altri prodotti."}
|
||||
{"chunk_id": "delan_pro_16562_reentry_requirements_1", "product_id": "delan_pro_16562", "product_name": "DELAN PRO", "target_crops": ["apple", "pear", "grapevine"], "target_diseases": [], "chunk_type": "reentry_requirements", "chunk_text": "Sospendere i trattamenti 35 GIORNI prima della raccolta su melo e pero, 42 GIORNI prima della raccolta su vite (uva da vino)."}
|
||||
{"chunk_id": "delan_pro_16562_application_recommendations_3", "product_id": "delan_pro_16562", "product_name": "DELAN PRO", "target_crops": ["apple", "pear", "grapevine"], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "Non applicare con mezzi aerei."}
|
||||
{"chunk_id": "delan_pro_16562_weather_constraints_1", "product_id": "delan_pro_16562", "product_name": "DELAN PRO", "target_crops": ["apple", "pear", "grapevine"], "target_diseases": [], "chunk_type": "weather_constraints", "chunk_text": "Operare in assenza di vento."}
|
||||
21
data/chunks/enervin_system_17766.jsonl
Normal file
21
data/chunks/enervin_system_17766.jsonl
Normal file
@ -0,0 +1,21 @@
|
||||
{"chunk_id": "enervin_system_17766_environmental_restrictions_0", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["lettuce"], "target_diseases": [], "chunk_type": "environmental_restrictions", "chunk_text": "Lattughe e insalate: per proteggere gli uccelli, evitare l'irrigazione della coltura fino a un giorno dopo l'applicazione."}
|
||||
{"chunk_id": "enervin_system_17766_buffer_zones_0", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["grapevine", "potato", "tomato", "eggplant", "cucumber", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "chard", "herbs_fresh"], "target_diseases": [], "chunk_type": "buffer_zones", "chunk_text": "Per ridurre il rischio di eutrofizzazione applicare le seguenti misure di mitigazione:\n- Rispettare una fascia di sicurezza vegetata non trattata di 5 m per tutti gli usi in serra;\n- Rispettare una fascia di sicurezza vegetata non trattata di 10 m per la vite;\n- Rispettare una fascia di sicurezza vegetata non trattata di 5 m per patata, pomodoro, melanzana, cucurbitacee, lattughe e insalate, spinacio e bietola, erbe fresche.\nPer proteggere i residenti e gli astanti è necessario rispettare una zona tampone di 5 metri."}
|
||||
{"chunk_id": "enervin_system_17766_ppe_requirements_0", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["grapevine", "potato", "tomato", "eggplant", "cucumber", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "chard", "herbs_fresh"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "ppe_requirements", "chunk_text": "In campo: l’uso dei guanti durante la miscelazione e l’applicazione del prodotto è obbligatorio. Indossare indumenti da lavoro a maniche lunghe.\nIn serra: Indossare indumenti da lavoro a maniche lunghe e guanti durante la miscelazione e l’applicazione del prodotto. In caso di contatto intensivo con le colture trattate, l'operatore deve indossare indumenti e guanti impermeabili.\nAvvertenza - Durante le operazioni di miscelazione e carico utilizzare guanti e tuta standard; durante l’applicazione utilizzare tuta standard."}
|
||||
{"chunk_id": "enervin_system_17766_reentry_requirements_0", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["grapevine", "potato", "tomato", "eggplant", "cucumber", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "chard", "herbs_fresh"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "reentry_requirements", "chunk_text": "Per quanto riguarda la vite, quando un lavoratore rientra in campo per le attività, l’utilizzo dei guanti è obbligatorio. Non rientrare nell’area trattata prima che la vegetazione sia completamente asciutta."}
|
||||
{"chunk_id": "enervin_system_17766_application_recommendations_0", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["grapevine", "potato", "tomato", "eggplant", "cucumber", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "chard", "herbs_fresh"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "ENERVIN® SYSTEM deve essere applicato preventivamente nei periodi critici di sviluppo della peronospora. Si raccomanda lo scrupoloso rispetto di: dosi, intervallo tra i trattamenti e numero massimo di trattamenti."}
|
||||
{"chunk_id": "enervin_system_17766_dosage_instructions_0", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "Vite (uva da vino e da tavola): contro peronospora (Plasmopara viticola) impiegare il prodotto rispettando la dose massima di 4,2 litri per ettaro, indipendentemente dalla fase fenologica. Rispettare un massimo di 2 trattamenti a stagione e un intervallo tra le applicazioni di 10-12 giorni. Per un uso ottimale del prodotto si consiglia di modulare i dosaggi in funzione del periodo di applicazione e della forma di allevamento, seguendo le indicazioni riportate nella tabella sottostante:\nForme di allevamento\nPeriodo di applicazione\nDose consigliata L/ha\nA spalliera (es: Guyot, cordone speronato, ecc.)\nPrima della fioritura\n2,5 - 3,5\nDa inizio fioritura in poi\n3,5 - 4,2\nEspanse (es: Tendone, Pergola, GDC, ecc.)\nPrima della fioritura\n3,0 - 3,5\nDa inizio fioritura in poi\n3,5 - 4,2\nIn condizioni favorevoli allo sviluppo della malattia, si raccomanda di utilizzare gli intervalli più brevi e i dosaggi più alti. In nessun caso utilizzare dosaggi inferiori a 2,5 litri per ettaro."}
|
||||
{"chunk_id": "enervin_system_17766_dosage_instructions_1", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["potato"], "target_diseases": ["late blight"], "chunk_type": "dosage_instructions", "chunk_text": "Patata, in pieno campo: contro peronospora (Phytophthora infestans) impiegare il prodotto alla dose di 3,2 litri per ettaro. Rispettare un massimo di 2 trattamenti a stagione e un intervallo minimo tra le applicazioni di 5 giorni."}
|
||||
{"chunk_id": "enervin_system_17766_dosage_instructions_2", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["tomato", "eggplant"], "target_diseases": ["late blight"], "chunk_type": "dosage_instructions", "chunk_text": "Pomodoro e melanzana, in pieno campo e serra: contro peronospora (Phytophthora infestans) impiegare il prodotto alla dose di 3,2 litri per ettaro. Rispettare un massimo di 2 trattamenti a stagione e un intervallo minimo tra le applicazioni di 7 giorni."}
|
||||
{"chunk_id": "enervin_system_17766_dosage_instructions_3", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["cucumber", "zucchini"], "target_diseases": ["downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "Cucurbitacee con buccia commestibile (cetrioli e zucchine), in serra: contro peronospora (Pseudoperonospora cubensis) impiegare il prodotto alla dose di 3,2 litri per ettaro. Rispettare un massimo di 2 trattamenti a stagione e un intervallo minimo tra le applicazioni di 7 giorni."}
|
||||
{"chunk_id": "enervin_system_17766_dosage_instructions_4", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["melon", "watermelon", "pumpkin"], "target_diseases": ["downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "Cucurbitacee con buccia non commestibile (meloni, cocomeri e zucche), in pieno campo: contro peronospora (Pseudoperonospora cubensis) impiegare il prodotto alla dose di 3,2 litri per ettaro. Rispettare un massimo di 2 trattamenti a stagione e un intervallo minimo tra le applicazioni di 7 giorni."}
|
||||
{"chunk_id": "enervin_system_17766_dosage_instructions_5", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["lettuce"], "target_diseases": ["downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "Lattughe e insalate (escluso prodotti baby leaf), in pieno campo: contro peronospora (Peronospora spp., Bremia lactucae) impiegare il prodotto alla dose di 3,2 litri per ettaro. Rispettare un massimo di 2 trattamenti a stagione e un intervallo minimo tra le applicazioni di 7 giorni."}
|
||||
{"chunk_id": "enervin_system_17766_dosage_instructions_6", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["spinach", "chard"], "target_diseases": ["downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "Spinacio, bietola da foglia e da costa, in pieno campo: contro peronospora (Peronospora spp.) impiegare il prodotto alla dose di 3,2 litri per ettaro. Rispettare un massimo di 2 trattamenti a stagione e un intervallo minimo tra le applicazioni di 7 giorni."}
|
||||
{"chunk_id": "enervin_system_17766_dosage_instructions_7", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["herbs_fresh"], "target_diseases": ["downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "Erbe fresche, in pieno campo: contro peronospora (Peronospora spp.) impiegare il prodotto alla dose di 3,2 litri per ettaro. Rispettare un massimo di 2 trattamenti a stagione e un intervallo minimo tra le applicazioni di 7 giorni."}
|
||||
{"chunk_id": "enervin_system_17766_application_recommendations_1", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["grapevine", "potato", "tomato", "eggplant", "cucumber", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "chard", "herbs_fresh"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "Utilizzare il prodotto con volumi d’acqua pari a 100-1200 litri per ettaro su vite e 100-1000 litri per ettaro sulle colture orticole, in funzione dello stadio di sviluppo della coltura e del tipo di attrezzatura disponibile per l’applicazione in campo, rispettando le dosi massime per ettaro consentite. Ad ogni modo, impiegare volumi d’acqua che consentano una completa ed omogenea bagnatura, evitando lo sgocciolamento della vegetazione."}
|
||||
{"chunk_id": "enervin_system_17766_resistance_management_0", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["grapevine", "potato", "tomato", "eggplant", "cucumber", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "chard", "herbs_fresh"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "resistance_management", "chunk_text": "Si consiglia di usare ENERVIN® SYSTEM nei periodi critici di sviluppo delle malattie sopra elencate, nell’ambito di un programma di trattamenti che preveda l’alternanza di sostanze attive con diverso meccanismo d’azione. Attenersi sempre alle linee guida FRAC anti-resistenza per l’applicazione di fungicidi appartenente ai gruppi 45 e P07."}
|
||||
{"chunk_id": "enervin_system_17766_application_recommendations_2", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["grapevine", "potato", "tomato", "eggplant", "cucumber", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "chard", "herbs_fresh"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "PREPARAZIONE DELLA MISCELA\nAssicurarsi che l’attrezzatura sia pulita e tarata correttamente per il trattamento da effettuare. Riempire il serbatoio con acqua fino a metà circa. Mettere in moto l’agitatore del serbatoio prima di versarvi la dose di prodotto necessaria. Continuando ad agitare la soluzione, aggiungere acqua fino al volume previsto per l’applicazione. Dopo l’applicazione è buona pratica pulire bene l’attrezzatura con acqua."}
|
||||
{"chunk_id": "enervin_system_17766_phytotoxicity_0", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["grapevine", "potato", "tomato", "eggplant", "cucumber", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "chard", "herbs_fresh"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "phytotoxicity", "chunk_text": "ENERVIN® SYSTEM, applicato secondo le indicazioni riportate in questa etichetta, non ha mai causato danni significativi alle diverse cultivar di vite ed orticole saggiate fino ad oggi. Tuttavia, su varietà nuove e/o in caso di miscela con altri prodotti, si raccomanda di fare saggi preliminari su una piccola superficie, prima di estendere l’applicazione a tutto il campo."}
|
||||
{"chunk_id": "enervin_system_17766_compatibility_0", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["grapevine", "potato", "tomato", "eggplant", "cucumber", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "chard", "herbs_fresh"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "compatibility", "chunk_text": "ENERVIN® SYSTEM è risultato compatibile con i più diffusi prodotti fungicidi, insetticidi e regolatori di crescita in commercio al momento della sua registrazione. Tuttavia, in caso di miscela con altri prodotti, si raccomanda di eseguire sempre saggi preliminari di miscibilità.\nIl prodotto non è compatibile con concimi fogliari contenenti azoto (nitrico e ammoniacale)."}
|
||||
{"chunk_id": "enervin_system_17766_reentry_requirements_1", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["grapevine", "potato", "lettuce", "spinach", "chard", "herbs_fresh", "tomato", "eggplant", "cucumber", "zucchini", "melon", "watermelon", "pumpkin"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "reentry_requirements", "chunk_text": "Sospendere i trattamenti: 35 giorni prima della raccolta della vite (uva da vino e da tavola); 7 giorni prima della raccolta di patate, lattughe e insalate, spinaci, bietole da foglia e da costa, erbe fresche; 1 giorno prima della raccolta di pomodori, melanzane, cetrioli, zucchine, meloni, cocomeri e zucche."}
|
||||
{"chunk_id": "enervin_system_17766_application_recommendations_3", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["grapevine", "potato", "tomato", "eggplant", "cucumber", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "chard", "herbs_fresh"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "Non applicare con mezzi aerei."}
|
||||
{"chunk_id": "enervin_system_17766_weather_constraints_0", "product_id": "enervin_system_17766", "product_name": "ENERVIN SYSTEM", "target_crops": ["grapevine", "potato", "tomato", "eggplant", "cucumber", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "spinach", "chard", "herbs_fresh"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "weather_constraints", "chunk_text": "Operare in assenza di vento."}
|
||||
16
data/chunks/faltex_50_sc_18394.jsonl
Normal file
16
data/chunks/faltex_50_sc_18394.jsonl
Normal file
@ -0,0 +1,16 @@
|
||||
{"chunk_id": "faltex_50_sc_18394_resistance_management_0", "product_id": "faltex_50_sc_18394", "product_name": "FALTEX 50 SC", "target_crops": ["grapevine", "tomato"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew", "alternaria", "cladosporium", "anthracnose", "septoria leaf blotch", "botrytis (grey mould)"], "chunk_type": "resistance_management", "chunk_text": "Meccanismo d’azione: FRAC M4"}
|
||||
{"chunk_id": "faltex_50_sc_18394_buffer_zones_0", "product_id": "faltex_50_sc_18394", "product_name": "FALTEX 50 SC", "target_crops": ["grapevine", "tomato"], "target_diseases": [], "chunk_type": "buffer_zones", "chunk_text": "Adoperare a una distanza non inferiore a 10 m dai corpi idrici per vite e pomodoro da consumo fresco, a una distanza non inferiore a 3 m per pomodoro da industria."}
|
||||
{"chunk_id": "faltex_50_sc_18394_crop_instructions_0", "product_id": "faltex_50_sc_18394", "product_name": "FALTEX 50 SC", "target_crops": ["grapevine"], "target_diseases": ["downy mildew", "botrytis (grey mould)"], "chunk_type": "crop_instructions", "chunk_text": "Il prodotto ha un’azione preventiva nei confronti della peronospora e botrite della vite."}
|
||||
{"chunk_id": "faltex_50_sc_18394_dosage_instructions_0", "product_id": "faltex_50_sc_18394", "product_name": "FALTEX 50 SC", "target_crops": ["grapevine"], "target_diseases": ["phomopsis (dead-arm)"], "chunk_type": "dosage_instructions", "chunk_text": "Vite (da vino): Phomopsis viticola (escoriosi): 2 trattamenti allo stadio di 7-8 foglie, a partire dal germogliamento e dopo circa 1 settimana) a 0,5-1,5 L/hL con un massimo di 3 L/ha per trattamento."}
|
||||
{"chunk_id": "faltex_50_sc_18394_dosage_instructions_1", "product_id": "faltex_50_sc_18394", "product_name": "FALTEX 50 SC", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "Vite (da vino): Peronospora: applicare quando le condizioni sono favorevoli allo sviluppo della malattia fino a 28 giorni prima della raccolta a 0,2 – 2 L/hL con un massimo di 2 L/ha per trattamento."}
|
||||
{"chunk_id": "faltex_50_sc_18394_resistance_management_1", "product_id": "faltex_50_sc_18394", "product_name": "FALTEX 50 SC", "target_crops": ["grapevine"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew"], "chunk_type": "resistance_management", "chunk_text": "Vite (da vino): Massimo 10 applicazioni complessive per stagione."}
|
||||
{"chunk_id": "faltex_50_sc_18394_dosage_instructions_2", "product_id": "faltex_50_sc_18394", "product_name": "FALTEX 50 SC", "target_crops": ["tomato"], "target_diseases": ["alternaria", "cladosporium", "anthracnose", "septoria leaf blotch", "botrytis (grey mould)"], "chunk_type": "dosage_instructions", "chunk_text": "Pomodoro (in campo): Alternaria spp. (alternariosi), Fulvia fulva (cladosporiosi), Colletotrichum coccodes (antracnosi), Septoria lycopersici (septoriosi), Botrytis cinerea (muffa grigia): effettuare un massimo di 4 trattamenti dallo stadio di 3-4 foglie fino a 7 giorni prima della raccolta a 0,25 – 0,5 L/hL con un massimo di 2,5 L/ha per trattamento."}
|
||||
{"chunk_id": "faltex_50_sc_18394_dosage_instructions_3", "product_id": "faltex_50_sc_18394", "product_name": "FALTEX 50 SC", "target_crops": ["tomato"], "target_diseases": ["alternaria", "cladosporium", "anthracnose", "septoria leaf blotch", "botrytis (grey mould)"], "chunk_type": "dosage_instructions", "chunk_text": "Pomodoro (in serra): Alternaria spp. (alternariosi), Fulvia fulva (cladosporiosi), Colletotrichum coccodes (antracnosi), Septoria lycopersici (septoriosi), Botrytis cinerea (muffa grigia): effettuare un massimo di 3 trattamenti dallo stadio di 3-4 foglie fino a 7 giorni prima della raccolta a 0,25–0,32 L/hL con un massimo di 3,2 L/ha per trattamento."}
|
||||
{"chunk_id": "faltex_50_sc_18394_application_recommendations_0", "product_id": "faltex_50_sc_18394", "product_name": "FALTEX 50 SC", "target_crops": ["grapevine", "tomato"], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "Preparazione della miscela acquosa: versare direttamente la quantità necessaria di prodotto nel serbatoio dell’irroratrice, mantenendo l’acqua in agitazione. N.B. Le dosi si riferiscono all’impiego con pompe a volume normale."}
|
||||
{"chunk_id": "faltex_50_sc_18394_compatibility_0", "product_id": "faltex_50_sc_18394", "product_name": "FALTEX 50 SC", "target_crops": ["grapevine", "tomato"], "target_diseases": [], "chunk_type": "compatibility", "chunk_text": "Il prodotto non è miscibile con Poltiglia bordolese, Polisolfuro e Olio bianco."}
|
||||
{"chunk_id": "faltex_50_sc_18394_compatibility_1", "product_id": "faltex_50_sc_18394", "product_name": "FALTEX 50 SC", "target_crops": ["grapevine", "tomato"], "target_diseases": [], "chunk_type": "compatibility", "chunk_text": "In caso di miscela con altri formulati deve essere rispettato il periodo di carenza più lungo."}
|
||||
{"chunk_id": "faltex_50_sc_18394_phytotoxicity_0", "product_id": "faltex_50_sc_18394", "product_name": "FALTEX 50 SC", "target_crops": ["grapevine", "tomato"], "target_diseases": [], "chunk_type": "phytotoxicity", "chunk_text": "Devono trascorrere almeno 20 giorni da un’applicazione con oli minerali e prodotti a base di zolfo."}
|
||||
{"chunk_id": "faltex_50_sc_18394_environmental_restrictions_0", "product_id": "faltex_50_sc_18394", "product_name": "FALTEX 50 SC", "target_crops": ["grapevine", "tomato"], "target_diseases": [], "chunk_type": "environmental_restrictions", "chunk_text": "Il prodotto è tossico per gli insetti utili ed i pesci."}
|
||||
{"chunk_id": "faltex_50_sc_18394_reentry_requirements_0", "product_id": "faltex_50_sc_18394", "product_name": "FALTEX 50 SC", "target_crops": ["grapevine", "tomato"], "target_diseases": [], "chunk_type": "reentry_requirements", "chunk_text": "Sospendere i trattamenti 28 giorni prima della raccolta per la vite e 7 giorni prima della raccolta per il pomodoro."}
|
||||
{"chunk_id": "faltex_50_sc_18394_application_recommendations_1", "product_id": "faltex_50_sc_18394", "product_name": "FALTEX 50 SC", "target_crops": ["grapevine", "tomato"], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "Non applicare con i mezzi aerei."}
|
||||
{"chunk_id": "faltex_50_sc_18394_weather_constraints_0", "product_id": "faltex_50_sc_18394", "product_name": "FALTEX 50 SC", "target_crops": ["grapevine", "tomato"], "target_diseases": [], "chunk_type": "weather_constraints", "chunk_text": "Operare in assenza di vento."}
|
||||
14
data/chunks/idrorame_flow_1850.jsonl
Normal file
14
data/chunks/idrorame_flow_1850.jsonl
Normal file
File diff suppressed because one or more lines are too long
11
data/chunks/melody_flex_18293.jsonl
Normal file
11
data/chunks/melody_flex_18293.jsonl
Normal file
@ -0,0 +1,11 @@
|
||||
{"chunk_id": "melody_flex_18293_ppe_requirements_0", "product_id": "melody_flex_18293", "product_name": "MELODY FLEX", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "ppe_requirements", "chunk_text": "Durante le fasi di miscelazione, carico e applicazione del prodotto indossare tuta protettiva e guanti adatti. Durante le attività in campo successive al trattamento indossare guanti protettivi idonei."}
|
||||
{"chunk_id": "melody_flex_18293_reentry_requirements_0", "product_id": "melody_flex_18293", "product_name": "MELODY FLEX", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "reentry_requirements", "chunk_text": "Non rientrare nelle aree trattate prima che la vegetazione sia completamente asciutta."}
|
||||
{"chunk_id": "melody_flex_18293_environmental_restrictions_0", "product_id": "melody_flex_18293", "product_name": "MELODY FLEX", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "environmental_restrictions", "chunk_text": "Non applicare prodotti a base di iprovalicarb su suoli con un basso contenuto di argilla (inferiore all’8%). Non pulire il materiale d’applicazione in prossimità delle acque di superficie. Evitare la contaminazione attraverso i sistemi di scolo delle acque dalle aziende agricole e dalle strade."}
|
||||
{"chunk_id": "melody_flex_18293_buffer_zones_0", "product_id": "melody_flex_18293", "product_name": "MELODY FLEX", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "buffer_zones", "chunk_text": "Per proteggere gli organismi acquatici rispettare una delle seguenti indicazioni alternative:\n- non trattare in una fascia di rispetto dai corpi idrici di 20 metri di cui 10 metri di fascia vegetata\n- oppure non trattare in una fascia vegetata dai corpi idrici di 10 metri, riducendo la deriva del 50%."}
|
||||
{"chunk_id": "melody_flex_18293_dosage_instructions_0", "product_id": "melody_flex_18293", "product_name": "MELODY FLEX", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "Coltura: Vite da vino\nPatogeno: Plasmopara viticola\nDose d’impiego (kg/ha): 0,9 / Volume acqua (L/ha): 200-500 / Dose d’impiego (g/hL): 180-450 / Epoca d’impiego: Da foglie sviluppate (BBCH 16) a inizio fioritura (BBCH 61)\nDose d’impiego (kg/ha): 1,8 / Volume acqua (L/ha): 200-1000 / Dose d’impiego (g/hL): 180-900 / Epoca d’impiego: Da inizio fioritura (BBCH 61)\nN. max di applicazioni/anno: 4\n\nVite (uva da vino): contro peronospora (Plasmopara viticola) intervenire preventivamente da foglie sviluppate a inizio fioritura alla dose di 0,9 kg/ha e successivamente da inizio fioritura alla dose di 1,8 kg/ha, a intervalli di 10-12 giorni. In caso di forte pressione infettiva utilizzare la dose di 1,8 Kg/ha e ridurre a 10 giorni l’intervallo tra i trattamenti."}
|
||||
{"chunk_id": "melody_flex_18293_crop_instructions_0", "product_id": "melody_flex_18293", "product_name": "MELODY FLEX", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "crop_instructions", "chunk_text": "Applicare da foglie sviluppate (BBCH 16) a inizio fioritura (BBCH 61) e successivamente da inizio fioritura (BBCH 61)."}
|
||||
{"chunk_id": "melody_flex_18293_application_recommendations_0", "product_id": "melody_flex_18293", "product_name": "MELODY FLEX", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "application_recommendations", "chunk_text": "In caso d’impiego con attrezzature a basso o ultra-basso volume, le concentrazioni del prodotto devono essere aumentate in modo da garantire lo stesso dosaggio per ettaro. Non applicare con i mezzi aerei. Conservare al riparo dall’umidità."}
|
||||
{"chunk_id": "melody_flex_18293_weather_constraints_0", "product_id": "melody_flex_18293", "product_name": "MELODY FLEX", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "weather_constraints", "chunk_text": "Per temperature diurne superiori a 30°C, si raccomanda di effettuare i trattamenti alla sera o alle prime ore del mattino. Operare in assenza di vento."}
|
||||
{"chunk_id": "melody_flex_18293_resistance_management_0", "product_id": "melody_flex_18293", "product_name": "MELODY FLEX", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "resistance_management", "chunk_text": "E’ consigliabile alternare questo prodotto con fungicidi aventi diverso meccanismo d’azione. Utilizzare i fungicidi CAA al massimo per 4 interventi l’anno effettuando non più di 2 applicazioni consecutive e comunque non superando il 50% delle applicazioni totali."}
|
||||
{"chunk_id": "melody_flex_18293_compatibility_0", "product_id": "melody_flex_18293", "product_name": "MELODY FLEX", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "compatibility", "chunk_text": "Melody Flex non è miscibile con poltiglia bordolese, polisolfuri e olii bianchi."}
|
||||
{"chunk_id": "melody_flex_18293_reentry_requirements_1", "product_id": "melody_flex_18293", "product_name": "MELODY FLEX", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "reentry_requirements", "chunk_text": "Sospendere i trattamenti 28 giorni prima del raccolto su uva da vino."}
|
||||
16
data/chunks/mikal_f_17113.jsonl
Normal file
16
data/chunks/mikal_f_17113.jsonl
Normal file
@ -0,0 +1,16 @@
|
||||
{"chunk_id": "mikal_f_17113_ppe_requirements_0", "product_id": "mikal_f_17113", "product_name": "MIKAL F", "target_crops": ["grapevine"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew"], "chunk_type": "ppe_requirements", "chunk_text": "Durante le fasi di miscelazione, carico, applicazione e in caso di contatto con le superfici contaminate indossare guanti adatti e durante l’applicazione indossare anche una tuta idonea."}
|
||||
{"chunk_id": "mikal_f_17113_reentry_requirements_0", "product_id": "mikal_f_17113", "product_name": "MIKAL F", "target_crops": ["grapevine"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew"], "chunk_type": "reentry_requirements", "chunk_text": "Prima di accedere nell’area trattata attendere che la vegetazione sia completamente asciutta."}
|
||||
{"chunk_id": "mikal_f_17113_buffer_zones_0", "product_id": "mikal_f_17113", "product_name": "MIKAL F", "target_crops": ["grapevine"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew"], "chunk_type": "buffer_zones", "chunk_text": "Per proteggere gli organismi acquatici non trattare in una fascia di rispetto vegetata dai corpi idrici superficiali di 20 metri."}
|
||||
{"chunk_id": "mikal_f_17113_environmental_restrictions_0", "product_id": "mikal_f_17113", "product_name": "MIKAL F", "target_crops": ["grapevine"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew"], "chunk_type": "environmental_restrictions", "chunk_text": "Non contaminare l’acqua con il prodotto o il suo contenitore. Non pulire il materiale d’applicazione in prossimità delle acque di superficie. Evitare la contaminazione attraverso i sistemi di scolo delle acque dalle aziende agricole e dalle strade."}
|
||||
{"chunk_id": "mikal_f_17113_resistance_management_0", "product_id": "mikal_f_17113", "product_name": "MIKAL F", "target_crops": ["grapevine"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew"], "chunk_type": "resistance_management", "chunk_text": "Meccanismo d’azione gruppi 33 - M4 (FRAC)"}
|
||||
{"chunk_id": "mikal_f_17113_dosage_instructions_0", "product_id": "mikal_f_17113", "product_name": "MIKAL F", "target_crops": ["grapevine"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "Coltura\nPatogeno\nDose d’impiego\nN. max di applicazioni/ anno\nVolumi Acqua l/ha\nEpoca d’impiego\nVite – uva da vino\nPhomopsis viticola\n300 g/hl\n1\nmax 1000\nDa inizio gemmazione (BBCH 7) a inizio sviluppo fogliare (2 foglie sviluppate – BBCH12)\nPlasmopara viticola\n3-4 kg/ha\n6\n100-400\nDa inizio sviluppo fogliare (3 foglie sviluppate- BBCH 13) a chiusura del grappolo (BBCH 79)\nVite – uva da tavola\nPhomopsis viticola\n300 g/hl\n1\nmax 1000\nDa inizio gemmazione (BBCH 7) a inizio sviluppo fogliare (2 foglie sviluppate – BBCH 12)\nPlasmopara viticola\n3-4 kg/ha\n6\n100-400\nDa inizio sviluppo fogliare (3 foglie sviluppate – BBCH 13) a fine fioritura (BBCH 69)"}
|
||||
{"chunk_id": "mikal_f_17113_crop_instructions_0", "product_id": "mikal_f_17113", "product_name": "MIKAL F", "target_crops": ["grapevine"], "target_diseases": ["phomopsis (dead-arm)"], "chunk_type": "crop_instructions", "chunk_text": "Vite (uva da vino): contro escoriosi (Phomopsis viticola) intervenire preventivamente effettuando 1 applicazione alla dose di 300 g/hl da inizio gemmazione a inizio sviluppo fogliare (2 foglie sviluppate)."}
|
||||
{"chunk_id": "mikal_f_17113_crop_instructions_1", "product_id": "mikal_f_17113", "product_name": "MIKAL F", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "crop_instructions", "chunk_text": "Vite (uva da vino): Contro peronospora (Plasmopara viticola) intervenire preventivamente effettuando fino a 6 applicazioni per anno alla dose di 3-4 kg/ha, ad intervalli di 12-14 giorni, da inizio sviluppo fogliare a chiusura del grappolo. In caso di forte pressione infettiva utilizzare la dose più alta e ridurre a 10 giorni l’intervallo tra i trattamenti."}
|
||||
{"chunk_id": "mikal_f_17113_crop_instructions_2", "product_id": "mikal_f_17113", "product_name": "MIKAL F", "target_crops": ["grapevine"], "target_diseases": ["phomopsis (dead-arm)"], "chunk_type": "crop_instructions", "chunk_text": "Vite (uva da tavola): contro escoriosi (Phomopsis viticola) intervenire preventivamente effettuando 1 applicazione alla dose di 300 g/hl da inizio gemmazione a inizio sviluppo fogliare (2 foglie sviluppate)."}
|
||||
{"chunk_id": "mikal_f_17113_crop_instructions_3", "product_id": "mikal_f_17113", "product_name": "MIKAL F", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "crop_instructions", "chunk_text": "Vite (uva da tavola): Contro peronospora (Plasmopara viticola) intervenire preventivamente effettuando fino a 6 applicazioni per anno alla dose di 3-4 kg/ha, ad intervalli di 12-14 giorni, da inizio sviluppo fogliare a fine fioritura. In caso di forte pressione infettiva utilizzare la dose più alta e ridurre a 10 giorni l’intervallo tra i trattamenti."}
|
||||
{"chunk_id": "mikal_f_17113_application_recommendations_0", "product_id": "mikal_f_17113", "product_name": "MIKAL F", "target_crops": ["grapevine"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew"], "chunk_type": "application_recommendations", "chunk_text": "Versare direttamente il prodotto nel serbatoio dell’irroratrice riempito di acqua a metà; riempire quindi con il rimanente quantitativo di acqua e mantenere in agitazione. La miscela deve essere utilizzata entro 48 ore dalla preparazione mantenendo l'agitatore in funzione."}
|
||||
{"chunk_id": "mikal_f_17113_resistance_management_1", "product_id": "mikal_f_17113", "product_name": "MIKAL F", "target_crops": ["grapevine"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew"], "chunk_type": "resistance_management", "chunk_text": "E’ consigliabile alternare questo prodotto con fungicidi aventi diverso meccanismo d’azione."}
|
||||
{"chunk_id": "mikal_f_17113_reentry_requirements_1", "product_id": "mikal_f_17113", "product_name": "MIKAL F", "target_crops": ["grapevine"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew"], "chunk_type": "reentry_requirements", "chunk_text": "Sospendere i trattamenti 28 giorni prima del raccolto su uva da vino e 70 giorni prima del raccolto su uva da tavola."}
|
||||
{"chunk_id": "mikal_f_17113_compatibility_0", "product_id": "mikal_f_17113", "product_name": "MIKAL F", "target_crops": ["grapevine"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew"], "chunk_type": "compatibility", "chunk_text": "Compatibilità: il prodotto può avere problemi di compatibilità in miscela con formulati contenenti rame, alcuni fitostimolatori e concimi fogliari contenenti azoto (nitrico e ammoniacale). Per queste associazioni risulta opportuno effettuare saggi preliminari per verificarne la compatibilità. Non effettuare miscele con formulati oleosi."}
|
||||
{"chunk_id": "mikal_f_17113_application_recommendations_1", "product_id": "mikal_f_17113", "product_name": "MIKAL F", "target_crops": ["grapevine"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew"], "chunk_type": "application_recommendations", "chunk_text": "Non applicare con i mezzi aerei."}
|
||||
{"chunk_id": "mikal_f_17113_weather_constraints_0", "product_id": "mikal_f_17113", "product_name": "MIKAL F", "target_crops": ["grapevine"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew"], "chunk_type": "weather_constraints", "chunk_text": "Operare in assenza di vento."}
|
||||
16
data/chunks/pergado_d_16296.jsonl
Normal file
16
data/chunks/pergado_d_16296.jsonl
Normal file
@ -0,0 +1,16 @@
|
||||
{"chunk_id": "pergado_d_16296_ppe_requirements_0", "product_id": "pergado_d_16296", "product_name": "PERGADO D", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "ppe_requirements", "chunk_text": "Durante la miscelazione/caricamento del prodotto indossare tuta e guanti protettivi. In caso di applicazione con trattore cabinato, indossare guanti e abbigliamento da lavoro. In caso di applicazione con trattore non cabinato, indossare tuta protettiva con cappuccio e guanti."}
|
||||
{"chunk_id": "pergado_d_16296_buffer_zones_0", "product_id": "pergado_d_16296", "product_name": "PERGADO D", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "buffer_zones", "chunk_text": "Per proteggere gli astanti rispettare una fascia di sicurezza non trattata di 15 metri da aree non destinate all’uso agricolo o di 10 metri in combinazione con ugelli antideriva (riduzione 30%) e con applicazione sull’ultima fila dall’esterno verso l’interno (riduzione 35%)."}
|
||||
{"chunk_id": "pergado_d_16296_reentry_requirements_0", "product_id": "pergado_d_16296", "product_name": "PERGADO D", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "reentry_requirements", "chunk_text": "Rientrare in campo solo quando la vegetazione è completamente asciutta e indossare indumenti protettivi e guanti."}
|
||||
{"chunk_id": "pergado_d_16296_buffer_zones_1", "product_id": "pergado_d_16296", "product_name": "PERGADO D", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "buffer_zones", "chunk_text": "Per proteggere gli organismi acquatici deve essere presente una fascia di rispetto vegetata non trattata di 20 m dai corpi idrici superficiali o di 10 m in combinazione con ugelli antideriva (riduzione 30%) e con applicazione sull’ultima fila dall’esterno verso l’interno (riduzione 35%)."}
|
||||
{"chunk_id": "pergado_d_16296_application_recommendations_0", "product_id": "pergado_d_16296", "product_name": "PERGADO D", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "application_recommendations", "chunk_text": "PERGADO D è un fungicida efficace nei confronti della peronospora della vite, da utilizzare nei periodi critici di sviluppo della malattia. Il prodotto è in larga parte trattenuto dai primi strati cerosi della vegetazione trattata e ciò assicura una notevole resistenza al dilavamento dopo l’asciugatura del deposito. Una parte del prodotto è in grado di penetrare nelle foglie (attività citotropica e translaminare), inibendo l’accrescimento del micelio e la sporulazione durante il periodo di incubazione."}
|
||||
{"chunk_id": "pergado_d_16296_crop_instructions_0", "product_id": "pergado_d_16296", "product_name": "PERGADO D", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "crop_instructions", "chunk_text": "Iniziare i trattamenti quando si verificano le condizioni predisponenti all’insorgenza della malattia. Il prodotto è consigliato per applicazioni preventive. Utilizzare le dosi più alte e gli intervalli più brevi in caso di condizioni metereologiche favorevoli allo sviluppo del patogeno."}
|
||||
{"chunk_id": "pergado_d_16296_dosage_instructions_0", "product_id": "pergado_d_16296", "product_name": "PERGADO D", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "VITE DA VINO: PERONOSPORA\nMalattie: Peronospora (Plasmopara viticola)\nDosi/hl: 140-200 ml/hl\nDosi/ha: 1.4-2 litri/ha\nApplicazione: Massimo 4 trattamenti ad intervallo di 8-12 giorni"}
|
||||
{"chunk_id": "pergado_d_16296_application_recommendations_1", "product_id": "pergado_d_16296", "product_name": "PERGADO D", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "application_recommendations", "chunk_text": "Adottare quantitativi d’acqua adeguati ad una completa ed omogenea bagnatura della vegetazione trattata, evitando lo sgocciolamento. Le dosi hl sono valide in caso di utilizzo di un volume di acqua di 1000 litri/ha. Nel caso di utilizzo di volumi di impiego più bassi (es. bassi volumi), fare riferimento alla dose/ha, utilizzando un volume di acqua non inferiore a 150 l/ha. Con volumi superiori a 1000 l/ha, fare riferimento alle dosi per ettolitro non superando la dose massima per ettaro."}
|
||||
{"chunk_id": "pergado_d_16296_resistance_management_0", "product_id": "pergado_d_16296", "product_name": "PERGADO D", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "resistance_management", "chunk_text": "Strategia antiresistenza: PERGADO D è un’associazione di due sostanze attive a diverso meccanismo di azione: mandipropamid appartiene alla famiglia delle mandelamidi e al gruppo dei CAA (carboxilic acid amides); agisce attraverso l’inibizione della formazione della parte cellulare degli oomiceti e appartiene al gruppo 40 della classificazione FRAC (Fungicides Resistance Action Commettee); dithianon è un fungicida di contatto multisito a basso rischio resistenza, appartiene al gruppo dei chinoni ed è l’unico rappresentanate del codice M9 della classificazione FRAC. Effettuare non più di 4 trattamenti all’anno con prodotti appartenenti al gruppo CAA."}
|
||||
{"chunk_id": "pergado_d_16296_phytotoxicity_0", "product_id": "pergado_d_16296", "product_name": "PERGADO D", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "phytotoxicity", "chunk_text": "Fitotossicità: il prodotto è generalmente selettivo per le colture indicate in etichetta; si consiglia di effettuare saggi preliminari su superfici ridotte prima di estendere il trattamento ad aree più vaste nei seguenti casi: varietà poco diffuse o di recente introduzione, trattamenti post-fiorali. In caso di miscela estemporanea con altri formulati, effettuare preventivamente un test di selettività."}
|
||||
{"chunk_id": "pergado_d_16296_application_recommendations_2", "product_id": "pergado_d_16296", "product_name": "PERGADO D", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "application_recommendations", "chunk_text": "PREPARAZIONE DELLA MISCELA\nAssicurarsi che l’attrezzatura sia pulita e correttamente tarata per il tipo di trattamento da effettuare.\n- Riempire la botte di acqua per un terzo ed aggiungere direttamente il prodotto senza alcuna pre-diluizione. Completare il riempimento del serbatoio mantenendo in funzione l’agitatore.\n- Dopo l’applicazione è buona pratica pulire l’attrezzatura risciacquando abbondantemente con acqua e, se necessario, con opportuni detergenti."}
|
||||
{"chunk_id": "pergado_d_16296_compatibility_0", "product_id": "pergado_d_16296", "product_name": "PERGADO D", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "compatibility", "chunk_text": "In caso di miscela estemporanea con altri formulati, effettuare preventivamente un test di compatibilità fisico-chimica. Se dovessero verificarsi incompatibilità, non utilizzare la miscela. In caso di miscela con altri formulati deve essere rispettato il periodo di carenza più lungo."}
|
||||
{"chunk_id": "pergado_d_16296_reentry_requirements_1", "product_id": "pergado_d_16296", "product_name": "PERGADO D", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "reentry_requirements", "chunk_text": "Sospendere i trattamenti 42 giorni prima della raccolta"}
|
||||
{"chunk_id": "pergado_d_16296_application_recommendations_3", "product_id": "pergado_d_16296", "product_name": "PERGADO D", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "application_recommendations", "chunk_text": "Non applicare con i mezzi aerei."}
|
||||
{"chunk_id": "pergado_d_16296_weather_constraints_0", "product_id": "pergado_d_16296", "product_name": "PERGADO D", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "weather_constraints", "chunk_text": "Operare in assenza di vento."}
|
||||
{"chunk_id": "pergado_d_16296_environmental_restrictions_0", "product_id": "pergado_d_16296", "product_name": "PERGADO D", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "environmental_restrictions", "chunk_text": "Non contaminare l'acqua con il prodotto o il suo contenitore. Non pulire il materiale d'applicazione in prossimità delle acque di superficie. Evitare la contaminazione attraverso i sistemi di scolo delle acque dalle aziende agricole e dalle strade."}
|
||||
14
data/chunks/pergado_sc_13382.jsonl
Normal file
14
data/chunks/pergado_sc_13382.jsonl
Normal file
@ -0,0 +1,14 @@
|
||||
{"chunk_id": "pergado_sc_13382_ppe_requirements_0", "product_id": "pergado_sc_13382", "product_name": "PERGADO SC", "target_crops": ["grapevine", "tomato", "eggplant", "melon", "watermelon", "pumpkin", "zucchini", "potato", "lettuce", "spinach", "herbs_fresh", "artichoke", "chard", "cauliflower", "broccoli", "radish"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "ppe_requirements", "chunk_text": "Durante la miscelazione e il caricamento del prodotto usare guanti adatti."}
|
||||
{"chunk_id": "pergado_sc_13382_reentry_requirements_0", "product_id": "pergado_sc_13382", "product_name": "PERGADO SC", "target_crops": ["grapevine", "tomato", "eggplant", "melon", "watermelon", "pumpkin", "zucchini", "potato", "lettuce", "spinach", "herbs_fresh", "artichoke", "chard", "cauliflower", "broccoli", "radish"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "reentry_requirements", "chunk_text": "Rientrare in campo quando la vegetazione è completamente asciutta."}
|
||||
{"chunk_id": "pergado_sc_13382_buffer_zones_0", "product_id": "pergado_sc_13382", "product_name": "PERGADO SC", "target_crops": ["potato", "lettuce", "spinach", "herbs_fresh", "melon", "watermelon", "pumpkin", "zucchini", "tomato", "eggplant", "grapevine"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "buffer_zones", "chunk_text": "Per proteggere gli organismi acquatici rispettare una fascia di sicurezza non trattata di:\n- 1 metro dai corpi idrici superficiali per patata, lattughe e insalate, spinaci e simili ed erbe fresche, cucurbitacee, pomodoro e melanzana\n- 3 metri dai corpi idrici superficiali per vite"}
|
||||
{"chunk_id": "pergado_sc_13382_application_recommendations_0", "product_id": "pergado_sc_13382", "product_name": "PERGADO SC", "target_crops": ["grapevine", "tomato", "eggplant", "melon", "watermelon", "pumpkin", "zucchini", "potato", "lettuce", "spinach", "herbs_fresh", "artichoke", "chard", "cauliflower", "broccoli", "radish"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "PERGADO SC è raccomandato per applicazioni preventive. Iniziare i trattamenti quando si verificano condizioni predisponenti la malattia."}
|
||||
{"chunk_id": "pergado_sc_13382_weather_constraints_0", "product_id": "pergado_sc_13382", "product_name": "PERGADO SC", "target_crops": ["grapevine", "tomato", "eggplant", "melon", "watermelon", "pumpkin", "zucchini", "potato", "lettuce", "spinach", "herbs_fresh", "artichoke", "chard", "cauliflower", "broccoli", "radish"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "weather_constraints", "chunk_text": "Utilizzare le dosi più alte e gli intervalli più brevi in caso di condizioni meteorologiche favorevoli (precipitazioni frequenti o particolarmente intense) ad un rapido sviluppo dei patogeni."}
|
||||
{"chunk_id": "pergado_sc_13382_dosage_instructions_0", "product_id": "pergado_sc_13382", "product_name": "PERGADO SC", "target_crops": ["grapevine", "tomato", "eggplant", "melon", "watermelon", "pumpkin", "zucchini", "potato", "lettuce", "spinach", "herbs_fresh", "artichoke", "chard", "cauliflower", "broccoli", "radish"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "dosage_instructions", "chunk_text": "Colture\nParassiti\nDosi ml/hl\nDose l/ha\nNote\nVITE\nPeronospora Plasmopara viticola\n50-60\n0.5-0.6\nMassimo 4 trattamenti/anno (intervallo tra i trattamenti: 10-12 giorni)\nPOMODORO MELANZANA (pieno campo e serra)\nFitoftora Phytophthora infestans\n60\n0.6\nMassimo 4 trattamenti/anno (intervallo tra i trattamenti: 7 giorni)\nMELONE COCOMERO ZUCCA (pieno campo e serra)\nPseudoperonospora Pseudoperonospora cubensis\n60\n0.6\nMassimo 4 trattamenti/anno (intervallo tra i trattamenti: 7 giorni)\nZUCCHINO (pieno campo e serra)\nPseudoperonospora Pseudoperonospora cubensis\n60\n0.6\nMassimo 4 trattamenti/anno (intervallo tra i trattamenti: 7 giorni)\nPATATA (pieno campo)\nFitoftora Phytophthora infestans\n60\n0.6\nMassimo 6 trattamenti/anno (intervallo tra i trattamenti: 7 giorni)\nLATTUGHE E INSALATE, SPINACI E SIMILI (pieno campo e serra)\nBremia Bremia lactucae Peronospora Peronospora parasitica\n60\n0.6\nIn campo: massimo 2 trattamenti/anno con intervallo di 7 giorni tra un trattamento e il successivo in serra: massimo 1 trattamento/anno\nERBE FRESCHE (pieno campo e serra)\nPeronospora Peronospora spp. Plasmopara crustosa\n-\n0.6\nIn campo: massimo 2 trattamenti/anno con intervallo di 7 giorni tra un trattamento e il successivo in serra: massimo 1 trattamento/anno\nCARCIOFO (pieno campo)\nPeronospora Bremia lactucae\n60\n0.6\nMassimo 2 trattamenti/anno (intervallo tra i trattamenti: 7 giorni)\nBIETOLA DA FOGLIA (pieno campo)\nPeronospora Peronospora effusa\n100\n0.6\nMassimo 2 trattamenti/anno (intervallo tra i trattamenti: 7 giorni)\nCAVOLFIORE (pieno campo)\nPeronospora Peronospora brassicae\n75\n0.6\nMassimo 2 trattamenti/anno (intervallo tra i trattamenti: 10 giorni)\nCAVOLO BROCCOLO (pieno campo)\nPeronospora Peronospora brassicae\n75\n0.6\nMassimo 2 trattamenti/anno (intervallo tra i trattamenti: 10 giorni)\nRAVANELLO (pieno campo)\nPeronospora Peronospora brassicae\n100\n0.6\nMassimo 6 trattamenti/anno (pari a 2 trattamenti per ciclo colturale con intervallo di 7 giorni tra un trattamento e il successivo, per un totale di 3 cicli colturali per anno)"}
|
||||
{"chunk_id": "pergado_sc_13382_application_recommendations_1", "product_id": "pergado_sc_13382", "product_name": "PERGADO SC", "target_crops": ["grapevine", "tomato", "eggplant", "melon", "watermelon", "pumpkin", "zucchini", "potato", "lettuce", "spinach", "herbs_fresh", "artichoke", "chard", "cauliflower", "broccoli", "radish"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "N.B.: adottare quantitativi d’acqua adeguati ad una completa ed omogenea bagnatura delle colture trattate, evitando lo sgocciolamento della vegetazione:\n− Vite e orticole: volume di riferimento per le dosi ad ettaro:1000 litri; per volumi d’irrorazione inferiori, fare riferimento alle dosi indicate per ettaro.\n− Bietola da foglia, ravanello: volume di riferimento per le dosi ad ettaro: 600 litri; per volumi d’irrorazione inferiori, fare riferimento alle dosi indicate per ettaro.\n− Cavolfiore, broccoli: volume di riferimento per le dosi ad ettaro: 800 litri; per volumi d’irrorazione inferiori, fare riferimento alle dosi indicate per ettaro"}
|
||||
{"chunk_id": "pergado_sc_13382_application_recommendations_2", "product_id": "pergado_sc_13382", "product_name": "PERGADO SC", "target_crops": ["grapevine", "tomato", "eggplant", "melon", "watermelon", "pumpkin", "zucchini", "potato", "lettuce", "spinach", "herbs_fresh", "artichoke", "chard", "cauliflower", "broccoli", "radish"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "Preparazione della miscela\nAssicurarsi che l’attrezzatura sia pulita e correttamente tarata per il tipo di trattamento da effettuare.\nRiempire la botte o il serbatoio d’acqua per metà ed aggiungere direttamente il prodotto. Completare il riempimento mantenendo in agitazione la miscela.\nDopo l’applicazione è buona pratica pulire l’attrezzatura con acqua ed un idoneo detergente."}
|
||||
{"chunk_id": "pergado_sc_13382_resistance_management_0", "product_id": "pergado_sc_13382", "product_name": "PERGADO SC", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "resistance_management", "chunk_text": "Strategia antiresistenza:\nPeronospora della vite (Plasmopara viticola):\n- Effettuare non più di 4 trattamenti all’anno con prodotti appartenenti al gruppo CAA."}
|
||||
{"chunk_id": "pergado_sc_13382_compatibility_0", "product_id": "pergado_sc_13382", "product_name": "PERGADO SC", "target_crops": ["grapevine", "tomato", "eggplant", "melon", "watermelon", "pumpkin", "zucchini", "potato", "lettuce", "spinach", "herbs_fresh", "artichoke", "chard", "cauliflower", "broccoli", "radish"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "compatibility", "chunk_text": "Compatibilità: in caso di miscela con altri formulati, effettuare preventivamente un test di compatibilità."}
|
||||
{"chunk_id": "pergado_sc_13382_phytotoxicity_0", "product_id": "pergado_sc_13382", "product_name": "PERGADO SC", "target_crops": ["grapevine", "tomato", "eggplant", "melon", "watermelon", "pumpkin", "zucchini", "potato", "lettuce", "spinach", "herbs_fresh", "artichoke", "chard", "cauliflower", "broccoli", "radish"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "phytotoxicity", "chunk_text": "Il prodotto è generalmente selettivo per le colture indicate in etichetta; nel caso di varietà poco diffuse o di recente introduzione, specie per le colture orticole, si consiglia di effettuare saggi su superfici ridotte prima di estendere il trattamento ad aree più vaste.\nVite: non applicare il prodotto nei vivai."}
|
||||
{"chunk_id": "pergado_sc_13382_reentry_requirements_1", "product_id": "pergado_sc_13382", "product_name": "PERGADO SC", "target_crops": ["grapevine", "potato", "cauliflower", "broccoli", "lettuce", "spinach", "herbs_fresh", "artichoke", "chard", "radish", "tomato", "eggplant", "melon", "watermelon", "pumpkin", "zucchini"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "reentry_requirements", "chunk_text": "Sospendere i trattamenti 21 giorni prima della raccolta per vite e patata, 14 giorni per cavolfiore e broccoli, 7 giorni per lattughe ed insalate, spinaci e simili, erbe fresche, carciofo, bietola da foglia e ravanello, 3 giorni per pomodoro, melanzana, melone, cocomero, zucca e lo zucchino."}
|
||||
{"chunk_id": "pergado_sc_13382_application_recommendations_3", "product_id": "pergado_sc_13382", "product_name": "PERGADO SC", "target_crops": ["grapevine", "tomato", "eggplant", "melon", "watermelon", "pumpkin", "zucchini", "potato", "lettuce", "spinach", "herbs_fresh", "artichoke", "chard", "cauliflower", "broccoli", "radish"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "Non applicare con i mezzi aerei."}
|
||||
{"chunk_id": "pergado_sc_13382_weather_constraints_1", "product_id": "pergado_sc_13382", "product_name": "PERGADO SC", "target_crops": ["grapevine", "tomato", "eggplant", "melon", "watermelon", "pumpkin", "zucchini", "potato", "lettuce", "spinach", "herbs_fresh", "artichoke", "chard", "cauliflower", "broccoli", "radish"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "weather_constraints", "chunk_text": "Operare in assenza di vento."}
|
||||
34
data/chunks/poltiglia_20_pb_manica_13635.jsonl
Normal file
34
data/chunks/poltiglia_20_pb_manica_13635.jsonl
Normal file
@ -0,0 +1,34 @@
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_buffer_zones_0", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["pome_fruit", "stone_fruit", "olive", "citrus", "kiwi", "grapevine", "lettuce", "carrot", "beetroot", "turnip", "parsnip", "celery", "radish", "rutabaga", "chicory", "onion", "garlic", "spring_onion", "shallot", "ornamental_plants", "fresh_legumes_with_pod", "cucumber", "pumpkin", "zucchini", "melon", "watermelon", "tomato", "eggplant", "potato", "nut_trees"], "target_diseases": [], "chunk_type": "buffer_zones", "chunk_text": "Per proteggere gli organismi acquatici rispettare una fascia di sicurezza non trattata da corpi idrici superficiali di:\n- 20 metri utilizzando ugelli con riduzione della deriva del 75% o 30 metri per applicazione su pomacee/drupacee (inverno/pre-fioritura);\n- 10 metri utilizzando ugelli con riduzione della deriva del 75% o 20 metri per applicazioni su pomacee/drupacee (post-fioritura), olivo e agrumi;\n- 5 metri utilizzando ugelli con riduzione della deriva del 75% o 10 metri per applicazioni su actinidia e vite;\n- 5 metri per applicazioni su ortaggi a foglia, a radice e a bulbo, ornamentali, legumi, cucurbitacee, pomodoro, melanzana e patata;\n- 20 metri utilizzando ugelli con riduzione della deriva del 75% per applicazioni su fruttiferi a guscio."}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_application_recommendations_0", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["pome_fruit", "stone_fruit", "grapevine", "kiwi", "olive", "artichoke", "asparagus", "citrus", "nut_trees", "lettuce", "cabbage", "broccoli", "cauliflower", "cucumber", "pumpkin", "zucchini", "melon", "watermelon", "tomato", "eggplant", "potato", "carrot", "beetroot", "turnip", "parsnip", "celery", "radish", "rutabaga", "chicory", "bean", "pea", "fresh_legumes_with_pod", "garlic", "onion", "spring_onion", "shallot", "ornamental_plants", "forest_trees"], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "POLTIGLIA 20 PB MANICA si impiega sospendendolo direttamente in acqua senza l’aggiunta di calce. In caso di utilizzo di volumi inferiori a quelli indicati (ad es. inizio stagione su colture arboree), si suggerisce di utilizzare la dose/hl. PREPARAZIONE DELLA MISCELA: diluire il prodotto in poca acqua a parte, quindi versare la miscela così ottenuta nel totale quantitativo di acqua, mescolando accuratamente. Il prodotto è già neutro quindi non richiede l’aggiunta di calce. NON APPLICARE CON MEZZI AEREI."}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_dosage_instructions_0", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["apple", "pear", "quince"], "target_diseases": ["scab", "canker", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "Coltura: POMACEE (melo, pero, cotogno)\nAvversità: Ticchiolatura (Venturia inaequalis), Cancri rameali (Nectria galligena), Batteriosi.\nDosi d’impiego: 350-625 g/hl / 65-500 g/hl\nDosi/ha: 3,75-6 kg / 1-2,5 kg\nN° max trattamenti anno: 4 / 4\nIntervallo tra i trattamenti (gg): 7-21\nVolumi di irrorazione consigliati (l/ha): 500-1500"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_crop_instructions_0", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["apple", "pear", "quince"], "target_diseases": ["scab", "canker", "bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "Epoche d’impiego: -trattamenti autunnali e invernali al bruno fino a pre-fioritura -trattamenti da post-fioritura a pre-raccolta"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_dosage_instructions_1", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["peach", "nectarine", "apricot", "cherry", "plum"], "target_diseases": ["leaf curl", "coryneum blight", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "Coltura: DRUPACEE (pesco, nettarino, albicocco, ciliegio, susino)\nAvversità: Bolla (Taphrina deformans), Corineo (Coryneum, Stygmina carpophila), Batteriosi (Pseudomonas spp, Xanthomonas spp.)\nDosi d’impiego: 300-2100 g/hl / 100-150 g/hl\nDosi/ha: 3-6,25 kg / 1–1,5 kg\nN° max trattamenti anno: 4 / 5\nIntervallo tra i trattamenti (gg): 14-21\nVolumi di irrorazione consigliati (l/ha): 300-1500"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_crop_instructions_1", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["peach", "nectarine", "apricot", "cherry", "plum"], "target_diseases": ["leaf curl", "coryneum blight", "bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "Epoche d’impiego: -trattamenti autunnali e prefiorali -trattamenti post fioritura. Solo pesco, nettarino e albicocco per trattamenti post fioritura."}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_dosage_instructions_2", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["grapevine"], "target_diseases": ["downy mildew", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "Coltura: VITE\nAvversità: Peronospora (Plasmopara viticola), Batteriosi (Xanthomonas spp., Pseudomonas spp.)\nDosi d’impiego: 250-500 g/hl\nDosi/ha: 2,5-5 kg\nN° max trattamenti anno: 8\nIntervallo tra i trattamenti (gg): 7-14\nVolumi di irrorazione consigliati (l/ha): 100-1200"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_crop_instructions_2", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["grapevine"], "target_diseases": ["downy mildew", "bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "Epoche d’impiego: -trattamenti pre-fiorali -trattamenti post-fiorali -trattamenti di “chiusura”"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_dosage_instructions_3", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["kiwi"], "target_diseases": ["bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "Coltura: ACTINIDIA\nAvversità: Batteriosi (Pseudomonas spp.)\nDosi d’impiego: 495-700 g/hl / 100-200 g/hl\nDosi/ha: 4,95-7 kg / 1-2 kg\nN° max trattamenti anno: 4 / 8\nIntervallo tra i trattamenti (gg): 14-30 / 7-8\nVolumi di irrorazione consigliati (l/ha): 800-1200"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_crop_instructions_3", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["kiwi"], "target_diseases": ["bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "Epoche d’impiego: - trattamenti a caduta foglie e invernali - trattamenti in vegetazione"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_dosage_instructions_4", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["olive"], "target_diseases": ["olive peacock spot", "anthracnose", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "Coltura: OLIVO\nAvversità: Occhio di Pavone (Spilocaea oleagina); lebbra (Gloeosporium Olivarum), Batteriosi (Pseudomonas savastanoi)\nDosi d’impiego: 350-625 g/hl\nDosi/ha: 3,75-6,25 kg\nN° max trattamenti anno: 4\nIntervallo tra i trattamenti (gg): 15\nVolumi di irrorazione consigliati (l/ha): 800-1000"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_crop_instructions_4", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["olive"], "target_diseases": ["olive peacock spot", "anthracnose", "bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "Epoche d’impiego: - trattamenti da post raccolta all’invaiatura"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_dosage_instructions_5", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["artichoke", "asparagus"], "target_diseases": ["downy mildew", "bacteriosis", "rust"], "chunk_type": "dosage_instructions", "chunk_text": "Coltura: CARCIOFO, ASPARAGO\nAvversità: Peronospora (Bremia spp.), Batteriosi, Stemfiliosi.\nDosi d’impiego: 300-1000 g/hl\nDosi/ha: 2,4-5 kg\nN° max trattamenti anno: 5\nIntervallo tra i trattamenti (gg): 7-14\nVolumi di irrorazione consigliati (l/ha): 400-1000"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_crop_instructions_5", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["artichoke", "asparagus"], "target_diseases": ["downy mildew", "bacteriosis", "rust"], "chunk_type": "crop_instructions", "chunk_text": "Epoche d’impiego: al verificarsi delle condizioni favorevoli alla malattia [su asparago intervenire dopo la raccolta dei turioni]"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_dosage_instructions_6", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["orange", "lemon", "mandarin", "citrus"], "target_diseases": ["alternaria", "gummosis", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "Coltura: AGRUMI (arancio, limone, mandarino ecc.)\nAvversità: Alternaria (Alternaria citricola), Gommosi (Phytophtora citricola), Batteriosi (Pseudomonas syringae)\nDosi d’impiego: 200-330 g/hl\nDosi/ha: 4-5 kg\nN° max trattamenti anno: 5\nIntervallo tra i trattamenti (gg): 7-14\nVolumi di irrorazione consigliati (l/ha): 1500-2000"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_crop_instructions_6", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["orange", "lemon", "mandarin", "citrus"], "target_diseases": ["alternaria", "gummosis", "bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "Epoche d’impiego: trattamenti a partire da fine inverno"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_dosage_instructions_7", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["walnut", "hazelnut", "nut_trees"], "target_diseases": ["alternaria", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "Coltura: NOCE, NOCCIOLO E ALTRI FRUTTIFERI A GUSCIO\nAvversità: Alternaria (Alternaria spp.), Batteriosi (Xanthomonas spp., Pseudomonas spp.)\nDosi d’impiego: 250-625 g/hl\nDosi/ha: 3,5-6,25 kg\nN° max trattamenti anno: 3\nIntervallo tra i trattamenti (gg): 14-21\nVolumi di irrorazione consigliati (l/ha): 1000-1500"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_crop_instructions_7", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["walnut", "hazelnut", "nut_trees"], "target_diseases": ["alternaria", "bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "Epoche d’impiego: -trattamenti primaverili-estivi -trattamenti autunnali"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_dosage_instructions_8", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["lettuce"], "target_diseases": ["downy mildew", "alternaria", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "Coltura: LATTUGHE, INSALATE e altri ORTAGGI A FOGLIA in campo e serra\nAvversità: Peronospora (Bremia lactucae), Alternaria (Alternaria spp.), Batteriosi (Xanthomonas spp., Pseudomonas spp.)\nDosi d’impiego: 350-1650 g/hl\nDosi/ha: 3,5-5 kg\nN° max trattamenti anno: 5\nIntervallo tra i trattamenti (gg): 7-14\nVolumi di irrorazione consigliati (l/ha): 300-1000"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_crop_instructions_8", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["lettuce"], "target_diseases": ["downy mildew", "alternaria", "bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "Epoche d’impiego: al verificarsi delle condizioni favorevoli alla malattia"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_dosage_instructions_9", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["broccoli", "cauliflower", "cabbage"], "target_diseases": ["downy mildew", "bacteriosis", "alternaria"], "chunk_type": "dosage_instructions", "chunk_text": "Coltura: CAVOLI (cavoli broccoli, cavolfiore, ecc.)\nAvversità: Peronospora (Phytophthora brassicae),Batteriosi (Xanthomonas spp., Pseudomonas spp., Alternaria spp)\nDosi d’impiego: 250-1650 g/hl\nDosi/ha: 2,5-5 kg\nN° max trattamenti anno: 5\nIntervallo tra i trattamenti (gg): 7-14\nVolumi di irrorazione consigliati (l/ha): 300-1000"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_dosage_instructions_10", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["cucumber", "pumpkin", "zucchini", "melon", "watermelon"], "target_diseases": ["downy mildew", "alternaria", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "Coltura: CUCURBITACEE (cetriolo, zucca, zucchino, melone, cocomero, ecc.) in campo e serra\nAvversità: Peronospora (Peronospora cubensis), Alternaria (Alternaria spp.), Batteriosi (Xanthomonas spp., Pseudomonas spp.)\nDosi d’impiego: 250-1250g/hl\nDosi/ha: 2,5-5 kg\nN° max trattamenti anno: 8\nIntervallo tra i trattamenti (gg): 7-14\nVolumi di irrorazione consigliati (l/ha): 400-1000"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_dosage_instructions_11", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["tomato", "eggplant"], "target_diseases": ["phytophthora", "alternaria", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "Coltura: POMODORO, MELANZANA in campo e serra\nAvversità: Peronospora (Phytophtora spp.), Alternaria (Alternaria porri), Batteriosi (Xanthomonas spp., Pseudomonas spp.)\nDosi d’impiego: 375-2500 g/hl\nDosi/ha: 3,75-6,25 kg\nN° max trattamenti anno: 6\nIntervallo tra i trattamenti (gg): 7-14\nVolumi di irrorazione consigliati (l/ha): 200-1000"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_dosage_instructions_12", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["potato"], "target_diseases": ["late blight", "bacteriosis", "alternaria"], "chunk_type": "dosage_instructions", "chunk_text": "Coltura: PATATA\nAvversità: Peronospora (Phytophtora infestans), Batteriosi (Xanthomonas spp., Pseudomonas spp.), Alternaria (Alternaria spp.)\nDosi d’impiego: 375-2500 g/hl\nDosi/ha: 3,75-6,25 kg\nN° max trattamenti anno: 6\nIntervallo tra i trattamenti (gg): 7-14\nVolumi di irrorazione consigliati (l/ha): 200-1000"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_dosage_instructions_13", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["carrot", "beetroot", "turnip", "parsnip", "celery", "radish", "rutabaga", "chicory"], "target_diseases": ["alternaria", "bacteriosis"], "chunk_type": "dosage_instructions", "chunk_text": "Coltura: ORTAGGI A RADICE (carota, bietola rossa, rapa, pastinaca, sedano rapa, ravanello, salsefrica, rutabaga, cicoria da radice, ecc)\nAvversità: Alternaria (Alternaria spp.), Batteriosi (Xanthomonas spp., Pseudomonas spp.)\nDosi d’impiego: 300-1000 g/hl\nDosi/ha: 2,5-5 kg\nN° max trattamenti anno: 5\nIntervallo tra i trattamenti (gg): 7-14\nVolumi di irrorazione consigliati (l/ha): 300-1000"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_dosage_instructions_14", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["bean", "pea", "fresh_legumes_with_pod"], "target_diseases": ["phytophthora", "bacteriosis", "rust"], "chunk_type": "dosage_instructions", "chunk_text": "Coltura: FAGIOLO, PISELLO e altri LEGUMI\nAvversità: Peronospora (Phytophtora phaseoli-pisi), Batteriosi (Xanthomonas spp., Pseudomonas spp.), Ruggini (Uromycaes appendiculatum)\nDosi d’impiego: 250-1250 g/hl\nDosi/ha: 2,5-5 kg\nN° max trattamenti anno: 5\nIntervallo tra i trattamenti (gg): 7-14\nVolumi di irrorazione consigliati (l/ha): 400-1000"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_dosage_instructions_15", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["garlic", "onion", "spring_onion", "shallot"], "target_diseases": ["alternaria", "bacteriosis", "downy mildew", "rust"], "chunk_type": "dosage_instructions", "chunk_text": "Coltura: ORTAGGI A BULBO (aglio, cipolla, cipollina, scalogno, ecc.)\nAvversità: Alternaria (Alternaria spp.), Batteriosi (Xanthomonas spp., Pseudomonas spp.), Peronospora (Peronospora destructor), Stemphyllium\nDosi d’impiego: 350-2500 g/hl\nDosi/ha: 3,5-5 kg\nN° max trattamenti anno: 5\nIntervallo tra i trattamenti (gg): 7-14\nVolumi di irrorazione consigliati (l/ha): 400-1000"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_dosage_instructions_16", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["ornamental_plants", "forest_trees"], "target_diseases": ["downy mildew", "anthracnose", "rust"], "chunk_type": "dosage_instructions", "chunk_text": "Coltura: FLOREALI, ORNAMENTALI E FORESTALI in campo e serra\nAvversità: Peronospora (Peronospora spp.), Antracnosi (Colletotrichum spp), Ruggine (Puccinia spp.)\nDosi d’impiego: 350-2500 g/hl\nDosi/ha: 3,5-5 kg\nN° max trattamenti anno: 3\nIntervallo tra i trattamenti (gg): 7-14\nVolumi di irrorazione consigliati (l/ha): 200-1000"}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_resistance_management_0", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["pome_fruit", "stone_fruit", "grapevine", "kiwi", "olive", "artichoke", "asparagus", "citrus", "nut_trees", "lettuce", "cabbage", "broccoli", "cauliflower", "cucumber", "pumpkin", "zucchini", "melon", "watermelon", "tomato", "eggplant", "potato", "carrot", "beetroot", "turnip", "parsnip", "celery", "radish", "rutabaga", "chicory", "bean", "pea", "fresh_legumes_with_pod", "garlic", "onion", "spring_onion", "shallot", "ornamental_plants", "forest_trees"], "target_diseases": [], "chunk_type": "resistance_management", "chunk_text": "Al fine di ridurre al minimo il potenziale accumulo nel suolo e l'esposizione per gli organismi non bersaglio, tenendo conto al contempo delle condizioni agroclimatiche, non superare l'applicazione cumulativa di 28 kg di rame per ettaro nell'arco di 7 anni. Si raccomanda di rispettare il quantitativo applicato medio di 4 kg di rame per ettaro all'anno."}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_weather_constraints_0", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["pome_fruit", "stone_fruit", "grapevine", "kiwi", "olive", "artichoke", "asparagus", "citrus", "nut_trees", "lettuce", "cabbage", "broccoli", "cauliflower", "cucumber", "pumpkin", "zucchini", "melon", "watermelon", "tomato", "eggplant", "potato", "carrot", "beetroot", "turnip", "parsnip", "celery", "radish", "rutabaga", "chicory", "bean", "pea", "fresh_legumes_with_pod", "garlic", "onion", "spring_onion", "shallot", "ornamental_plants", "forest_trees"], "target_diseases": [], "chunk_type": "weather_constraints", "chunk_text": "POLTIGLIA 20 PB MANICA va impiegato secondo i normali calendari di lotta a seconda delle condizioni di temperatura e di umidità. In caso di stagione particolarmente piovosa andranno impiegate le dosi maggiori ad intervalli di tempo abbreviati tra un trattamento ed il successivo. OPERARE IN ASSENZA DI VENTO."}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_compatibility_0", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["pome_fruit", "stone_fruit", "grapevine", "kiwi", "olive", "artichoke", "asparagus", "citrus", "nut_trees", "lettuce", "cabbage", "broccoli", "cauliflower", "cucumber", "pumpkin", "zucchini", "melon", "watermelon", "tomato", "eggplant", "potato", "carrot", "beetroot", "turnip", "parsnip", "celery", "radish", "rutabaga", "chicory", "bean", "pea", "fresh_legumes_with_pod", "garlic", "onion", "spring_onion", "shallot", "ornamental_plants", "forest_trees"], "target_diseases": [], "chunk_type": "compatibility", "chunk_text": "Il prodotto è miscibile con i principali antiparassitari ed in particolare con gli zolfi bagnabili e colloidali. Avvertenza: In caso di miscela con altri formulati deve essere rispettato il periodo di carenza più lungo. Devono inoltre essere osservate le norme precauzionali prescritte per i prodotti più tossici. Qualora si verificassero casi di intossicazione informare il medico della miscelazione compiuta."}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_phenology_constraints_0", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["pome_fruit", "stone_fruit", "grapevine", "kiwi", "olive", "artichoke", "asparagus", "citrus", "nut_trees", "lettuce", "cabbage", "broccoli", "cauliflower", "cucumber", "pumpkin", "zucchini", "melon", "watermelon", "tomato", "eggplant", "potato", "carrot", "beetroot", "turnip", "parsnip", "celery", "radish", "rutabaga", "chicory", "bean", "pea", "fresh_legumes_with_pod", "garlic", "onion", "spring_onion", "shallot", "ornamental_plants", "forest_trees"], "target_diseases": [], "chunk_type": "phenology_constraints", "chunk_text": "Non devono essere effettuati trattamenti durante la fioritura."}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_phytotoxicity_0", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["stone_fruit", "apple", "pear"], "target_diseases": [], "chunk_type": "phytotoxicity", "chunk_text": "POLTIGLIA 20 PB MANICA può essere fitotossico su alcune drupacee e alcune varietà di Melo (Abbondanza, Belfort, Black Stayman, Golden Delicious, Gravenstein, Jonathan, Rome Beauty, Morgenduft, Stayman, Stayman Red, Stayman Winesap, Black Davis, King David, Renetta del Canada, Rosa Mantovana) e di Pero (Abate Fetel, Buona Luigia d’Avranches, Butirra Clairgeau, Passacrassana, B.C. William, Dott. Jules Guyot, Favorita di Clapp, Kaiser, Butirra Giffard) sensibili al rame."}
|
||||
{"chunk_id": "poltiglia_20_pb_manica_13635_reentry_requirements_0", "product_id": "poltiglia_20_pb_manica_13635", "product_name": "POLTIGLIA® 20 PB MANICA®", "target_crops": ["tomato", "eggplant", "cucumber", "pumpkin", "zucchini", "melon", "watermelon", "onion", "garlic", "spring_onion", "shallot", "bean", "pea", "potato", "artichoke", "lettuce", "grapevine", "pome_fruit", "cabbage", "broccoli", "cauliflower", "citrus", "olive", "nut_trees", "kiwi", "peach", "nectarine", "apricot"], "target_diseases": [], "chunk_type": "reentry_requirements", "chunk_text": "Sospendere i trattamenti 3 giorni prima della raccolta per pomodoro da mensa, melanzana, cucurbitacee a buccia edibile, ortaggi a bulbo, fagiolo, pisello e patata; 7 giorni per carciofo, cucurbitacee a buccia non edibile, lattughe, insalate e altri ortaggi a foglia, vite e pomacee (post fioritura); 10 giorni per pomodoro da industria; 14 giorni per cavoli, agrumi , olivo, frutta a guscio; 20 giorni per actinidia; 21 giorni per pesco, nettarino e albicocco."}
|
||||
13
data/chunks/profiler_16442.jsonl
Normal file
13
data/chunks/profiler_16442.jsonl
Normal file
@ -0,0 +1,13 @@
|
||||
{"chunk_id": "profiler_16442_ppe_requirements_0", "product_id": "profiler_16442", "product_name": "PROFILER®", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "ppe_requirements", "chunk_text": "Durante le operazioni di diluizione/miscelazione/carico ed applicazione del prodotto indossare guanti adatti."}
|
||||
{"chunk_id": "profiler_16442_reentry_requirements_0", "product_id": "profiler_16442", "product_name": "PROFILER®", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "reentry_requirements", "chunk_text": "Prima di accedere nell’area trattata attendere che la vegetazione sia completamente asciutta."}
|
||||
{"chunk_id": "profiler_16442_environmental_restrictions_0", "product_id": "profiler_16442", "product_name": "PROFILER®", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "environmental_restrictions", "chunk_text": "Per proteggere le acque sotterranee non applicare su suoli contenenti una percentuale di sabbia superiore all’80%. Non pulire il materiale d’applicazione in prossimità delle acque di superficie. Evitare la contaminazione attraverso i sistemi di scolo delle acque dalle aziende agricole e dalle strade."}
|
||||
{"chunk_id": "profiler_16442_dosage_instructions_0", "product_id": "profiler_16442", "product_name": "PROFILER®", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "Vite (uva da tavola e da vino), contro Plasmopara viticola: trattamenti preventivi alla dose di 225-300 g/hl (2,25 – 3 kg/ha) a partire dagli stadi di prefioritura fino ad allegagione. Effettuare un massimo di due applicazioni per anno, ad intervallo di 10-14 giorni in funzione delle condizioni ambientali; utilizzare l’intervallo più breve e la dose maggiore per le condizioni ambientali favorevoli allo sviluppo del patogeno."}
|
||||
{"chunk_id": "profiler_16442_crop_instructions_0", "product_id": "profiler_16442", "product_name": "PROFILER®", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "crop_instructions", "chunk_text": "trattamenti preventivi a partire dagli stadi di prefioritura fino ad allegagione."}
|
||||
{"chunk_id": "profiler_16442_resistance_management_0", "product_id": "profiler_16442", "product_name": "PROFILER®", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "resistance_management", "chunk_text": "Su vite da vino, in caso di alternanza con formulati a base di fluopyram, non effettuare più di 2 trattamenti complessivi per anno. In caso di miscela con prodotti a base di fluopyram effettuare un solo trattamento all’anno. Non applicare prodotti a base di fluopicolide se vengono effettuate 2 applicazioni con prodotti a base di fluopyram per anno. E’ consigliabile alternare questo prodotto con fungicidi aventi diverso meccanismo d’azione. Meccanismo d’azione gruppi: 43, 33 (FRAC)"}
|
||||
{"chunk_id": "profiler_16442_application_recommendations_0", "product_id": "profiler_16442", "product_name": "PROFILER®", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "application_recommendations", "chunk_text": "Queste dosi sono calcolate per irroratrici a volume normale e quantitativi di acqua di 1000 l/ha. In caso di impiego con attrezzature a basso o ultra-basso volume, le concentrazioni del prodotto devono essere aumentate in modo da garantire lo stesso dosaggio per ettaro."}
|
||||
{"chunk_id": "profiler_16442_application_recommendations_1", "product_id": "profiler_16442", "product_name": "PROFILER®", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "application_recommendations", "chunk_text": "Avvertenza: versare direttamente il prodotto nel serbatoio dell’irroratrice riempito di acqua a metà; riempire quindi con il rimanente quantitativo di acqua e mantenere in agitazione."}
|
||||
{"chunk_id": "profiler_16442_compatibility_0", "product_id": "profiler_16442", "product_name": "PROFILER®", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "compatibility", "chunk_text": "Il prodotto può avere problemi di compatibilità in miscela con formulati contenenti rame, alcuni fitostimolatori e concimi fogliari contenenti azoto (nitrico e ammoniacale). Per queste associazioni risulta opportuno effettuare saggi preliminari per verificarne la compatibilità. Non effettuare miscele con formulati oleosi."}
|
||||
{"chunk_id": "profiler_16442_compatibility_1", "product_id": "profiler_16442", "product_name": "PROFILER®", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "compatibility", "chunk_text": "Avvertenza: in caso di miscela con altri formulati deve essere rispettato il periodo di carenza più lungo. Devono inoltre essere osservate le norme precauzionali previste per i prodotti più tossici."}
|
||||
{"chunk_id": "profiler_16442_reentry_requirements_1", "product_id": "profiler_16442", "product_name": "PROFILER®", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "reentry_requirements", "chunk_text": "Sospendere i trattamenti 28 giorni prima del raccolto per vite."}
|
||||
{"chunk_id": "profiler_16442_application_recommendations_2", "product_id": "profiler_16442", "product_name": "PROFILER®", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "application_recommendations", "chunk_text": "Non applicare con i mezzi aerei."}
|
||||
{"chunk_id": "profiler_16442_weather_constraints_0", "product_id": "profiler_16442", "product_name": "PROFILER®", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "weather_constraints", "chunk_text": "Operare in assenza di vento."}
|
||||
14
data/chunks/quadris_9210.jsonl
Normal file
14
data/chunks/quadris_9210.jsonl
Normal file
@ -0,0 +1,14 @@
|
||||
{"chunk_id": "quadris_9210_reentry_requirements_0", "product_id": "quadris_9210", "product_name": "Quadris", "target_crops": ["grapevine"], "target_diseases": ["powdery mildew", "phomopsis (dead-arm)", "black rot", "downy mildew"], "chunk_type": "reentry_requirements", "chunk_text": "Non rientrare nell’area trattata prima che la vegetazione sia completamente asciutta."}
|
||||
{"chunk_id": "quadris_9210_environmental_restrictions_0", "product_id": "quadris_9210", "product_name": "Quadris", "target_crops": ["grapevine"], "target_diseases": ["powdery mildew", "phomopsis (dead-arm)", "black rot", "downy mildew"], "chunk_type": "environmental_restrictions", "chunk_text": "Non contaminare l'acqua con il prodotto o il suo contenitore. Non pulire il materiale d'applicazione in prossimità delle acque di superficie. Evitare la contaminazione attraverso i sistemi di scolo delle acque dalle aziende agricole e dalle strade. Per proteggere le acque sotterranee non applicare su suoli alcalini. Nel caso di terreni in pendenza (> 4%), provvedere all’inerbimento permanente nell’ interfila del vigneto."}
|
||||
{"chunk_id": "quadris_9210_buffer_zones_0", "product_id": "quadris_9210", "product_name": "Quadris", "target_crops": ["grapevine"], "target_diseases": ["powdery mildew", "phomopsis (dead-arm)", "black rot", "downy mildew"], "chunk_type": "buffer_zones", "chunk_text": "Per proteggere gli organismi acquatici, rispettare una fascia vegetata non trattata di 10 m dai corpi idrici superficiali."}
|
||||
{"chunk_id": "quadris_9210_environmental_restrictions_1", "product_id": "quadris_9210", "product_name": "Quadris", "target_crops": ["grapevine"], "target_diseases": ["powdery mildew", "phomopsis (dead-arm)", "black rot", "downy mildew"], "chunk_type": "environmental_restrictions", "chunk_text": "Selettivo per api ed acari predatori (per es. Typhlodromus pyri e Amblyseius aberrans), Quadris non influenza i processi di fermentazione dei mosti e non altera le caratteristiche organolettiche dei vini."}
|
||||
{"chunk_id": "quadris_9210_dosage_instructions_0", "product_id": "quadris_9210", "product_name": "Quadris", "target_crops": ["grapevine"], "target_diseases": ["powdery mildew", "phomopsis (dead-arm)", "black rot", "downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "Malattie: Oidio (Erysiphe necator), Escoriosi (Phomopsis viticola), Black-rot (Guignardia bidwellii), Peronospora (Plasmopara viticola). Colture: uva da vino, uva da tavola. Dosi/hl: 75-100 ml/hl. Dose max/ha per volumi d’acqua di 1000 l/ha e vite in piena vegetazione: 1 l/ha. Cadenza d’intervento: 10-12 giorni. Numero massimo di applicazioni: 3. Scegliere la dose da distribuire in funzione della principale malattia da controllare e della possibile presenza di più malattie nello stesso momento. Impiegare le dosi più alte e la cadenza d’intervento più breve quando vi sono condizioni molto favorevoli allo sviluppo dei patogeni (es. varietà particolarmente sensibili, aree tipiche di diffusione, condizioni climatiche predisponenti)."}
|
||||
{"chunk_id": "quadris_9210_crop_instructions_0", "product_id": "quadris_9210", "product_name": "Quadris", "target_crops": ["grapevine"], "target_diseases": ["powdery mildew", "phomopsis (dead-arm)", "black rot", "downy mildew"], "chunk_type": "crop_instructions", "chunk_text": "Quadris si impiega, nell’ambito di un programma di difesa, nelle epoche in cui la vite risulta più suscettibile agli attacchi fungini. Non applicare il prodotto nei vivai."}
|
||||
{"chunk_id": "quadris_9210_resistance_management_0", "product_id": "quadris_9210", "product_name": "Quadris", "target_crops": ["grapevine"], "target_diseases": ["powdery mildew", "phomopsis (dead-arm)", "black rot", "downy mildew"], "chunk_type": "resistance_management", "chunk_text": "Strategia antiresistenza: è da intendersi estesa, indipendentemente dall’avversità controllata, a tutti i prodotti accomunati dal medesimo meccanismo di azione (inibitori della respirazione mitocondriale QoI). Per una corretta difesa fungicida, si raccomanda sempre di seguire le linee guida FRAC specifiche per colture e patogeni. Contro Oidio non effettuare più di 2 interventi consecutivi. Contro Peronospora usare sempre in miscela con fungicidi a diverso meccanismo d’azione. Nei vigneti dove sono state osservate o si manifestano perdite di efficacia a seguito dell’impiego di prodotti inibitori della respirazione mitocondriale (Qol), per evitare la selezione di ceppi resistenti ai Qol, si deve sospendere l’impiego del prodotto e sostituirlo con un fungicida a diverso meccanismo d’azione."}
|
||||
{"chunk_id": "quadris_9210_phytotoxicity_0", "product_id": "quadris_9210", "product_name": "Quadris", "target_crops": ["grapevine", "apple"], "target_diseases": ["powdery mildew", "phomopsis (dead-arm)", "black rot", "downy mildew"], "chunk_type": "phytotoxicity", "chunk_text": "Quadris può risultare fitotossico per alcune varietà di melo: Gala e i suoi derivati (es. Royal Gala, Mondial Gala, Galaxy), Renetta del Canadà, Mc Intosh e i suoi derivati (es. Summered), Delbar estivale, Cox e i suoi derivati (es. Cox’s Orange Pippin); durante le applicazioni su vite evitare la deriva del prodotto sulle varietà di melo sensibili eventualmente presenti. Per trattamenti sulle varietà di melo sensibili a Quadris, non utilizzare l’attrezzatura impiegata nel vigneto. Pur essendo selettivo per le varietà di melo più estesamente coltivate (es. Golden delicious, Red delicious, Imperatore, Granny Smith, Jonagold, Stayman), operare con cautela in prossimità di meleti con varietà poco diffuse o di recente introduzione."}
|
||||
{"chunk_id": "quadris_9210_application_recommendations_0", "product_id": "quadris_9210", "product_name": "Quadris", "target_crops": ["grapevine"], "target_diseases": ["powdery mildew", "phomopsis (dead-arm)", "black rot", "downy mildew"], "chunk_type": "application_recommendations", "chunk_text": "Adottare in ogni caso quantitativi d’acqua adeguati ad una completa ed omogenea bagnatura, evitando lo sgocciolamento della vegetazione. Nel caso di trattamenti con volumi inferiori a 1000 l/ha quando la vite è in piena vegetazione, fare riferimento alle dosi ad ettaro indicate."}
|
||||
{"chunk_id": "quadris_9210_compatibility_0", "product_id": "quadris_9210", "product_name": "Quadris", "target_crops": ["grapevine"], "target_diseases": ["powdery mildew", "phomopsis (dead-arm)", "black rot", "downy mildew"], "chunk_type": "compatibility", "chunk_text": "In caso di miscela con altri formulati, effettuare preventivamente un test di compatibilità. Avvertenza: in caso di miscela con altri formulati devono essere osservate le norme precauzionali prescritte per i prodotti più tossici. In caso di miscela con altri formulati devono essere osservati i tempi di carenza più lunghi. Qualora si verificassero casi d’intossicazione informare il medico della miscelazione compiuta."}
|
||||
{"chunk_id": "quadris_9210_reentry_requirements_1", "product_id": "quadris_9210", "product_name": "Quadris", "target_crops": ["grapevine"], "target_diseases": ["powdery mildew", "phomopsis (dead-arm)", "black rot", "downy mildew"], "chunk_type": "reentry_requirements", "chunk_text": "Sospendere i trattamenti 21 giorni prima della raccolta."}
|
||||
{"chunk_id": "quadris_9210_application_recommendations_1", "product_id": "quadris_9210", "product_name": "Quadris", "target_crops": ["grapevine"], "target_diseases": ["powdery mildew", "phomopsis (dead-arm)", "black rot", "downy mildew"], "chunk_type": "application_recommendations", "chunk_text": "PREPARAZIONE DELLA MISCELA\n− Assicurarsi che l’attrezzatura sia pulita e correttamente tarata per il tipo di trattamento da effettuare.\n− Riempire la botte di acqua per un terzo ed aggiungere direttamente il prodotto senza alcuna pre-diluizione. Completare il riempimento del serbatoio mantenendo in funzione l’agitatore\n− Dopo l’applicazione è buona pratica pulire l’attrezzatura con acqua ed un idoneo detergente."}
|
||||
{"chunk_id": "quadris_9210_application_recommendations_2", "product_id": "quadris_9210", "product_name": "Quadris", "target_crops": ["grapevine"], "target_diseases": ["powdery mildew", "phomopsis (dead-arm)", "black rot", "downy mildew"], "chunk_type": "application_recommendations", "chunk_text": "Non applicare con i mezzi aerei."}
|
||||
{"chunk_id": "quadris_9210_weather_constraints_0", "product_id": "quadris_9210", "product_name": "Quadris", "target_crops": ["grapevine"], "target_diseases": ["powdery mildew", "phomopsis (dead-arm)", "black rot", "downy mildew"], "chunk_type": "weather_constraints", "chunk_text": "Operare in assenza di vento."}
|
||||
14
data/chunks/quantum_l_17078.jsonl
Normal file
14
data/chunks/quantum_l_17078.jsonl
Normal file
@ -0,0 +1,14 @@
|
||||
{"chunk_id": "quantum_l_17078_ppe_requirements_0", "product_id": "quantum_l_17078", "product_name": "QUANTUM L", "target_crops": ["grapevine", "tomato"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "ppe_requirements", "chunk_text": "P280 – Indossare guanti/indumenti protettivi/Proteggere gli occhi/il viso."}
|
||||
{"chunk_id": "quantum_l_17078_environmental_restrictions_0", "product_id": "quantum_l_17078", "product_name": "QUANTUM L", "target_crops": ["grapevine", "tomato"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "environmental_restrictions", "chunk_text": "H411: Tossico per gli organismi acquatici con effetti di lunga durata. Non contaminare l’acqua con il prodotto o il suo contenitore. Non pulire il materiale d’applicazione in prossimità delle acque di superficie. Evitare la contaminazione attraverso i sistemi di scolo delle acque dalle aziende agricole e dalle strade."}
|
||||
{"chunk_id": "quantum_l_17078_buffer_zones_0", "product_id": "quantum_l_17078", "product_name": "QUANTUM L", "target_crops": ["grapevine", "tomato"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "buffer_zones", "chunk_text": "Per proteggere le specie acquatiche è richiesta una fascia di rispetto non trattata di 10 metri."}
|
||||
{"chunk_id": "quantum_l_17078_crop_instructions_0", "product_id": "quantum_l_17078", "product_name": "QUANTUM L", "target_crops": ["grapevine", "tomato"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "crop_instructions", "chunk_text": "QUANTUM L è un fungicida antiperonosporico che interferisce con i processi biochimici che presiedono alla formazione della parete cellulare del fungo causando la disgregazione della stessa e la conseguente morte del patogeno; viene assorbito rapidamente (1-2 ore) dalla foglia e si sposta in modo translaminare dalla pagina superiore a quella inferiore e dal centro verso i margini."}
|
||||
{"chunk_id": "quantum_l_17078_dosage_instructions_0", "product_id": "quantum_l_17078", "product_name": "QUANTUM L", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "VITE: contro Peronospora (Plasmopara viticola): 0,4-0,5 l/ha con trattamenti a turni fissi ogni 10-12 giorni, in miscela con prodotti antiperonosporici di copertura."}
|
||||
{"chunk_id": "quantum_l_17078_resistance_management_0", "product_id": "quantum_l_17078", "product_name": "QUANTUM L", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "resistance_management", "chunk_text": "VITE: Non eseguire più di 4 trattamenti all'anno, e non oltre tre trattamenti consecutivi."}
|
||||
{"chunk_id": "quantum_l_17078_application_recommendations_0", "product_id": "quantum_l_17078", "product_name": "QUANTUM L", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "application_recommendations", "chunk_text": "VITE: Dose consigliata di acqua 2 - 10 hl/ha."}
|
||||
{"chunk_id": "quantum_l_17078_dosage_instructions_1", "product_id": "quantum_l_17078", "product_name": "QUANTUM L", "target_crops": ["tomato"], "target_diseases": ["late blight"], "chunk_type": "dosage_instructions", "chunk_text": "POMODORO (pieno campo): Contro Peronospora (Phytophthora infestans): intervenire alla dose di 0,4-0,5 l/ha iniziando gli interventi dalla prima pioggia infettante, a cadenza di 8-10 giorni, in miscela con prodotti antiperonosporici di copertura."}
|
||||
{"chunk_id": "quantum_l_17078_resistance_management_1", "product_id": "quantum_l_17078", "product_name": "QUANTUM L", "target_crops": ["tomato"], "target_diseases": ["late blight"], "chunk_type": "resistance_management", "chunk_text": "POMODORO (pieno campo): Non eseguire più di 4 trattamenti all'anno, e non oltre tre trattamenti consecutivi."}
|
||||
{"chunk_id": "quantum_l_17078_application_recommendations_1", "product_id": "quantum_l_17078", "product_name": "QUANTUM L", "target_crops": ["tomato"], "target_diseases": ["late blight"], "chunk_type": "application_recommendations", "chunk_text": "POMODORO (pieno campo): Dose consigliata di acqua 5 - 10 hl/ha."}
|
||||
{"chunk_id": "quantum_l_17078_compatibility_0", "product_id": "quantum_l_17078", "product_name": "QUANTUM L", "target_crops": ["grapevine", "tomato"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "compatibility", "chunk_text": "Il prodotto non è miscibile con i formulati ad azione fungicida od insetticida a reazione alcalina (poltiglia bordolese, polisolfuri, ecc). Avvertenza: in caso di miscela con altri formulati deve essere rispettato il periodo di carenza più lungo. Devono inoltre essere osservate le norme precauzionali prescritte per i prodotti più tossici. Qualora si verificassero casi di intossicazione, informare il medico della miscelazione compiuta."}
|
||||
{"chunk_id": "quantum_l_17078_reentry_requirements_0", "product_id": "quantum_l_17078", "product_name": "QUANTUM L", "target_crops": ["grapevine", "tomato"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "reentry_requirements", "chunk_text": "INTERVALLO DI SICUREZZA: 10 giorni prima del raccolto per vite, 7 giorni prima del raccolto per pomodoro."}
|
||||
{"chunk_id": "quantum_l_17078_application_recommendations_2", "product_id": "quantum_l_17078", "product_name": "QUANTUM L", "target_crops": ["grapevine", "tomato"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "NON APPLICARE CON I MEZZI AEREI"}
|
||||
{"chunk_id": "quantum_l_17078_weather_constraints_0", "product_id": "quantum_l_17078", "product_name": "QUANTUM L", "target_crops": ["grapevine", "tomato"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "weather_constraints", "chunk_text": "OPERARE IN ASSENZA DI VENTO"}
|
||||
14
data/chunks/quasar_6_24_r_12636.jsonl
Normal file
14
data/chunks/quasar_6_24_r_12636.jsonl
Normal file
@ -0,0 +1,14 @@
|
||||
{"chunk_id": "quasar_6_24_r_12636_buffer_zones_0", "product_id": "quasar_6_24_r_12636", "product_name": "QUASAR® 6-24 R", "target_crops": ["grapevine", "tomato", "potato", "melon"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "buffer_zones", "chunk_text": "Per proteggere gli organismi aquatici, rispettare una fascia non trattata di 10 m da corpi idrici superficiali."}
|
||||
{"chunk_id": "quasar_6_24_r_12636_ppe_requirements_0", "product_id": "quasar_6_24_r_12636", "product_name": "QUASAR® 6-24 R", "target_crops": ["grapevine", "tomato", "potato", "melon"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "ppe_requirements", "chunk_text": "Durante la fase di miscelazione e caricamento, indossare tuta da lavoro, guanti e protezione respiratoria (FFP2/P2)."}
|
||||
{"chunk_id": "quasar_6_24_r_12636_reentry_requirements_0", "product_id": "quasar_6_24_r_12636", "product_name": "QUASAR® 6-24 R", "target_crops": ["grapevine", "tomato", "potato", "melon"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "reentry_requirements", "chunk_text": "Non rientrare nell’area trattata finché la vegetazione non sia completamente asciutta."}
|
||||
{"chunk_id": "quasar_6_24_r_12636_environmental_restrictions_0", "product_id": "quasar_6_24_r_12636", "product_name": "QUASAR® 6-24 R", "target_crops": ["grapevine", "tomato", "potato", "melon"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "environmental_restrictions", "chunk_text": "Al fine di ridurre al minimo il potenziale accumulo nel suolo e l'esposizione per gli organismi non bersaglio, tenendo conto al contempo delle condizioni agroclimatiche, non superare l'applicazione cumulativa di 28 kg di rame per ettaro nell'arco di 7 anni. Si raccomanda di rispettare il quantitativo applicato medio di 4 kg di rame per ettaro all'anno."}
|
||||
{"chunk_id": "quasar_6_24_r_12636_dosage_instructions_0", "product_id": "quasar_6_24_r_12636", "product_name": "QUASAR® 6-24 R", "target_crops": ["grapevine", "tomato", "potato", "melon"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "dosage_instructions", "chunk_text": "VITE: contro la Peronospora (Plasmopara viticola), alla dose di 350 g/hl (3,5 kg/ha), ogni 8-12 giorni a partire dalla prima pioggia infettante.\nPOMODORO (pieno campo e serra) e PATATA: contro la Peronospora (Phytophthora infestans), impiegare la dose di 350 g/hl (3,5 kg/ha), ogni 7-10 giorni.\nMELONE: contro la Peronospora (Pseudoperonospora cubensis), impiegare la dose di 350 g/hl (3,5 kg/ha), ogni 7-10 giorni.\nColtura Malattia Dose g/hL Dose kg/ha Intervallo tra i trattamenti (giorni) n° massimo trattamenti all’anno\nVite Peronospora (Plamopara viticola) 350 3,5 8 – 12 4\nPomodoro (pieno campo e serra) Peronospora (Phytophthora infestans) 350 3,5 7 – 10 3\nPatata Peronospora (Phytophthora infestans) 350 3,5 7 – 10 4\nMelone Peronospora (Pseudoperonospora cubensis) 350 3,5 7 – 10 3"}
|
||||
{"chunk_id": "quasar_6_24_r_12636_application_recommendations_0", "product_id": "quasar_6_24_r_12636", "product_name": "QUASAR® 6-24 R", "target_crops": ["grapevine", "tomato", "potato", "melon"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "Il prodotto si usa alle dosi indicate in tabella impiegando irroratrici a volume normale e la quantità d’acqua necessaria per bagnare omogeneamente tutta la vegetazione senza sgocciolamenti. Se si impiegano irroratrici a basso volume, fare riferimento alla dose per ettaro."}
|
||||
{"chunk_id": "quasar_6_24_r_12636_phenology_constraints_0", "product_id": "quasar_6_24_r_12636", "product_name": "QUASAR® 6-24 R", "target_crops": ["grapevine", "tomato", "potato", "melon"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "phenology_constraints", "chunk_text": "Non applicare durante la fioritura"}
|
||||
{"chunk_id": "quasar_6_24_r_12636_resistance_management_0", "product_id": "quasar_6_24_r_12636", "product_name": "QUASAR® 6-24 R", "target_crops": ["grapevine", "potato", "tomato", "melon"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "resistance_management", "chunk_text": "Per gran parte dei fungicidi in generale esiste il rischio della comparsa di ceppi fungini più tolleranti o resistenti al loro principio attivo. Per ridurre al minimo tale rischio, si raccomanda l’utilizzo preventivo del prodotto e il rispetto di dosi, intervalli tra i trattamenti e numero massimo di trattamenti. Inoltre, si consiglia di utilizzare sempre il prodotto nell’ambito di programmi di trattamenti che prevedano la rotazione con sostanze attive caratterizzate da un diverso meccanismo di azione (Mode of Action = MoA, FRAC code) e di effettuare non più di 2 applicazioni consecutive e non più di 4 applicazioni totali previste durante l’anno con fungicidi appartenenti al gruppo CAA (carboxylic acid amides) per vite e patata e non più di 3 applicazioni totali per pomodoro e melone."}
|
||||
{"chunk_id": "quasar_6_24_r_12636_application_recommendations_1", "product_id": "quasar_6_24_r_12636", "product_name": "QUASAR® 6-24 R", "target_crops": ["grapevine", "tomato", "potato", "melon"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "PREPARAZIONE DELLA MISCELA\na) Assicurarsi che l’attrezzatura sia pulita e tarata correttamente per il trattamento da effettuare. b) Riempire il serbatoio con acqua fino a metà. c) Mettere in moto l’agitatore del serbatoio prima di versarvi la dose di prodotto necessaria. d) Continuando ad agitare la soluzione, aggiungere acqua sino al volume previsto per l’applicazione. e) Non è necessaria l’aggiunta di bagnanti. f) Dopo l’applicazione è buona pratica pulire l’attrezzatura con acqua."}
|
||||
{"chunk_id": "quasar_6_24_r_12636_compatibility_0", "product_id": "quasar_6_24_r_12636", "product_name": "QUASAR® 6-24 R", "target_crops": ["grapevine", "tomato", "potato", "melon"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "compatibility", "chunk_text": "Il formulato è miscibile con prodotti ad azione fungicida od insetticida. In caso di miscela con altri formulati, applicare una continua agitazione in modo da garantire l’omogeneità della miscela."}
|
||||
{"chunk_id": "quasar_6_24_r_12636_phytotoxicity_0", "product_id": "quasar_6_24_r_12636", "product_name": "QUASAR® 6-24 R", "target_crops": ["melon"], "target_diseases": ["downy mildew"], "chunk_type": "phytotoxicity", "chunk_text": "Non trattare in fioritura. Su melone il prodotto potrebbe essere leggermente fitotossico su alcune varietà. Si consiglia di effettuare dei test preliminari."}
|
||||
{"chunk_id": "quasar_6_24_r_12636_reentry_requirements_1", "product_id": "quasar_6_24_r_12636", "product_name": "QUASAR® 6-24 R", "target_crops": ["grapevine", "potato", "tomato", "melon"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "reentry_requirements", "chunk_text": "SOSPENDERE I TRATTAMENTI 10 GIORNI prima della raccolta per la VITE, 7 GIORNI prima della raccolta per la PATATA e 3 GIORNI prima della raccolta per POMODORO E MELONE."}
|
||||
{"chunk_id": "quasar_6_24_r_12636_application_recommendations_2", "product_id": "quasar_6_24_r_12636", "product_name": "QUASAR® 6-24 R", "target_crops": ["grapevine", "tomato", "potato", "melon"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "Non applicare con mezzi aerei."}
|
||||
{"chunk_id": "quasar_6_24_r_12636_weather_constraints_0", "product_id": "quasar_6_24_r_12636", "product_name": "QUASAR® 6-24 R", "target_crops": ["grapevine", "tomato", "potato", "melon"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "weather_constraints", "chunk_text": "Operare in assenza di vento."}
|
||||
28
data/chunks/qumran_flow_10491.jsonl
Normal file
28
data/chunks/qumran_flow_10491.jsonl
Normal file
@ -0,0 +1,28 @@
|
||||
{"chunk_id": "qumran_flow_10491_ppe_requirements_0", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": ["tomato", "eggplant", "cucumber", "melon", "pumpkin", "watermelon", "lettuce", "ornamental_plants"], "target_diseases": [], "chunk_type": "ppe_requirements", "chunk_text": "Durante l’uso in serra indossare tuta da lavoro, guanti e un’adeguata protezione respiratoria."}
|
||||
{"chunk_id": "qumran_flow_10491_buffer_zones_0", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": ["vegetables", "strawberry", "potato", "grapevine", "tobacco", "ornamental_plants", "forest_trees", "kiwi", "citrus", "olive", "pome_fruit", "stone_fruit", "hazelnut", "walnut"], "target_diseases": [], "chunk_type": "buffer_zones", "chunk_text": "Per proteggere gli organismi acquatici rispettare una fascia di sicurezza non trattata da corpi idrici superficiali di:\n- 10 metri su ortaggi, fragola, patata, vite, tabacco, ornamentali e forestali;\n- 10 metri utilizzando ugelli con riduzione della deriva del 50% oppure 5 metri utilizzando ugelli con riduzione della deriva del 75% su kiwi;\n- 10 metri utilizzando ugelli con riduzione della deriva del 75% oppure 20 metri per agrumi, olivo;\n- 20 metri utilizzando ugelli con riduzione della deriva del 75% per pomacee e drupacee (applicazione precoce), nocciolo e noce."}
|
||||
{"chunk_id": "qumran_flow_10491_application_recommendations_0", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": [], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "Agitare prima dell’uso."}
|
||||
{"chunk_id": "qumran_flow_10491_environmental_restrictions_0", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": [], "target_diseases": [], "chunk_type": "environmental_restrictions", "chunk_text": "Non pulire il materiale d’applicazione in prossimità delle acque di superficie. Evitare la contaminazione attraverso i sistemi di scolo delle acque dalle aziende agricole e dalle strade."}
|
||||
{"chunk_id": "qumran_flow_10491_application_recommendations_1", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": [], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "Le dosi per ettolitro d’acqua si riferiscono a volumi di trattamento normali, pari a 1000 l/ha di acqua su colture arboree e 500-800 l/ha di acqua su colture erbacee. In caso di adozione di volumi di trattamento più alti o più bassi, rispettare le dosi per ettaro indicate."}
|
||||
{"chunk_id": "qumran_flow_10491_resistance_management_0", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": [], "target_diseases": [], "chunk_type": "resistance_management", "chunk_text": "Al fine di ridurre al minimo il potenziale accumulo nel suolo e l'esposizione per gli organismi non bersaglio, tenendo conto al contempo delle condizioni agroclimatiche, non superare l'applicazione cumulativa di 28 kg di rame per ettaro nell'arco di 7 anni. Si raccomanda di rispettare il quantitativo applicato medio di 4 kg di rame per ettaro all'anno."}
|
||||
{"chunk_id": "qumran_flow_10491_dosage_instructions_0", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": ["apple", "pear", "quince", "apricot", "cherry", "plum", "peach", "olive", "grapevine", "citrus", "kiwi", "hazelnut", "walnut", "carrot", "onion", "tomato", "eggplant", "cucumber", "melon", "pumpkin", "watermelon", "broccoli", "cauliflower", "artichoke", "fresh_legumes_with_pod", "lettuce", "escarole", "watercress", "rocket", "valerianella", "strawberry", "potato", "asparagus", "tobacco", "ornamental_plants", "forest_trees"], "target_diseases": ["canker", "scab", "bacteriosis", "brown spot", "fire blight", "leaf curl", "brown rot", "fusarium", "coryneum blight", "olive knot", "olive peacock spot", "anthracnose", "downy mildew", "black rot", "mal secco", "sooty mould", "phytophthora", "cytospora canker", "alternaria", "rust", "septoria leaf blotch", "cladosporium", "cercospora leaf spot", "common leaf spot (strawberry)", "late blight", "cypress canker"], "chunk_type": "dosage_instructions", "chunk_text": "POMACEE (melo, pero, cotogno): contro Cancri e disseccamenti rameali (Neonectria galligena, Phomopsis sp., Sphaeropsis sp.) 650 ml/hl (6,5 l/ha). Contro Ticchiolatura (Venturia spp.) e Batteriosi 325 ml/hl (3,25 l/ha); 280 ml/hl (2,8 l/ha). Contro Maculatura bruna del pero (Stemphylium vesicarium) 200 ml/hl (2 l/ha). Contro colpo di fuoco batterico (Erwinia amylovora) 185 ml/hl (1,85 l/ha).\nDRUPACEE (albicocco, ciliegio, susino, pesco): contro Cancro batterico (Xanthomonas spp.) 650 ml/hl (6,5 l/ha); contro Bolla (T. deformans), Monilia (Monilia spp.), Fusicocco (Fusicoccum amygdali), Leucostoma spp. e Corineo (Coryneum beijerinckii) 650 ml/hl (6,5 l/ha). Contro le batteriosi (Xanthomonas spp., Pseudomonas spp.) 100 ml/hl (1 l/ha) (solo su albicocco, susino, pesco).\nOLIVO: contro Rogna (Pseudomonas savastanoi), Occhio di pavone (Spilocaea oleagina), batteri (Agrobacterium sp.), Lebbra/antracnosi (Colletotrichum gloesporioides=Gloeosporium olivarum) 470-560 ml/hl (4,7-5,6 l/ha).\nVITE: contro Peronospora (Plasmopara viticola), Marciume nero (Guignarda bidwelli) 370-470 ml/hl (3,7-4,7 l/ha).\nAGRUMI: contro Mal secco (Deuterophoma tracheifila), Antracnosi (Ascochyta spp.), Fumaggine (Capnodium spp., Cladosporium spp., et al.), Marciume bruno (Phytophthora spp.) Batteriosi (Pseudomonas syringae) 470-560 ml/hl (4,7-5,6 l/ha).\nACTINIDIA: contro Batteriosi (Pseudomonas syringae) 560-650 ml/hl (5,6-6,5 l/ha); 200 ml/hl (2,0 l/ha).\nNOCCIOLO: contro Necrosi batterica (Xanthomonas corylina), Mal dello stacco (Cytospora corylicola) e Moria (Pseudomonas avellanae, azione collaterale di contenimento) 650 ml/hl (6,5 l/ha); 185-280 ml/hl (1,85-2,8 l/ha).\nNOCE: contro l’Antracnosi (Gnomonia leptostyla) 650 ml/hl (6,5 l/ha); 185-280 ml/hl (1,85-2,8 l/ha).\nORTAGGI: carota, ortaggi a bulbo (campo); ortaggi a frutto in campo e serra (pomodoro, melanzana, cucurbitacee a buccia commestibile, melone, zucca, anguria), broccoli e cavolfiori (campo), carciofo, legumi freschi con baccello (campo); lattughe e insalate serra e pieno campo [Lattughe, Scarole/Indivie a foglie larghe, Crescione, Rucola, Dolcetta/Valerianella, colture “baby leaf” (comprese le brassicacee)]; contro Alternaria (Alternaria spp), Antracnosi (Colletotrichum spp., Ascochyta spp., Marsonnina spp.), Peronospora (Peronospora spp., Pseudoperonospora spp., Phytophthora spp., Bremia spp., Plasmopara spp.), Ruggine (Puccinia spp., Uromyces spp., Albugo candida), Septoria (Septoria spp.), Cladosporiosi (Cladosporium spp.), Cercosporiosi (Cercospora spp.) e Batteriosi (azione collaterale): 325-370 ml/hl (1,85-2,6 l/ha).\nFRAGOLA (campo): contro Vaiolatura (Mycosphaerella fragariae), Peronospora, Marciume del colletto (Phytophthora cactorum), Antracnosi (Colletotrichum spp.), batteriosi (Xanthomonas fragariae) 370-470 ml/hl (2,35-3 l/ha).\nPATATA (campo): contro Peronospora (Phytophthora infestans), Alternaria (Alternaria spp.) 370-470 ml/hl. (2,35-3 l/ha).\nASPARAGO (campo): contro Alternaria (Alternaria spp.), Ruggine (Puccinia asparagi), Cercosporiosi (Cercospora asparagi) e Batteriosi: 325-370 ml/hl (1,85-2,6 l/ha).\nTABACCO: contro Peronospora (Peronospora tabacina), Batteriosi (azione collaterale) 470 ml/hl (2,35-3,75 l/ha).\nFLOREALI (campo e serra), ORNAMENTALI (campo e serra), FORESTALI contro Ruggini (Uromyces, Phragmidium spp., Melampsora spp.), Marsonnina brunnea, Ticchiolatura (Diplocarpon rosae, Venturia spp. Fusicladium spp., Marsonnina spp.), Peronospora (Phytophthora, Peronospora spp., Bremia spp.), Cercospora spp., Batteriosi (azione collaterale), Septoria (Septoria spp.), Alternaria (Alternaria spp.), Cancri rameali (Nectria spp.), Antracnosi (Colletotrichum spp., Guingnarda spp., Apiognomonia spp.), Bolla (Taphrina spp.), Cancro del cipresso (Seiridium cardinale). In Floricoltura: 280-370 ml/hl (1,85-2,25 l/ha); su Piante forestali: 370-470 ml/hl (3,75 l/ha)."}
|
||||
{"chunk_id": "qumran_flow_10491_crop_instructions_0", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": ["apple", "pear", "quince"], "target_diseases": ["canker", "scab", "bacteriosis", "brown spot", "fire blight"], "chunk_type": "crop_instructions", "chunk_text": "POMACEE (melo, pero, cotogno): in 2-3 trattamenti autunnali e/o di fine inverno, a 8-10 giorni di intervallo. Contro Ticchiolatura e Batteriosi a gemma rigonfia; in trattamenti pre fiorali e da fine fioritura (massimo 5 trattamenti ogni 8-10 giorni). Contro Maculatura bruna del pero a partire da fine fioritura (massimo 6 trattamenti ogni 7-10 giorni). Contro colpo di fuoco batterico a partire da 30 giorni dopo caduta petali, intervenendo a distanza di 7 giorni per un massimo di 8 trattamenti (azione collaterale di contenimento)."}
|
||||
{"chunk_id": "qumran_flow_10491_crop_instructions_1", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": ["apricot", "cherry", "plum", "peach"], "target_diseases": ["bacteriosis", "leaf curl", "brown rot", "fusarium", "coryneum blight"], "chunk_type": "crop_instructions", "chunk_text": "DRUPACEE (albicocco, ciliegio, susino, pesco): 2-3 trattamenti alla caduta delle foglie a distanza di 8-10 giorni; durante il riposo vegetativo (massimo 3 trattamenti ogni 12-14 giorni). Contro le batteriosi 4-5 interventi durante la fase vegetativa a 100 ml/hl (1 l/ha) ogni 10 giorni (solo su albicocco, susino, pesco)."}
|
||||
{"chunk_id": "qumran_flow_10491_crop_instructions_2", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": ["olive"], "target_diseases": ["olive knot", "olive peacock spot", "bacteriosis", "anthracnose"], "chunk_type": "crop_instructions", "chunk_text": "OLIVO: massimo 3 trattamenti ogni 7-10 gg da inizio sviluppo vegetativo a maturazione frutti."}
|
||||
{"chunk_id": "qumran_flow_10491_crop_instructions_3", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": ["grapevine"], "target_diseases": ["downy mildew", "black rot"], "chunk_type": "crop_instructions", "chunk_text": "VITE: Massimo 5 trattamenti ogni 7 giorni in pre-fioritura e da fine-fioritura a pre-raccolta."}
|
||||
{"chunk_id": "qumran_flow_10491_crop_instructions_4", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": ["citrus"], "target_diseases": ["mal secco", "anthracnose", "sooty mould", "phytophthora", "bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "AGRUMI: massimo 3 trattamenti ogni 7-10 gg a fine inverno-inizio primavera ed in autunno (invaiatura frutti)."}
|
||||
{"chunk_id": "qumran_flow_10491_crop_instructions_5", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": ["kiwi"], "target_diseases": ["bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "ACTINIDIA: 1-2 trattamenti alla caduta delle foglie (ogni 7-10 gg). In vegetazione, fioritura esclusa, massimo 3-4 trattamenti ogni 7 giorni."}
|
||||
{"chunk_id": "qumran_flow_10491_crop_instructions_6", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": ["hazelnut"], "target_diseases": ["bacteriosis", "cytospora canker"], "chunk_type": "crop_instructions", "chunk_text": "NOCCIOLO: negli interventi autunnali (massimo 2 ogni 12-14 giorni); in quelli primaverili (massimo 3 ogni 7-10 giorni)."}
|
||||
{"chunk_id": "qumran_flow_10491_crop_instructions_7", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": ["walnut"], "target_diseases": ["anthracnose"], "chunk_type": "crop_instructions", "chunk_text": "NOCE: negli interventi invernali (massimo 2 ogni 12-14 giorni); nei trattamenti primaverili-estivi (massimo 3 ogni 7-10 giorni)."}
|
||||
{"chunk_id": "qumran_flow_10491_crop_instructions_8", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": ["carrot", "onion", "tomato", "eggplant", "cucumber", "melon", "pumpkin", "watermelon", "broccoli", "cauliflower", "artichoke", "fresh_legumes_with_pod", "lettuce", "escarole", "watercress", "rocket", "valerianella"], "target_diseases": ["alternaria", "anthracnose", "downy mildew", "rust", "septoria leaf blotch", "cladosporium", "cercospora leaf spot", "bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "ORTAGGI: Effettuare al massimo 6 trattamenti a cadenza settimanale iniziando al verificarsi delle condizioni favorevoli alle malattie sino in prossimità della raccolta."}
|
||||
{"chunk_id": "qumran_flow_10491_crop_instructions_9", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": ["strawberry"], "target_diseases": ["common leaf spot (strawberry)", "downy mildew", "phytophthora", "anthracnose", "bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "FRAGOLA (campo): Effettuare al massimo 4 trattamenti a cadenza settimanale iniziando al verificarsi delle condizioni favorevoli alle malattie sino in prossimità della raccolta."}
|
||||
{"chunk_id": "qumran_flow_10491_crop_instructions_10", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": ["potato"], "target_diseases": ["late blight", "alternaria"], "chunk_type": "crop_instructions", "chunk_text": "PATATA (campo): Effettuare al massimo 6 trattamenti a cadenza settimanale iniziando al verificarsi delle condizioni favorevoli alle malattie sino in prossimità della raccolta."}
|
||||
{"chunk_id": "qumran_flow_10491_crop_instructions_11", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": ["asparagus"], "target_diseases": ["alternaria", "rust", "cercospora leaf spot", "bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "ASPARAGO (campo): trattamenti esclusivamente in post raccolta dei turioni; massimo 2 trattamenti ogni 7-10 giorni."}
|
||||
{"chunk_id": "qumran_flow_10491_crop_instructions_12", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": ["tobacco"], "target_diseases": ["downy mildew", "bacteriosis"], "chunk_type": "crop_instructions", "chunk_text": "TABACCO: Massimo 4 trattamenti ogni 7-10 gg al verificarsi delle condizioni favorevoli alle malattie."}
|
||||
{"chunk_id": "qumran_flow_10491_crop_instructions_13", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": ["ornamental_plants", "forest_trees"], "target_diseases": ["rust", "scab", "downy mildew", "cercospora leaf spot", "bacteriosis", "septoria leaf blotch", "alternaria", "canker", "anthracnose", "leaf curl", "cypress canker"], "chunk_type": "crop_instructions", "chunk_text": "FLOREALI (campo e serra), ORNAMENTALI (campo e serra), FORESTALI: Massimo 4 trattamenti ogni 7-10 giorni al verificarsi delle condizioni favorevoli alle malattie."}
|
||||
{"chunk_id": "qumran_flow_10491_compatibility_0", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": [], "target_diseases": [], "chunk_type": "compatibility", "chunk_text": "COMPATIBILITÀ: il prodotto non è compatibile con i prodotti a reazione alcalina.\nAvvertenza: in caso di miscela con altri formulati deve essere rispettato il periodo di carenza più lungo. Devono inoltre essere osservate le norme precauzionali prescritte per i prodotti più tossici. Qualora si verificassero casi di intossicazione informare il medico della miscelazione compiuta."}
|
||||
{"chunk_id": "qumran_flow_10491_phenology_constraints_0", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": [], "target_diseases": [], "chunk_type": "phenology_constraints", "chunk_text": "Non trattare durante la fioritura."}
|
||||
{"chunk_id": "qumran_flow_10491_weather_constraints_0", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": [], "target_diseases": [], "chunk_type": "weather_constraints", "chunk_text": "Non trattare piante in condizione di stress o in caso di forti escursioni termiche."}
|
||||
{"chunk_id": "qumran_flow_10491_phytotoxicity_0", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": ["peach", "plum", "apple", "pear"], "target_diseases": [], "chunk_type": "phytotoxicity", "chunk_text": "Possibili sintomi fitotossici nei trattamenti in piena vegetazione su pesco, susino e varietà di melo e pero cuprosensibili (es. Melo: Abbondanza Belford, Black Stayman, Golden delicious, Gravenstein Jonathan, Rome Beauty, Morgenduft, Stayman Red, Stayman Winesap, Black Davis, King Davis, Renetta del Canada, Rosa Mantovana. Pero: Abate Fetel, Buona Luigia d’Avranches, Butirra Clargeau, Passacrassana, B.C.William, Dott. Jules Guyot, Favorita di Clapp, Kaiser, Butirra Giffard)."}
|
||||
{"chunk_id": "qumran_flow_10491_reentry_requirements_0", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": ["carrot", "onion", "tomato", "eggplant", "cucumber", "fresh_legumes_with_pod", "lettuce", "artichoke", "potato", "melon", "pumpkin", "watermelon", "strawberry", "broccoli", "cauliflower", "grapevine", "pome_fruit", "stone_fruit", "olive", "citrus", "kiwi", "hazelnut", "walnut", "tobacco", "ornamental_plants", "forest_trees", "asparagus"], "target_diseases": [], "chunk_type": "reentry_requirements", "chunk_text": "INTERVALLO DI SICUREZZA:\n3 giorni per Carota, Ortaggi a bulbo, Pomodoro, Melanzana, Cucurbitacee a buccia commestibile, Legumi freschi (con baccello);\n7 giorni per Lattughe e Insalate, Carciofo, Patata, Cucurbitacee a buccia non commestibile, Fragola;\n14 giorni per Broccoli e cavolfiori;\n21 giorni per Vite;\n40 giorni per Pomacee e Drupacee;\n20 giorni per le altre colture.\nAsparago: trattare dopo la raccolta dei turioni."}
|
||||
{"chunk_id": "qumran_flow_10491_application_recommendations_2", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": [], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "NON APPLICARE CON I MEZZI AEREI."}
|
||||
{"chunk_id": "qumran_flow_10491_weather_constraints_1", "product_id": "qumran_flow_10491", "product_name": "QUMRAN FLOW", "target_crops": [], "target_diseases": [], "chunk_type": "weather_constraints", "chunk_text": "OPERARE IN ASSENZA DI VENTO."}
|
||||
11
data/chunks/ramin_sc_0916.jsonl
Normal file
11
data/chunks/ramin_sc_0916.jsonl
Normal file
@ -0,0 +1,11 @@
|
||||
{"chunk_id": "ramin_sc_0916_environmental_restrictions_0", "product_id": "ramin_sc_0916", "product_name": "RAMIN SC", "target_crops": ["artichoke", "citrus", "cucumber", "zucchini", "broccoli", "cauliflower", "bean", "pea", "grapevine", "lettuce", "ornamental_plants", "ornamental_trees", "pepper", "pome_fruit", "cherry", "peach", "nectarine", "stone_fruit", "strawberry", "tomato", "eggplant", "hazelnut", "medlar", "walnut"], "target_diseases": ["downy mildew", "leaf spot", "bacteriosis", "phytophthora", "alternaria", "anthracnose", "septoria leaf blotch", "rust", "scab", "canker", "leaf curl", "brown rot", "coryneum blight", "shot hole", "cylindrosporium leaf spot", "common leaf spot (strawberry)", "cytospora canker", "walnut blight"], "chunk_type": "environmental_restrictions", "chunk_text": "Non contaminare l’acqua con il prodotto o il suo contenitore. Non pulire il materiale d’applicazione in prossimità delle acque di superficie. Evitare la contaminazione attraverso i sistemi di scolo delle acque dalle aziende agricole e dalle strade."}
|
||||
{"chunk_id": "ramin_sc_0916_application_recommendations_0", "product_id": "ramin_sc_0916", "product_name": "RAMIN SC", "target_crops": ["artichoke", "citrus", "cucumber", "zucchini", "broccoli", "cauliflower", "bean", "pea", "grapevine", "lettuce", "ornamental_plants", "ornamental_trees", "pepper", "pome_fruit", "cherry", "peach", "nectarine", "stone_fruit", "strawberry", "tomato", "eggplant", "hazelnut", "medlar", "walnut"], "target_diseases": ["downy mildew", "leaf spot", "bacteriosis", "phytophthora", "alternaria", "anthracnose", "septoria leaf blotch", "rust", "scab", "canker", "leaf curl", "brown rot", "coryneum blight", "shot hole", "cylindrosporium leaf spot", "common leaf spot (strawberry)", "cytospora canker", "walnut blight"], "chunk_type": "application_recommendations", "chunk_text": "RAMIN SC è un fungicida in sospensione concentrata a base di rame ossicloruro ottenuto mediante un particolare processo di produzione e formulazione. Le particelle rameiche, caratterizzate da un’elevatissima micronizzazione, aderiscono tenacemente alle superfici vegetali trattate formando un sottile strato protettivo nei confronti delle malattie fungine, particolarmente resistente all’azione dilavante delle piogge. RAMIN SC assicura così un’elevata attività nei confronti dei patogeni unita ad una notevole persistenza d’azione."}
|
||||
{"chunk_id": "ramin_sc_0916_environmental_restrictions_1", "product_id": "ramin_sc_0916", "product_name": "RAMIN SC", "target_crops": ["artichoke", "citrus", "cucumber", "zucchini", "broccoli", "cauliflower", "bean", "pea", "grapevine", "lettuce", "ornamental_plants", "ornamental_trees", "pepper", "pome_fruit", "cherry", "peach", "nectarine", "stone_fruit", "strawberry", "tomato", "eggplant", "hazelnut", "medlar", "walnut"], "target_diseases": ["downy mildew", "leaf spot", "bacteriosis", "phytophthora", "alternaria", "anthracnose", "septoria leaf blotch", "rust", "scab", "canker", "leaf curl", "brown rot", "coryneum blight", "shot hole", "cylindrosporium leaf spot", "common leaf spot (strawberry)", "cytospora canker", "walnut blight"], "chunk_type": "environmental_restrictions", "chunk_text": "RAMIN SC può essere impiegato sulle seguenti colture ai dosaggi di seguito riportati, non superare i 6 kg/ha di rame metallo all’anno."}
|
||||
{"chunk_id": "ramin_sc_0916_dosage_instructions_0", "product_id": "ramin_sc_0916", "product_name": "RAMIN SC", "target_crops": ["artichoke", "citrus", "cucumber", "zucchini", "broccoli", "cauliflower", "bean", "pea", "grapevine", "lettuce", "ornamental_plants", "ornamental_trees", "pepper", "pome_fruit", "cherry", "peach", "nectarine", "stone_fruit", "strawberry", "tomato", "eggplant", "hazelnut", "medlar", "walnut"], "target_diseases": ["downy mildew", "leaf spot", "bacteriosis", "phytophthora", "alternaria", "anthracnose", "septoria leaf blotch", "rust", "scab", "canker", "leaf curl", "brown rot", "coryneum blight", "shot hole", "cylindrosporium leaf spot", "common leaf spot (strawberry)", "cytospora canker", "walnut blight"], "chunk_type": "dosage_instructions", "chunk_text": "COLTURA\nMalattia fungina combattuta\nDose singola MIN-MAX (ml prod/ha)\nLitri di Acqua /ha (min-max)\nEpoca di impiego (BBCH)\nNumero massimo di applicazioni/anno\nPHI Intervallo di carenza (giorni prima del raccolto)\nCarciofi\nBremia sp; Ascochyta; Malattie batteriche\n1,3-2,6\n400-1000\n14-51\n3-5\n3\nAgrumi\nPhytophthora citricola, Pseudomonas syringae, Alternaria citricola\n2,1-2,6\n1500-2000\n15-89\n3-5\n14\nCucurbitacee commestibili\nPeronospora cubensis; alternaria; colletotrichum; Malattie batteriche\n1,3-2,6\n400-1000\n10-89\n3-8\n3 cetrioli e zucchini;\nBroccoli, Cavolfiori\nPeronospora brassicae, bacteria\n1,3-2,6\n300-1000\n41-59\n3-4\n14\nLegumi freschi (fagioli, piselli, altri)\nColletotrichum; Peronospora; Septoria; Marsonina; Malattie batteriche\n1,3-2,6\n400-1000\n11-69\n3-4\n3\nVite\nMalattie batteriche, Plasmopara viticola, Elsinoe ampelina, Antrachnosis\n1,3-3,2\n400-1200\n15-81 & 91\n4\n21\nLattughe e simili (Spinaci esclusi)\nBremia; Alternaria; Malattie batteriche\n1,8-2,6\n300-1000\n12-49\n3-5\n7\nPiante ed alberi ornamentali\nPeronospora, Septoria, Antrachnosi, Puccinia, Ticchiolatura\n1,8-2,6\n300-1000\nTrattabile in tutte le fasi fenologiche\n2-3\nn.a.\nPeperoni\nPhytophthora spp. , Alternaria, Colletotrichum, Pseudomonas, Xanthomonas\n1,3-2,6\n200-1000\n15-89\n3-4\n21\nPomacee (post fioritura)\nVenturia inaequalis, Erwinia, Pseudomonas, altre batteriosi\n0,5-1,3\n500-1500\n59-85\n3-4\n21\nPomacee (trattamento al bruno in prefioritura)\nNectria galligena, Venturia inaequalis, Erwinia, Pseudomonas, altre batteriosi\n2-3,2\n500-1000\n91-53\n2-4\nn.a.\nCiliegie, pesche, nettarine (post fioritura)\nBatteriosi\n0,5-1\n500-1500\n73-85\n3-5\n21\nDrupacee (trattamento al bruno in prefioritura)\nTaphrina, Monillia, Coryneum, Pseudomonas, Stigmina carpohila, Blumeriella, Malattie batteriche\n1-3,3\n300-1000\n95-53\n2-4\nn.a.\nFragole\nMycosphaerella, Batteriosi\n2-2,6\n200-800\n13-85\n3-4\n3\nPomodoro, melanzana\nPhytophthora spp. , Alternaria, Colletotrichum, Pseudomonas, Xanthomonas\n1,3-3,3\n200-800\n15-89\n3-6\n3; 10 per pomodoro da industria\nNocciole\nAlternaria, Antracnosi, Malattie batteriche, Cytospora,\n1,8-2,6\n1000-1500\n51-79 & 91-97\n2-3\n14\nNespolo\nVenturia,\n2,6-4,5\n1500-1800\n-\n1-3\n20\nNoce\nMalattie batteriche (Xanthomonas juglandis)\n1,3-5,3\n1000-1500\n03-69\n2-4\nn.a."}
|
||||
{"chunk_id": "ramin_sc_0916_environmental_restrictions_2", "product_id": "ramin_sc_0916", "product_name": "RAMIN SC", "target_crops": ["cucumber", "zucchini", "grapevine", "pome_fruit", "tomato", "walnut"], "target_diseases": [], "chunk_type": "environmental_restrictions", "chunk_text": "Al fine di ridurre al minimo il potenziale accumulo nel suolo e l'esposizione per gli organismi non bersaglio, tenendo conto al contempo delle condizioni agroclimatiche, non superare l'applicazione cumulativa di 28 kg di rame per ettaro nell'arco di 7 anni. Si raccomanda di rispettare il quantitativo medio applicato di 4 kg di rame per ettaro all’anno”."}
|
||||
{"chunk_id": "ramin_sc_0916_compatibility_0", "product_id": "ramin_sc_0916", "product_name": "RAMIN SC", "target_crops": ["artichoke", "citrus", "cucumber", "zucchini", "broccoli", "cauliflower", "bean", "pea", "grapevine", "lettuce", "ornamental_plants", "ornamental_trees", "pepper", "pome_fruit", "cherry", "peach", "nectarine", "stone_fruit", "strawberry", "tomato", "eggplant", "hazelnut", "medlar", "walnut"], "target_diseases": ["downy mildew", "leaf spot", "bacteriosis", "phytophthora", "alternaria", "anthracnose", "septoria leaf blotch", "rust", "scab", "canker", "leaf curl", "brown rot", "coryneum blight", "shot hole", "cylindrosporium leaf spot", "common leaf spot (strawberry)", "cytospora canker", "walnut blight"], "chunk_type": "compatibility", "chunk_text": "COMPATIBILITA’: il prodotto non è miscibile con fitosanitari a reazione alcalina ed il Tiram. Evitare inoltre le miscele con fertilizzanti fogliari contenenti acidi umici e/o elevati tenori di azoto. Avvertenza: in caso di miscela con altri formulati deve essere rispettato il periodo di carenza più lungo. Devono inoltre essere osservate le norme precauzionali prescritte per i prodotti più tossici. Qualora si verificassero casi di intossicazione informare il medico della miscelazione compiuta."}
|
||||
{"chunk_id": "ramin_sc_0916_phenology_constraints_0", "product_id": "ramin_sc_0916", "product_name": "RAMIN SC", "target_crops": ["artichoke", "citrus", "cucumber", "zucchini", "broccoli", "cauliflower", "bean", "pea", "grapevine", "lettuce", "ornamental_plants", "ornamental_trees", "pepper", "apple", "pear", "cherry", "peach", "nectarine", "plum", "strawberry", "tomato", "eggplant", "hazelnut", "medlar", "walnut"], "target_diseases": ["downy mildew", "leaf spot", "bacteriosis", "phytophthora", "alternaria", "anthracnose", "septoria leaf blotch", "rust", "scab", "canker", "leaf curl", "brown rot", "coryneum blight", "shot hole", "cylindrosporium leaf spot", "common leaf spot (strawberry)", "cytospora canker", "walnut blight"], "chunk_type": "phenology_constraints", "chunk_text": "non si deve trattare durante la fioritura."}
|
||||
{"chunk_id": "ramin_sc_0916_phytotoxicity_0", "product_id": "ramin_sc_0916", "product_name": "RAMIN SC", "target_crops": ["peach", "plum", "apple", "pear"], "target_diseases": ["bacteriosis"], "chunk_type": "phytotoxicity", "chunk_text": "Su pesco, susino e varietà di melo cuprosensibili (Abbondanza, Belford, Black Stayman, Golden Delicious, Gravenstein, Jonathan, Rome Beauty, Morgenduft, Stayman, Stayman Red, Stayman Winesap, Black Ben Davis, King Davis, Renetta del Canadà, Rosa Mantovana) e di pero (Abate Fetel, Buona Luigia d’Avranches, Butirra Clairgeau, Passacrassana, B.C.William, Dott. Jules Guynot, Favorita di Clapp, Kaiser, Butirra Giffard ) il prodotto può essere fitotossico se distribuito in piena vegetazione. In tali casi se ne sconsiglia, pertanto, l’impiego fatta eccezione della lotta contro le Batteriosi in cui la fitotossicità può diventare un problema accettato."}
|
||||
{"chunk_id": "ramin_sc_0916_resistance_management_0", "product_id": "ramin_sc_0916", "product_name": "RAMIN SC", "target_crops": ["artichoke", "citrus", "cucumber", "zucchini", "broccoli", "cauliflower", "bean", "pea", "grapevine", "lettuce", "ornamental_plants", "ornamental_trees", "pepper", "pome_fruit", "cherry", "peach", "nectarine", "stone_fruit", "strawberry", "tomato", "eggplant", "hazelnut", "medlar", "walnut"], "target_diseases": ["downy mildew", "leaf spot", "bacteriosis", "phytophthora", "alternaria", "anthracnose", "septoria leaf blotch", "rust", "scab", "canker", "leaf curl", "brown rot", "coryneum blight", "shot hole", "cylindrosporium leaf spot", "common leaf spot (strawberry)", "cytospora canker", "walnut blight"], "chunk_type": "resistance_management", "chunk_text": "GESTIONE DELLE RESISTENZE\nPer evitare l’insorgere di fenomeni di resistenza attenersi alle indicazioni riportate in etichetta e alternare RAMIN SC ad altri fungicidi."}
|
||||
{"chunk_id": "ramin_sc_0916_application_recommendations_1", "product_id": "ramin_sc_0916", "product_name": "RAMIN SC", "target_crops": ["artichoke", "citrus", "cucumber", "zucchini", "broccoli", "cauliflower", "bean", "pea", "grapevine", "lettuce", "ornamental_plants", "ornamental_trees", "pepper", "pome_fruit", "cherry", "peach", "nectarine", "stone_fruit", "strawberry", "tomato", "eggplant", "hazelnut", "medlar", "walnut"], "target_diseases": ["downy mildew", "leaf spot", "bacteriosis", "phytophthora", "alternaria", "anthracnose", "septoria leaf blotch", "rust", "scab", "canker", "leaf curl", "brown rot", "coryneum blight", "shot hole", "cylindrosporium leaf spot", "common leaf spot (strawberry)", "cytospora canker", "walnut blight"], "chunk_type": "application_recommendations", "chunk_text": "Da non applicare con mezzi aerei;"}
|
||||
{"chunk_id": "ramin_sc_0916_weather_constraints_0", "product_id": "ramin_sc_0916", "product_name": "RAMIN SC", "target_crops": ["artichoke", "citrus", "cucumber", "zucchini", "broccoli", "cauliflower", "bean", "pea", "grapevine", "lettuce", "ornamental_plants", "ornamental_trees", "pepper", "pome_fruit", "cherry", "peach", "nectarine", "stone_fruit", "strawberry", "tomato", "eggplant", "hazelnut", "medlar", "walnut"], "target_diseases": ["downy mildew", "leaf spot", "bacteriosis", "phytophthora", "alternaria", "anthracnose", "septoria leaf blotch", "rust", "scab", "canker", "leaf curl", "brown rot", "coryneum blight", "shot hole", "cylindrosporium leaf spot", "common leaf spot (strawberry)", "cytospora canker", "walnut blight"], "chunk_type": "weather_constraints", "chunk_text": "Operare in assenza di vento;"}
|
||||
28
data/chunks/ridomil_gold_480_sl_18800.jsonl
Normal file
28
data/chunks/ridomil_gold_480_sl_18800.jsonl
Normal file
@ -0,0 +1,28 @@
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_environmental_restrictions_0", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["grapevine", "orange", "mandarin", "clementine", "lime", "grapefruit", "potato", "onion", "broccoli", "cauliflower", "cabbage", "savoy_cabbage", "cucumber", "melon", "watermelon", "lettuce", "spinach", "herbs_fresh", "tomato"], "target_diseases": ["downy mildew", "phytophthora", "late blight"], "chunk_type": "environmental_restrictions", "chunk_text": "Non contaminare l’acqua con il prodotto o il suo contenitore. Non pulire il materiale d'applicazione in prossimità delle acque di superficie. Evitare la contaminazione attraverso i sistemi di scolo delle acque dalle aziende agricole e dalle strade."}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_ppe_requirements_0", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["orange", "mandarin", "clementine", "lime", "grapefruit"], "target_diseases": ["phytophthora"], "chunk_type": "ppe_requirements", "chunk_text": "Per arancio, mandarino, clementino, lime e pompelmo proteggere gli occhi e il viso durante la miscelazione, il caricamento e l’applicazione del prodotto."}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_application_recommendations_0", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["grapevine", "orange", "mandarin", "clementine", "lime", "grapefruit", "potato", "onion", "broccoli", "cauliflower", "cabbage", "savoy_cabbage", "cucumber", "melon", "watermelon", "lettuce", "spinach", "herbs_fresh", "tomato"], "target_diseases": ["downy mildew", "phytophthora", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "Non effettuare applicazioni manuali in caso di piena vegetazione, es. quando non è possibile evitare il contatto con la superficie trattata."}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_ppe_requirements_1", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "ppe_requirements", "chunk_text": "Per vite proteggere gli occhi e il viso durante la miscelazione, il caricamento e l’applicazione del prodotto."}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_reentry_requirements_0", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "reentry_requirements", "chunk_text": "In caso di rientro in campo, l’uso di indumenti da lavoro (pantaloni lunghi e maglia a maniche lunghe) è raccomandato per il lavoratore. Il rientro in campo deve avvenire 1 giorno dopo l’applicazione."}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_ppe_requirements_2", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["melon", "watermelon", "tomato", "cucumber", "lettuce", "spinach", "herbs_fresh", "broccoli", "cauliflower", "cabbage", "savoy_cabbage", "onion", "potato"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "ppe_requirements", "chunk_text": "Per melone, cocomero, pomodoro, cetriolo, lattughe e insalate, spinaci e simili, erbe fresche, broccolo, cavolfiore, cavolo cappuccio, cavolo verza, cipolla e patata (impiego in campo) proteggere gli occhi e il viso durante la miscelazione, il carico e l’applicazione del prodotto. In caso di applicazioni manuali, indossare una maschera con filtrante FP2, P2 o similari, indumenti da lavoro (pantaloni lunghi e maglia a maniche lunghe) e guanti durante la miscelazione, il carico e l’applicazione del prodotto."}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_reentry_requirements_1", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["melon", "watermelon", "tomato", "cucumber", "lettuce", "spinach", "herbs_fresh", "broccoli", "cauliflower", "cabbage", "savoy_cabbage", "onion", "potato"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "reentry_requirements", "chunk_text": "In caso di rientro in campo, l’uso di guanti e indumenti da lavoro (pantaloni lunghi e maglia a maniche lunghe) è raccomandato per il lavoratore. Il rientro in campo deve avvenire 10 giorni dopo l’applicazione, in caso di uso su brassicacee."}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_ppe_requirements_3", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["melon", "watermelon", "tomato", "cucumber", "lettuce", "spinach", "herbs_fresh"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "ppe_requirements", "chunk_text": "Per melone, cocomero, pomodoro, cetriolo, lattughe e insalate, spinaci e simili, erbe fresche (impiego in serra): durante la miscelazione e il caricamento del prodotto indossare guanti e visiera. Durante l’applicazione del prodotto indossare indumenti impermeabili e guanti."}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_reentry_requirements_2", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["melon", "watermelon", "tomato", "cucumber", "lettuce", "spinach", "herbs_fresh"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "reentry_requirements", "chunk_text": "In caso di rientro in serra, l’uso di indumenti da lavoro (pantaloni lunghi e maglia a maniche lunghe) è raccomandato per il lavoratore. Rientrare in campo quando la vegetazione è completamente asciutta."}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_application_recommendations_1", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["grapevine", "orange", "mandarin", "clementine", "lime", "grapefruit", "potato", "onion", "broccoli", "cauliflower", "cabbage", "savoy_cabbage", "cucumber", "melon", "watermelon", "lettuce", "spinach", "herbs_fresh", "tomato"], "target_diseases": ["downy mildew", "phytophthora", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "Ridomil Gold 480 SL è un fungicida ad azione preventiva e curativa. Il rapido assorbimento e la spiccata sistemía di Metalaxil-M garantiscono una protezione pronta e prolungata sia della vegetazione presente al momento del trattamento, sia di quella di nuova formazione."}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_dosage_instructions_0", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["grapevine", "orange", "mandarin", "clementine", "lime", "grapefruit", "potato", "onion", "broccoli", "cauliflower", "cabbage", "savoy_cabbage", "cucumber", "melon", "watermelon", "lettuce", "spinach", "herbs_fresh", "tomato"], "target_diseases": ["downy mildew", "phytophthora", "late blight"], "chunk_type": "dosage_instructions", "chunk_text": "DOSI E MODALITÀ D’IMPIEGO\nColture Malattie Dosi/hl Dosi/ha Volumi di acqua l/ha Modalità di applicazione\nVite (da vino e da tavola) Peronospora (Plasmopara viticola) 20 ml/hL 0,2 l/ha - Massimo 2 applicazioni ad intervallo di 7-10 giorni da inizio germogliamento\nArancio mandarino clementino lime pompelmo Allupatura (Phytophthora sp.) 14 ml/hL 0,2 l/ha - Massimo 1 applicazione/anno dalla fase di allegaggione\nPatata (in campo) Peronospora (Phytophthora infestans) - 0,2 l/ha 300-600 Massimo 2 applicazioni/anno ad intervallo di 7-10 giorni da inizio germogliamento\nCipolla (in campo) Peronospora (Peronospora destructor) - 0,2 l/ha 200-800 Massimo 1 applicazione/anno dalla quinta foglia alla raccolta\nBroccolo Cavolfiore Cavolo cappuccio Cavolo verza (in campo) Peronospora (Hyaloperonospora brassicae) - 0,2 l/ha 200-800 Massimo 1 applicazione/anno dallo stadio di prima foglia vera\nCetriolo (in campo) Peronospora (Pseudoperonospora cubensis) - 0,2 l/ha 200-1000 Massimo 1 applicazione/anno a partire dallo stadio di terza foglia\nCetriolo (in serra) Peronospora (Pseudoperonospora cubensis) - 0,2 l/ha 200-1000 Massimo 2 applicazioni/anno ad intervallo di 7-10 giorni a partire dallo stadio di terza foglia\nMelone Cocomero (in campo e in serra) Peronospora (Pseudoperonospora cubensis) - 0,2 l/ha 200-1000 Massimo 2 applicazioni/anno ad intervallo di 7-10 giorni a partire dal primo germoglio visibile\nLattughe e insalate Spinaci e simili Erbe fresche (in campo e in serra) Peronospora (Bremia lactucae) - 0,2 l/ha 200-800 Massimo 1 applicazione/anno dallo stadio di prima foglia vera\nPomodoro (in campo) Peronospora (Phytophthora infestans) - 0,2 l/ha 300-1000 Massimo 2 applicazioni/anno ad intervallo di 7-10 giorni dallo stadio di quinta foglia\nPomodoro (in serra) Peronospora (Phytophthora infestans) 20 ml/hL 0,2 l/ha - Massimo 2 applicazioni/anno ad intervallo di 7-10 giorni dallo stadio di quinta foglia"}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_crop_instructions_0", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "crop_instructions", "chunk_text": "Massimo 2 applicazioni ad intervallo di 7-10 giorni da inizio germogliamento"}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_crop_instructions_1", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["orange", "mandarin", "clementine", "lime", "grapefruit"], "target_diseases": ["phytophthora"], "chunk_type": "crop_instructions", "chunk_text": "Massimo 1 applicazione/anno dalla fase di allegaggione"}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_crop_instructions_2", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["potato"], "target_diseases": ["late blight"], "chunk_type": "crop_instructions", "chunk_text": "Massimo 2 applicazioni/anno ad intervallo di 7-10 giorni da inizio germogliamento"}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_crop_instructions_3", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["onion"], "target_diseases": ["downy mildew"], "chunk_type": "crop_instructions", "chunk_text": "Massimo 1 applicazione/anno dalla quinta foglia alla raccolta"}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_crop_instructions_4", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["broccoli", "cauliflower", "cabbage", "savoy_cabbage"], "target_diseases": ["downy mildew"], "chunk_type": "crop_instructions", "chunk_text": "Massimo 1 applicazione/anno dallo stadio di prima foglia vera"}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_crop_instructions_5", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["cucumber"], "target_diseases": ["downy mildew"], "chunk_type": "crop_instructions", "chunk_text": "Massimo 1 applicazione/anno a partire dallo stadio di terza foglia"}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_crop_instructions_6", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["cucumber"], "target_diseases": ["downy mildew"], "chunk_type": "crop_instructions", "chunk_text": "Massimo 2 applicazioni/anno ad intervallo di 7-10 giorni a partire dallo stadio di terza foglia"}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_crop_instructions_7", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["melon", "watermelon"], "target_diseases": ["downy mildew"], "chunk_type": "crop_instructions", "chunk_text": "Massimo 2 applicazioni/anno ad intervallo di 7-10 giorni a partire dal primo germoglio visibile"}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_crop_instructions_8", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["lettuce", "spinach", "herbs_fresh"], "target_diseases": ["downy mildew"], "chunk_type": "crop_instructions", "chunk_text": "Massimo 1 applicazione/anno dallo stadio di prima foglia vera"}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_crop_instructions_9", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["tomato"], "target_diseases": ["late blight"], "chunk_type": "crop_instructions", "chunk_text": "Massimo 2 applicazioni/anno ad intervallo di 7-10 giorni dallo stadio di quinta foglia"}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_application_recommendations_2", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["grapevine", "orange", "mandarin", "clementine", "lime", "grapefruit", "tomato"], "target_diseases": ["downy mildew", "phytophthora", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "Adottare quantitativi d’acqua adeguati ad una completa ed omogenea bagnatura della vegetazione trattata, evitando lo sgocciolamento. Le dosi hl sono valide in caso di utilizzo di un volume di acqua:\n- vite: 1000 litri/ha.\n- arancio, mandarino clementino lime pompelmo: 1500 litri/ha\n- pomodoro in serra: 1000 litri/ha\nNel caso di utilizzo di volumi di impiego più bassi (es. bassi volumi), fare riferimento alla dose/ha, utilizzando un volume di acqua non inferiore a 200 l/ha per vite e arancio, mandarino, clementino, lime, pompelmo e 300 l/ha per pomodoro in serra."}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_phytotoxicity_0", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["grapevine", "orange", "mandarin", "clementine", "lime", "grapefruit", "potato", "onion", "broccoli", "cauliflower", "cabbage", "savoy_cabbage", "cucumber", "melon", "watermelon", "lettuce", "spinach", "herbs_fresh", "tomato"], "target_diseases": ["downy mildew", "phytophthora", "late blight"], "chunk_type": "phytotoxicity", "chunk_text": "Fitotossicità: il prodotto è generalmente selettivo per le colture indicate in etichetta; nel caso di varietà poco diffuse o di recente introduzione, si consiglia di effettuare saggi preliminari su superfici ridotte prima di estendere il trattamento ad aree più vaste."}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_compatibility_0", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["grapevine", "orange", "mandarin", "clementine", "lime", "grapefruit", "potato", "onion", "broccoli", "cauliflower", "cabbage", "savoy_cabbage", "cucumber", "melon", "watermelon", "lettuce", "spinach", "herbs_fresh", "tomato"], "target_diseases": ["downy mildew", "phytophthora", "late blight"], "chunk_type": "compatibility", "chunk_text": "In caso di miscela con altri formulati, effettuare preventivamente un test di compatibilità\nAvvertenza: in caso di miscela con altri formulati devono essere osservate le norme precauzionali prescritte per i prodotti più tossici. In caso di miscela con altri formulati devono essere osservati i tempi di carenza più lunghi. Qualora si verificassero casi d’intossicazione informare il medico della miscelazione compiuta."}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_resistance_management_0", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["grapevine", "orange", "mandarin", "clementine", "lime", "grapefruit", "potato", "onion", "broccoli", "cauliflower", "cabbage", "savoy_cabbage", "cucumber", "melon", "watermelon", "lettuce", "spinach", "herbs_fresh", "tomato"], "target_diseases": ["downy mildew", "phytophthora", "late blight"], "chunk_type": "resistance_management", "chunk_text": "Strategia antiresistenza\nRidomil Gold 480 SL contiene la sostanza attiva metalaxil-m che appartiene al gruppo 4 del FRAC.\nIl prodotto deve essere applicato preventivamente e sempre in miscela con fungicidi a diverso meccanismo d’azione per il controllo della peronospora e dell’allupatura.\nPer una corretta difesa fungicida, si raccomanda sempre di seguire le linee guida FRAC specifiche per colture e patogeno."}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_reentry_requirements_3", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["cabbage", "savoy_cabbage", "broccoli", "cauliflower", "grapevine", "orange", "mandarin", "clementine", "lime", "grapefruit", "onion", "potato", "cucumber", "lettuce", "spinach", "herbs_fresh", "melon", "tomato", "watermelon"], "target_diseases": ["downy mildew", "phytophthora", "late blight"], "chunk_type": "reentry_requirements", "chunk_text": "Sospendere i trattamenti prima della raccolta:\nCavolo cappuccio, cavolo verza 30 giorni\nBroccolo, cavolfiore, vite 20 giorni\nArancio, mandarino, clementino, lime, pompelmo, cipolla, patata, cetriolo (in serra) 14 giorni\nLattughe e insalate, spinaci e simili, erbe fersche 10 giorni\nCetriolo (in campo), melone, pomodoro, cocomero 3 giorni"}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_application_recommendations_3", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["grapevine", "orange", "mandarin", "clementine", "lime", "grapefruit", "potato", "onion", "broccoli", "cauliflower", "cabbage", "savoy_cabbage", "cucumber", "melon", "watermelon", "lettuce", "spinach", "herbs_fresh", "tomato"], "target_diseases": ["downy mildew", "phytophthora", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "Non applicare con i mezzi aerei."}
|
||||
{"chunk_id": "ridomil_gold_480_sl_18800_weather_constraints_0", "product_id": "ridomil_gold_480_sl_18800", "product_name": "RIDOMIL GOLD 480 SL", "target_crops": ["grapevine", "orange", "mandarin", "clementine", "lime", "grapefruit", "potato", "onion", "broccoli", "cauliflower", "cabbage", "savoy_cabbage", "cucumber", "melon", "watermelon", "lettuce", "spinach", "herbs_fresh", "tomato"], "target_diseases": ["downy mildew", "phytophthora", "late blight"], "chunk_type": "weather_constraints", "chunk_text": "Operare in assenza di vento."}
|
||||
20
data/chunks/riviera_r_wg_17023.jsonl
Normal file
20
data/chunks/riviera_r_wg_17023.jsonl
Normal file
@ -0,0 +1,20 @@
|
||||
{"chunk_id": "riviera_r_wg_17023_environmental_restrictions_0", "product_id": "riviera_r_wg_17023", "product_name": "RIVIERA R WG", "target_crops": ["grapevine", "tomato", "eggplant", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "potato", "lettuce", "valerianella", "escarole", "chicory", "rocket"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "environmental_restrictions", "chunk_text": "Al fine di ridurre al minimo il potenziale accumulo nel suolo e l'esposizione per gli organismi non bersaglio, tenendo conto al contempo delle condizioni agroclimatiche, non superare l'applicazione cumulativa di 28 kg di rame per ettaro nell'arco di 7 anni. Si raccomanda di rispettare il quantitativo applicato medio di 4 kg di rame per ettaro all'anno."}
|
||||
{"chunk_id": "riviera_r_wg_17023_buffer_zones_0", "product_id": "riviera_r_wg_17023", "product_name": "RIVIERA R WG", "target_crops": ["tomato", "eggplant", "cucumber", "gherkin", "zucchini", "potato", "grapevine", "lettuce"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "buffer_zones", "chunk_text": "In caso di trattamenti su pomodoro, melanzana, cetriolo, cetriolino, zucchino, patata, vite, lattughe e altre insalate comprese le brassicacee per proteggere gli organismi acquatici rispettare una fascia di sicurezza vegetata non trattata di 10 metri da corpi idrici superficiali."}
|
||||
{"chunk_id": "riviera_r_wg_17023_ppe_requirements_0", "product_id": "riviera_r_wg_17023", "product_name": "RIVIERA R WG", "target_crops": ["grapevine", "tomato", "eggplant", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "potato", "lettuce", "valerianella", "escarole", "chicory", "rocket"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "ppe_requirements", "chunk_text": "Durante la manipolazione del concentrato, nelle fasi di miscelazione e carico del prodotto, usare guanti e tuta protettivi. Sostituire guanti e tuta protettiva e indossarne di nuovi nella fase di applicazione. Al momento della raccolta rientrare nell’area trattata indossando guanti e tuta protettiva."}
|
||||
{"chunk_id": "riviera_r_wg_17023_reentry_requirements_0", "product_id": "riviera_r_wg_17023", "product_name": "RIVIERA R WG", "target_crops": ["grapevine", "tomato", "eggplant", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "potato", "lettuce", "valerianella", "escarole", "chicory", "rocket"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "reentry_requirements", "chunk_text": "Non rientrare nell’area trattata prima che la vegetazione risulti completamente asciutta e non prima che siano trascorse 24 ore dall’ultimo trattamento."}
|
||||
{"chunk_id": "riviera_r_wg_17023_resistance_management_0", "product_id": "riviera_r_wg_17023", "product_name": "RIVIERA R WG", "target_crops": ["grapevine", "potato", "tomato", "eggplant", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "lettuce", "valerianella", "escarole", "chicory", "rocket"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "resistance_management", "chunk_text": "Fungicida citotropico e di contatto contro la peronospora di vite, patata e orticole. MECCANISMO D’AZIONE: Gruppi 40 e M1 (FRAC). Fungicida di contatto e citotropico a sistemia locale. Il prodotto contiene principi attivi con differente meccanismo d’azione: il dimetomorf interferisce con i processi biochimici di formazione della parete cellulare del fungo mentre il rame agisce per contatto con azione multi-sito."}
|
||||
{"chunk_id": "riviera_r_wg_17023_application_recommendations_0", "product_id": "riviera_r_wg_17023", "product_name": "RIVIERA R WG", "target_crops": ["grapevine", "tomato", "eggplant", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "potato", "lettuce", "valerianella", "escarole", "chicory", "rocket"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "Il prodotto si impiega con volumi d’acqua di 500-1000 l/ha distribuiti con pompe a volume normale alle seguenti dosi."}
|
||||
{"chunk_id": "riviera_r_wg_17023_dosage_instructions_0", "product_id": "riviera_r_wg_17023", "product_name": "RIVIERA R WG", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "VITE (DA VINO E DA TAVOLA): 250 - 350 g/hl (senza superare 3,5 kg/ha) contro Peronospora (Plasmopara viticola) intervenire ogni 7-14 giorni a partire dalla prima pioggia infettante. Effettuare al massimo 4 trattamenti per anno."}
|
||||
{"chunk_id": "riviera_r_wg_17023_dosage_instructions_1", "product_id": "riviera_r_wg_17023", "product_name": "RIVIERA R WG", "target_crops": ["tomato", "eggplant"], "target_diseases": ["late blight"], "chunk_type": "dosage_instructions", "chunk_text": "POMODORO E MELANZANA (pieno campo e in serra): 250 - 350 g/hl (senza superare 3,5 kg/ha) contro Peronospora (Phytophthora infestans) intervenire ogni 7-14 giorni, iniziando dal momento in cui si verificano le condizioni ottimali per lo sviluppo della malattia. Effettuare al massimo 3 trattamenti per anno."}
|
||||
{"chunk_id": "riviera_r_wg_17023_dosage_instructions_2", "product_id": "riviera_r_wg_17023", "product_name": "RIVIERA R WG", "target_crops": ["cucumber", "gherkin", "zucchini"], "target_diseases": ["downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "CETRIOLO, CETRIOLINO E ZUCCHINO (pieno campo e in serra): 300 - 350 g/hl (senza superare 3,5 kg/ha) contro Peronospora (Pseudoperonospora cubensis) intervenire ogni 7-14 giorni, iniziando dal momento in cui si verificano le condizioni ottimali per lo sviluppo della malattia. Effettuare al massimo 2 trattamenti per anno."}
|
||||
{"chunk_id": "riviera_r_wg_17023_dosage_instructions_3", "product_id": "riviera_r_wg_17023", "product_name": "RIVIERA R WG", "target_crops": ["melon", "watermelon", "pumpkin"], "target_diseases": ["downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "MELONE, COCOMERO, ZUCCA (pieno campo): 300 - 350 g/hl (senza superare 3,5 kg/ha) contro Peronospora (Pseudoperonospora cubensis) intervenire ogni 7-14 giorni, iniziando dal momento in cui si verificano le condizioni ottimali per lo sviluppo della malattia. Effettuare al massimo 2 trattamenti per anno."}
|
||||
{"chunk_id": "riviera_r_wg_17023_dosage_instructions_4", "product_id": "riviera_r_wg_17023", "product_name": "RIVIERA R WG", "target_crops": ["potato"], "target_diseases": ["late blight"], "chunk_type": "dosage_instructions", "chunk_text": "PATATA: 2,5 - 3,5 kg/ha contro Peronospora (Phytophthora infestans) intervenire ogni 7-14 giorni, iniziando dal momento in cui si verificano le condizioni ottimali per lo sviluppo della malattia. Effettuare al massimo 4 trattamenti per anno."}
|
||||
{"chunk_id": "riviera_r_wg_17023_dosage_instructions_5", "product_id": "riviera_r_wg_17023", "product_name": "RIVIERA R WG", "target_crops": ["lettuce", "valerianella", "escarole", "chicory", "rocket"], "target_diseases": ["downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "LATTUGHE E INSALATE (pieno campo): Dolcetta/valerianella/gallinella, lattughe (lattughe iceberg/lollo bionde/lollo rosse, lattughe da taglio/lattughine, lattughe a cappuccio ricce/lattughe Batavia, lattughe romane), scarola/indivia a foglie larghe (indivie ricce/scarole, denti di leone/tarassachi, cicorie comuni/puntarelle, radicchi/cicorie a foglie rosse, cicorie pan di zucchero, cicorie selvatiche/cicorie comuni), rucola, prodotti baby leaf (comprese le brassicacee): 2,5 - 3,5 kg/ha contro Peronospore intervenire ogni 7-14 giorni, iniziando dal momento in cui si verificano le condizioni ottimali per lo sviluppo della malattia. Effettuare al massimo 2 trattamenti per anno."}
|
||||
{"chunk_id": "riviera_r_wg_17023_compatibility_0", "product_id": "riviera_r_wg_17023", "product_name": "RIVIERA R WG", "target_crops": ["grapevine", "tomato", "eggplant", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "potato", "lettuce", "valerianella", "escarole", "chicory", "rocket"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "compatibility", "chunk_text": "AVVERTENZA: in caso di miscela con altri formulati deve essere rispettato il periodo di carenza più lungo. Devono inoltre essere osservate le norme precauzionali prescritte per i prodotti più tossici. In caso di intossicazione, informare il medico della miscelazione compiuta."}
|
||||
{"chunk_id": "riviera_r_wg_17023_resistance_management_1", "product_id": "riviera_r_wg_17023", "product_name": "RIVIERA R WG", "target_crops": ["grapevine", "tomato", "eggplant", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "potato", "lettuce", "valerianella", "escarole", "chicory", "rocket"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "resistance_management", "chunk_text": "Per evitare l’insorgere di fenomeni di resistenza si raccomanda di impiegare il prodotto ai dosaggi riportati in etichetta in un programma di difesa che contempli prodotti aventi differente meccanismo di azione."}
|
||||
{"chunk_id": "riviera_r_wg_17023_application_recommendations_1", "product_id": "riviera_r_wg_17023", "product_name": "RIVIERA R WG", "target_crops": ["grapevine", "tomato", "eggplant", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "potato", "lettuce", "valerianella", "escarole", "chicory", "rocket"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "PREPARAZIONE DELLA POLTIGLIA: diluire il prodotto in poca acqua, quindi portare la botte a volume."}
|
||||
{"chunk_id": "riviera_r_wg_17023_reentry_requirements_1", "product_id": "riviera_r_wg_17023", "product_name": "RIVIERA R WG", "target_crops": ["cucumber", "gherkin", "zucchini", "tomato", "eggplant", "melon", "watermelon", "pumpkin", "lettuce", "potato", "grapevine"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "reentry_requirements", "chunk_text": "Sospendere i trattamenti 3 giorni prima della raccolta per cetriolo, cetriolino; 7 giorni prima della raccolta per zucchino, pomodoro, melanzana, melone, cocomero, zucca, lattughe e insalate; 14 giorni per patata, 28 giorni per vite."}
|
||||
{"chunk_id": "riviera_r_wg_17023_phytotoxicity_0", "product_id": "riviera_r_wg_17023", "product_name": "RIVIERA R WG", "target_crops": ["melon"], "target_diseases": ["downy mildew"], "chunk_type": "phytotoxicity", "chunk_text": "ATTENZIONE: può essere leggermente fitotossico su alcune varietà di melone. E’ consigliato effettuare dei test preliminari"}
|
||||
{"chunk_id": "riviera_r_wg_17023_application_recommendations_2", "product_id": "riviera_r_wg_17023", "product_name": "RIVIERA R WG", "target_crops": ["grapevine", "tomato", "eggplant", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "potato", "lettuce", "valerianella", "escarole", "chicory", "rocket"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "NON APPLICARE CON I MEZZI AEREI."}
|
||||
{"chunk_id": "riviera_r_wg_17023_weather_constraints_0", "product_id": "riviera_r_wg_17023", "product_name": "RIVIERA R WG", "target_crops": ["grapevine", "tomato", "eggplant", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "potato", "lettuce", "valerianella", "escarole", "chicory", "rocket"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "weather_constraints", "chunk_text": "OPERARE IN ASSENZA DI VENTO."}
|
||||
{"chunk_id": "riviera_r_wg_17023_application_recommendations_3", "product_id": "riviera_r_wg_17023", "product_name": "RIVIERA R WG", "target_crops": ["grapevine", "tomato", "eggplant", "cucumber", "gherkin", "zucchini", "melon", "watermelon", "pumpkin", "potato", "lettuce", "valerianella", "escarole", "chicory", "rocket"], "target_diseases": ["downy mildew", "late blight"], "chunk_type": "application_recommendations", "chunk_text": "Conservare a temperature non superiori a 40°C."}
|
||||
26
data/chunks/soriale_18767.jsonl
Normal file
26
data/chunks/soriale_18767.jsonl
Normal file
@ -0,0 +1,26 @@
|
||||
{"chunk_id": "soriale_18767_reentry_requirements_0", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["apple", "pear", "grapevine", "chestnut", "walnut", "hazelnut", "almond", "pistachio", "persimmon", "pomegranate"], "target_diseases": [], "chunk_type": "reentry_requirements", "chunk_text": "Non rientrare nell’area trattata prima che la vegetazione sia completamente asciutta."}
|
||||
{"chunk_id": "soriale_18767_buffer_zones_0", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["chestnut", "walnut", "hazelnut", "almond", "pistachio"], "target_diseases": [], "chunk_type": "buffer_zones", "chunk_text": "Nel caso di castagno, noce, nocciolo, mandorlo e pistacchio per proteggere gli organismi acquatici rispettare una fascia di sicurezza non trattata e vegetata di 10 metri dalle acque superficiali."}
|
||||
{"chunk_id": "soriale_18767_application_recommendations_0", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["apple", "pear", "grapevine", "chestnut", "walnut", "hazelnut", "almond", "pistachio", "persimmon", "pomegranate"], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "SORIALE é un fungicida sistemico, il suo principio attivo é caratterizzato da una notevole mobilità nelle piante e la sua sistemicità si manifesta sia in modo ascendente sia in modo discendente. L’attività del formulato é più evidente in presenza di vegetazione giovane ed in attiva crescita."}
|
||||
{"chunk_id": "soriale_18767_dosage_instructions_0", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["apple", "pear"], "target_diseases": ["scab", "brown spot", "alternaria"], "chunk_type": "dosage_instructions", "chunk_text": "MELO e PERO: contro Ticchiolatura (Venturia inaequalis e Venturia pirina), Maculatura bruna (Stemphylium vesicarium) ed Alternaria (Alternaria spp.) intervenire preventivamente alla dose di 1.9 l/ha esclusivamente in miscela con un altro fungicida a diverso meccanismo d’azione, rispettando un intervallo tra i trattamenti di 5-10 giorni."}
|
||||
{"chunk_id": "soriale_18767_crop_instructions_0", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["apple", "pear"], "target_diseases": ["scab", "brown spot", "alternaria"], "chunk_type": "crop_instructions", "chunk_text": "Impiegare il prodotto dalla rottura gemme a inizio maturazione."}
|
||||
{"chunk_id": "soriale_18767_resistance_management_0", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["apple", "pear"], "target_diseases": ["scab", "brown spot", "alternaria"], "chunk_type": "resistance_management", "chunk_text": "Non effettuare più di 6 trattamenti all’anno."}
|
||||
{"chunk_id": "soriale_18767_dosage_instructions_1", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "VITE: contro Peronospora (Plasmopara viticola) in trattamenti preventivi alla dose di 2-4 L/ha (200 -400 ml/hl). Modulare l'intervallo di trattamento in funzione delle condizioni climatiche e della pressione della malattia. Intervallo minimo: 10 giorni. Si consiglia l’uso di SORIALE nell’ambito di un programma di trattamenti che preveda l’utilizzo di fungicidi di contatto, come per esempio ftalimidi, carbammati o prodotti a base di rame. In tal caso si consiglia di impiegare la dose di 2-3 L/ha in funzione del fungicida impiegato in miscela e delle condizioni di pressione della malattia. In ogni caso non superare la dose massima di 4 l/ha, dose consigliata se si utilizza il prodotto da solo o in condizioni di elevata pressione."}
|
||||
{"chunk_id": "soriale_18767_crop_instructions_1", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "crop_instructions", "chunk_text": "Impiegare preferibilmente il prodotto dalla ripresa vegetativa alla pre-chiusura grappolo."}
|
||||
{"chunk_id": "soriale_18767_resistance_management_1", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "resistance_management", "chunk_text": "Non effettuare più di 5 trattamenti all’anno."}
|
||||
{"chunk_id": "soriale_18767_application_recommendations_1", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "application_recommendations", "chunk_text": "Le dosi sopra riportate si riferiscono all’utilizzo di Volumi Normali (VN) di irrorazione (es. vite: 1000 L/ha). In caso di volumi diversi, rispettare le dosi ad ettaro. Nel caso di trattamenti nelle prime fasi di sviluppo o in allevamento ove, per una corretta bagnatura della vegetazione, sia sufficiente una minore quantità d'acqua rispetto ai Volumi Normali sopraindicati (es. vite fino alla fase di pre-fioritura), è possibile fare riferimento alla sola dose di 300-400 millilitri per ettolitro, avendo comunque cura di non superare la dose massima ad ettaro."}
|
||||
{"chunk_id": "soriale_18767_dosage_instructions_2", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["chestnut", "walnut", "hazelnut"], "target_diseases": ["phytophthora", "anthracnose", "alternaria", "walnut blight"], "chunk_type": "dosage_instructions", "chunk_text": "CASTAGNO, NOCE e NOCCIOLO: contro mal dell’inchiostro (Phytophthora spp), antracnosi (Colletotrichum spp, Gnomonia leptostyla), alternariosi (Alternaria spp) e mal secco del noce (Xanthomonas arboricola pv juglandis), intervenire preventivamente alla dose di 4.0 l/ha, rispettando un intervallo tra i trattamenti di 5 giorni."}
|
||||
{"chunk_id": "soriale_18767_crop_instructions_2", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["chestnut", "walnut", "hazelnut"], "target_diseases": ["phytophthora", "anthracnose", "alternaria", "walnut blight"], "chunk_type": "crop_instructions", "chunk_text": "Impiegare il prodotto dallo stadio fenologico di rottura gemme fino a quello di maturazione frutti. Contro antracnosi e mal secco, non effettuare più di 4 trattamenti tra lo stadio di rottura gemme e quello di fine fioritura. Contro il mal dell’inchiostro, effettuare i primi 2 trattamenti tra lo stadio di fine fioritura e la prima cascola dei frutti e gli ultimi 2 durante il periodo in cui i frutti assumono la loro colorazione tipica."}
|
||||
{"chunk_id": "soriale_18767_resistance_management_2", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["chestnut", "walnut", "hazelnut"], "target_diseases": ["anthracnose", "alternaria", "walnut blight", "phytophthora"], "chunk_type": "resistance_management", "chunk_text": "Non effettuare più di 6 trattamenti all’anno contro antracnosi, alternariosi e mal secco e non più di 4 all’anno contro mal dell’inchiostro."}
|
||||
{"chunk_id": "soriale_18767_dosage_instructions_3", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["almond", "pistachio"], "target_diseases": ["phytophthora", "alternaria", "pistachio branch canker"], "chunk_type": "dosage_instructions", "chunk_text": "MANDORLO e PISTACCHIO: contro marciumi radicali e del colletto e cancri (Phytophthora spp), alternariosi (Alternaria spp) e cancro rameale del pistacchio (Botryosphaeria dothidea), intervenire preventivamente alla dose di 4.0 l/ha, rispettando un intervallo tra i trattamenti di 5 giorni."}
|
||||
{"chunk_id": "soriale_18767_crop_instructions_3", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["almond", "pistachio"], "target_diseases": ["phytophthora", "alternaria", "pistachio branch canker"], "chunk_type": "crop_instructions", "chunk_text": "Impiegare il prodotto dallo stadio di rottura gemme fino a quello di maturazione frutti."}
|
||||
{"chunk_id": "soriale_18767_resistance_management_3", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["almond", "pistachio"], "target_diseases": ["phytophthora", "alternaria", "pistachio branch canker"], "chunk_type": "resistance_management", "chunk_text": "Non effettuare più di 6 trattamenti all’anno."}
|
||||
{"chunk_id": "soriale_18767_dosage_instructions_4", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["persimmon"], "target_diseases": ["alternaria"], "chunk_type": "dosage_instructions", "chunk_text": "KAKI: contro alternariosi (Alternaria spp), intervenire preventivamente alla dose di 4.0 l/ha, rispettando un intervallo tra i trattamenti di 5 giorni."}
|
||||
{"chunk_id": "soriale_18767_crop_instructions_4", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["persimmon"], "target_diseases": ["alternaria"], "chunk_type": "crop_instructions", "chunk_text": "Impiegare il prodotto a partire dalla schiusura delle gemme fiorali fino alla maturazione di raccolta dei frutti."}
|
||||
{"chunk_id": "soriale_18767_resistance_management_4", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["persimmon"], "target_diseases": ["alternaria"], "chunk_type": "resistance_management", "chunk_text": "Non effettuare più di 4 trattamenti all’anno."}
|
||||
{"chunk_id": "soriale_18767_dosage_instructions_5", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["pomegranate"], "target_diseases": ["phytophthora", "alternaria", "botrytis (grey mould)"], "chunk_type": "dosage_instructions", "chunk_text": "MELOGRANO: contro marciumi radicali e del colletto (Phytophthora spp), cuore nero del frutto (Alternaria spp) e muffa grigia (Botrytis cinerea), intervenire preventivamente alla dose di 2.4 l/ha, rispettando un intervallo minimo tra i trattamenti di 5 giorni."}
|
||||
{"chunk_id": "soriale_18767_crop_instructions_5", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["pomegranate"], "target_diseases": ["phytophthora", "alternaria", "botrytis (grey mould)"], "chunk_type": "crop_instructions", "chunk_text": "Impiegare il prodotto dallo stadio di inizio fioritura fino a quando i frutti hanno una dimensione pari a circa la metà di quella finale."}
|
||||
{"chunk_id": "soriale_18767_resistance_management_5", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["pomegranate"], "target_diseases": ["phytophthora", "alternaria", "botrytis (grey mould)"], "chunk_type": "resistance_management", "chunk_text": "Non effettuare più di 3 trattamenti all’anno."}
|
||||
{"chunk_id": "soriale_18767_compatibility_0", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["apple", "pear", "grapevine", "chestnut", "walnut", "hazelnut", "almond", "pistachio", "persimmon", "pomegranate"], "target_diseases": [], "chunk_type": "compatibility", "chunk_text": "COMPATIBILITÀ\nIn caso di miscela con altri formulati si raccomanda di fare saggi preliminari di miscibilità e fitotossicità. Il prodotto non é compatibile con concimi fogliari contenenti azoto (nitrico ed ammoniacale). Non effettuare miscele con formulati oleosi e non irrorare il prodotto su colture precedentemente trattate con formulati oleosi perchè ostacolerebbero la penetrazione del prodotto nella pianta.\nAVVERTENZA: in caso di miscela con altri formulati deve essere rispettato il periodo di carenza più lungo. Devono essere inoltre osservate le norme precauzionali prescritte per i prodotti più tossici; qualora si verificassero casi di intossicazione informare il medico della miscelazione compiuta."}
|
||||
{"chunk_id": "soriale_18767_reentry_requirements_1", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["persimmon", "grapevine", "chestnut", "walnut", "hazelnut", "almond", "pistachio", "apple", "pear", "pomegranate"], "target_diseases": [], "chunk_type": "reentry_requirements", "chunk_text": "SOSPENDERE I TRATTAMENTI 7 GIORNI PRIMA DELLA RACCOLTA PER KAKI; 14 GIORNI PRIMA DELLA RACCOLTA PER LA VITE; 21 GIORNI PRIMA DELLA RACCOLTA PER IL CASTAGNO, NOCE, NOCCIOLO, MANDORLO E PISTACCHIO; 35 GIORNI PRIMA DELLA RACCOLTA PER LE POMACEE E 70 GIORNI PRIMA DELLA RACCOLTA PER IL MELOGRANO."}
|
||||
{"chunk_id": "soriale_18767_application_recommendations_2", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["apple", "pear", "grapevine", "chestnut", "walnut", "hazelnut", "almond", "pistachio", "persimmon", "pomegranate"], "target_diseases": [], "chunk_type": "application_recommendations", "chunk_text": "Non applicare con mezzi aerei."}
|
||||
{"chunk_id": "soriale_18767_weather_constraints_0", "product_id": "soriale_18767", "product_name": "SORIALE", "target_crops": ["apple", "pear", "grapevine", "chestnut", "walnut", "hazelnut", "almond", "pistachio", "persimmon", "pomegranate"], "target_diseases": [], "chunk_type": "weather_constraints", "chunk_text": "Operare in assenza di vento."}
|
||||
13
data/chunks/tepeta_combi_flow_6834.jsonl
Normal file
13
data/chunks/tepeta_combi_flow_6834.jsonl
Normal file
@ -0,0 +1,13 @@
|
||||
{"chunk_id": "tepeta_combi_flow_6834_ppe_requirements_0", "product_id": "tepeta_combi_flow_6834", "product_name": "TEPETA COMBI FLOW", "target_crops": ["grapevine", "tomato"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew", "black rot", "botrytis (grey mould)", "late blight", "alternaria", "cladosporium", "septoria leaf blotch"], "chunk_type": "ppe_requirements", "chunk_text": "Indossare guanti e indumenti protettivi. Proteggere gli occhi e il viso"}
|
||||
{"chunk_id": "tepeta_combi_flow_6834_buffer_zones_0", "product_id": "tepeta_combi_flow_6834", "product_name": "TEPETA COMBI FLOW", "target_crops": ["grapevine", "tomato"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew", "black rot", "botrytis (grey mould)", "late blight", "alternaria", "cladosporium", "septoria leaf blotch"], "chunk_type": "buffer_zones", "chunk_text": "Per proteggere gli organismi acquatici rispettare una fascia di sicurezza non trattata di 5 metri dalle acque superficiali."}
|
||||
{"chunk_id": "tepeta_combi_flow_6834_crop_instructions_0", "product_id": "tepeta_combi_flow_6834", "product_name": "TEPETA COMBI FLOW", "target_crops": ["grapevine", "tomato"], "target_diseases": ["downy mildew", "phomopsis (dead-arm)", "black rot", "botrytis (grey mould)"], "chunk_type": "crop_instructions", "chunk_text": "TEPETA COMBI FLOW è un fungicida cupro-organico a prevalente attività antiperonosporica che, grazie alla complementarità tra rame e folpet, è attivo anche su Escoriosi e Marciume Nero della vite, su Botrite (azione collaterale di contenimento) di vite e orticole e su numerose altre malattie di pomodoro."}
|
||||
{"chunk_id": "tepeta_combi_flow_6834_environmental_restrictions_0", "product_id": "tepeta_combi_flow_6834", "product_name": "TEPETA COMBI FLOW", "target_crops": ["grapevine", "tomato"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew", "black rot", "botrytis (grey mould)", "late blight", "alternaria", "cladosporium", "septoria leaf blotch"], "chunk_type": "environmental_restrictions", "chunk_text": "Al fine di ridurre al minimo il potenziale accumulo nel suolo e l'esposizione per gli organismi non bersaglio, tenendo conto al contempo delle condizioni agroclimatiche, non superare l'applicazione cumulativa di 28 kg di rame per ettaro nell'arco di 7 anni. Si raccomanda di rispettare il quantitativo applicato medio di 4 kg di rame per ettaro all'anno."}
|
||||
{"chunk_id": "tepeta_combi_flow_6834_dosage_instructions_0", "product_id": "tepeta_combi_flow_6834", "product_name": "TEPETA COMBI FLOW", "target_crops": ["grapevine"], "target_diseases": ["phomopsis (dead-arm)"], "chunk_type": "dosage_instructions", "chunk_text": "VITE (uva da Vino): contro Escoriosi (Phomopsis viticola) 1-2 trattamenti precoci a 10 giorni di intervallo alla ripresa vegetativa e alla comparsa delle prime foglie aperte alla dose di 2,4 l/ha (300 ml/hl con un volume di trattamento normale di 800 l/ha di acqua)."}
|
||||
{"chunk_id": "tepeta_combi_flow_6834_dosage_instructions_1", "product_id": "tepeta_combi_flow_6834", "product_name": "TEPETA COMBI FLOW", "target_crops": ["grapevine"], "target_diseases": ["downy mildew", "black rot", "botrytis (grey mould)"], "chunk_type": "dosage_instructions", "chunk_text": "VITE (uva da Vino): Contro la Peronospora (Plasmopara viticola), Marciume nero (Guignardia bidwellii) con azione collaterale antibotritica (Botrytis cinerea) alla dose di 2 l/ha (200 ml/hl con un volume di trattamento normale di 1000 l/ha di acqua). Trattare in funzione preventiva a partire da quando si verificano le condizioni favorevoli allo sviluppo della malattia con massimo 5 trattamenti ogni 7-10 giorni."}
|
||||
{"chunk_id": "tepeta_combi_flow_6834_dosage_instructions_2", "product_id": "tepeta_combi_flow_6834", "product_name": "TEPETA COMBI FLOW", "target_crops": ["tomato"], "target_diseases": ["late blight", "alternaria", "cladosporium", "septoria leaf blotch", "botrytis (grey mould)"], "chunk_type": "dosage_instructions", "chunk_text": "POMODORO (campo e serra): contro Peronospora (Phytophthora infestans), Alternaria (Alternaria spp.), Cladosporiosi (Cladosporium spp.), Septoria (Septoria spp.), Botrite (Botrytis cinerea): 2 l/ha (250 ml/hl con un volume di trattamento normale di 800 l/ha di acqua). Trattare in funzione preventiva a partire da quando si verificano le condizioni favorevoli allo sviluppo della malattia con massimo 5 trattamenti ogni 7-10 giorni."}
|
||||
{"chunk_id": "tepeta_combi_flow_6834_application_recommendations_0", "product_id": "tepeta_combi_flow_6834", "product_name": "TEPETA COMBI FLOW", "target_crops": ["grapevine", "tomato"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew", "black rot", "botrytis (grey mould)", "late blight", "alternaria", "cladosporium", "septoria leaf blotch"], "chunk_type": "application_recommendations", "chunk_text": "In tutti i casi, qualora si adottino volumi di trattamento diversi da quelli normali, rispettare la dose per ettaro indicata per le rispettive colture e malattie."}
|
||||
{"chunk_id": "tepeta_combi_flow_6834_compatibility_0", "product_id": "tepeta_combi_flow_6834", "product_name": "TEPETA COMBI FLOW", "target_crops": ["grapevine", "tomato"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew", "black rot", "botrytis (grey mould)", "late blight", "alternaria", "cladosporium", "septoria leaf blotch"], "chunk_type": "compatibility", "chunk_text": "Il TEPETA COMBI FLOW è miscibile con i prodotti fitosanitari a reazione neutra o debolmente acida. Non è miscibile con formulati alcalini (es. poltiglia bordolese e polisolfuri) e con gli olii. Il trattamento con TEPETA COMBI FLOW deve essere distanziato di almeno 20 giorni da una applicazione con olii minerali.\nAvvertenza: in caso di miscela con altri formulati deve essere rispettato il periodo di carenza più lungo. Devono inoltre essere osservate le norme precauzionali prescritte per i prodotti più tossici. Qualora si verificassero casi di intossicazione informare il medico della miscelazione compiuta."}
|
||||
{"chunk_id": "tepeta_combi_flow_6834_phenology_constraints_0", "product_id": "tepeta_combi_flow_6834", "product_name": "TEPETA COMBI FLOW", "target_crops": ["grapevine", "tomato"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew", "black rot", "botrytis (grey mould)", "late blight", "alternaria", "cladosporium", "septoria leaf blotch"], "chunk_type": "phenology_constraints", "chunk_text": "Non si deve trattare durante la fioritura."}
|
||||
{"chunk_id": "tepeta_combi_flow_6834_reentry_requirements_0", "product_id": "tepeta_combi_flow_6834", "product_name": "TEPETA COMBI FLOW", "target_crops": ["grapevine", "tomato"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew", "black rot", "botrytis (grey mould)", "late blight", "alternaria", "cladosporium", "septoria leaf blotch"], "chunk_type": "reentry_requirements", "chunk_text": "INTERVALLO DI SICUREZZA: sulle uve da vino sospendere i trattamenti 28 giorni prima della vendemmia e su pomodoro 7 gg prima della raccolta."}
|
||||
{"chunk_id": "tepeta_combi_flow_6834_application_recommendations_1", "product_id": "tepeta_combi_flow_6834", "product_name": "TEPETA COMBI FLOW", "target_crops": ["grapevine", "tomato"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew", "black rot", "botrytis (grey mould)", "late blight", "alternaria", "cladosporium", "septoria leaf blotch"], "chunk_type": "application_recommendations", "chunk_text": "NON APPLICARE CON I MEZZI AEREI."}
|
||||
{"chunk_id": "tepeta_combi_flow_6834_weather_constraints_0", "product_id": "tepeta_combi_flow_6834", "product_name": "TEPETA COMBI FLOW", "target_crops": ["grapevine", "tomato"], "target_diseases": ["phomopsis (dead-arm)", "downy mildew", "black rot", "botrytis (grey mould)", "late blight", "alternaria", "cladosporium", "septoria leaf blotch"], "chunk_type": "weather_constraints", "chunk_text": "OPERARE IN ASSENZA DI VENTO."}
|
||||
13
data/chunks/vitipec_r_wdg_16394.jsonl
Normal file
13
data/chunks/vitipec_r_wdg_16394.jsonl
Normal file
@ -0,0 +1,13 @@
|
||||
{"chunk_id": "vitipec_r_wdg_16394_reentry_requirements_0", "product_id": "vitipec_r_wdg_16394", "product_name": "VITIPEC R WDG", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "reentry_requirements", "chunk_text": "Non rientrare nelle zone trattate prima che la vegetazione sia completamente asciutta."}
|
||||
{"chunk_id": "vitipec_r_wdg_16394_environmental_restrictions_0", "product_id": "vitipec_r_wdg_16394", "product_name": "VITIPEC R WDG", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "environmental_restrictions", "chunk_text": "Non contaminare l’acqua con il prodotto o il suo contenitore. Non pulire il materiale d’applicazione in prossimità delle acque di superficie. Evitare la contaminazione attraverso i sistemi di scolo delle acque dalle aziende agricole e dalle strade."}
|
||||
{"chunk_id": "vitipec_r_wdg_16394_ppe_requirements_0", "product_id": "vitipec_r_wdg_16394", "product_name": "VITIPEC R WDG", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "ppe_requirements", "chunk_text": "Durante le operazioni di miscelazione/caricamento e applicazione del prodotto e durante qualsiasi attività di rientro in campo indossare sempre abbigliamento da lavoro. Date le proprietà irritanti per gli occhi, durante la manipolazione del concentrato indossare una visiera. Inoltre, durante le operazioni di miscelazione/caricamento indossare guanti protettivi. Durante l’applicazione del prodotto con trattore indossare calzari, maschera, copricapo e guanti; in caso di applicazione con trattore cabinato è sufficiente indossare guanti protettivi. Durante le attività di mantenimento/raccolta in campo indossare guanti protettivi."}
|
||||
{"chunk_id": "vitipec_r_wdg_16394_buffer_zones_0", "product_id": "vitipec_r_wdg_16394", "product_name": "VITIPEC R WDG", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "buffer_zones", "chunk_text": "Per proteggere gli organismi acquatici rispettare una fascia di sicurezza vegetata non trattata di 5 metri da corpi idrici superficiali per applicazioni precoci su vite e una fascia di sicurezza vegetata non trattata di 10 metri da corpi idrici superficiali per applicazioni tardive."}
|
||||
{"chunk_id": "vitipec_r_wdg_16394_environmental_restrictions_1", "product_id": "vitipec_r_wdg_16394", "product_name": "VITIPEC R WDG", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "environmental_restrictions", "chunk_text": "Al fine di ridurre al minimo il potenziale di accumulo nel suolo e l'esposizione per gli organismi non bersaglio, tenendo conto al contempo delle condizioni agro-climatiche, non superare l'applicazione cumulativa di 28 kg di rame per ettaro nell'arco di 7 anni. Si raccomanda di rispettare il quantitativo medio applicato di 4 kg di rame per ettaro all'anno"}
|
||||
{"chunk_id": "vitipec_r_wdg_16394_application_recommendations_0", "product_id": "vitipec_r_wdg_16394", "product_name": "VITIPEC R WDG", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "application_recommendations", "chunk_text": "Le dosi indicate si riferiscono a trattamenti con attrezzature a volume normale. Nel caso di trattamenti a volume ridotto le dosi vanno opportunamente modificate, in modo da somministrare il medesimo quantitativo di prodotto per unità di superficie."}
|
||||
{"chunk_id": "vitipec_r_wdg_16394_dosage_instructions_0", "product_id": "vitipec_r_wdg_16394", "product_name": "VITIPEC R WDG", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "dosage_instructions", "chunk_text": "Vite: contro Peronospora alla dose di 300-600 g/hL; proseguire gli interventi a cadenza di 12 giorni, secondo la necessità, fino ad un massimo di 3 applicazioni all’anno."}
|
||||
{"chunk_id": "vitipec_r_wdg_16394_crop_instructions_0", "product_id": "vitipec_r_wdg_16394", "product_name": "VITIPEC R WDG", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "crop_instructions", "chunk_text": "Vite: iniziare gli interventi quando la coltura ha raggiunto lo stadio vegetativo in cui inizia il pericolo di infezioni."}
|
||||
{"chunk_id": "vitipec_r_wdg_16394_compatibility_0", "product_id": "vitipec_r_wdg_16394", "product_name": "VITIPEC R WDG", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "compatibility", "chunk_text": "Il prodotto è compatibile con tutti i prodotti a reazione neutra o acida, è sconsigliato l'impiego con prodotti a reazione alcalina."}
|
||||
{"chunk_id": "vitipec_r_wdg_16394_resistance_management_0", "product_id": "vitipec_r_wdg_16394", "product_name": "VITIPEC R WDG", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "resistance_management", "chunk_text": "Per evitare l’insorgere di fenomeni di resistenza attenersi alle indicazioni riportate in etichetta e alternare VITIPEC R WDG ad altri fungicidi. Non effettuare più di 3 applicazioni per anno."}
|
||||
{"chunk_id": "vitipec_r_wdg_16394_reentry_requirements_1", "product_id": "vitipec_r_wdg_16394", "product_name": "VITIPEC R WDG", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "reentry_requirements", "chunk_text": "Sospendere i trattamenti 66 giorni prima della raccolta per la Vite."}
|
||||
{"chunk_id": "vitipec_r_wdg_16394_application_recommendations_1", "product_id": "vitipec_r_wdg_16394", "product_name": "VITIPEC R WDG", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "application_recommendations", "chunk_text": "NON APPLICARE CON I MEZZI AEREI."}
|
||||
{"chunk_id": "vitipec_r_wdg_16394_weather_constraints_0", "product_id": "vitipec_r_wdg_16394", "product_name": "VITIPEC R WDG", "target_crops": ["grapevine"], "target_diseases": ["downy mildew"], "chunk_type": "weather_constraints", "chunk_text": "OPERARE IN ASSENZA DI VENTO."}
|
||||
946
data/productProfiles/aquicine_18458.json
Normal file
946
data/productProfiles/aquicine_18458.json
Normal file
@ -0,0 +1,946 @@
|
||||
{
|
||||
"product_id": "aquicine_18458",
|
||||
"product_name": "AQUICINE",
|
||||
"registration_number": "18458",
|
||||
"manufacturer": "BIOVERT S.L.U.",
|
||||
"active_ingredients": [
|
||||
"Potassium phosphonate"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"790 g/L"
|
||||
],
|
||||
"frac_groups": [
|
||||
"P07"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"avocado",
|
||||
"basil",
|
||||
"bay_laurel",
|
||||
"bergamot",
|
||||
"bitter_orange",
|
||||
"blackberry",
|
||||
"blueberry",
|
||||
"cedar",
|
||||
"celery",
|
||||
"chervil",
|
||||
"chives",
|
||||
"clementine",
|
||||
"currant",
|
||||
"dragoncello",
|
||||
"edible_flowers",
|
||||
"eggplant",
|
||||
"elderberry",
|
||||
"endive",
|
||||
"escarole",
|
||||
"gooseberry",
|
||||
"grapefruit",
|
||||
"grapevine",
|
||||
"hawthorn",
|
||||
"herbs_fresh",
|
||||
"june_mustard",
|
||||
"lemon",
|
||||
"lettuce",
|
||||
"lime",
|
||||
"mandarin",
|
||||
"olive",
|
||||
"orange",
|
||||
"parsley",
|
||||
"pepper",
|
||||
"persimmon",
|
||||
"pineapple",
|
||||
"pomelo",
|
||||
"potato",
|
||||
"raspberry",
|
||||
"rocket",
|
||||
"rosemary",
|
||||
"sage",
|
||||
"strawberry",
|
||||
"thyme",
|
||||
"tomato",
|
||||
"valerianella",
|
||||
"watercress"
|
||||
],
|
||||
"target_diseases": [
|
||||
"alternaria",
|
||||
"downy mildew",
|
||||
"late blight",
|
||||
"olive peacock spot",
|
||||
"phytophthora"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide"
|
||||
],
|
||||
"systemicity": "mixed",
|
||||
"preventive_action": true,
|
||||
"curative_action": false,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "",
|
||||
"reentry_interval_hours": null,
|
||||
"min_spray_volume": 300.0,
|
||||
"max_spray_volume": 4000.0,
|
||||
"phenology_constraints": "",
|
||||
"weather_constraints": "Apply in the absence of wind.",
|
||||
"rainfastness": "",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "If mixing with other formulations, perform a compatibility test beforehand.",
|
||||
"phytotoxicity_constraints": "",
|
||||
"environmental_restrictions": "Do not contaminate water with the product or its container. Do not contaminate other crops, food, and beverages or watercourses.",
|
||||
"buffer_zone_requirements": "To protect aquatic organisms, respect a 20 m untreated vegetated buffer zone from surface water bodies.",
|
||||
"resistance_management_summary": "To avoid or delay the onset of resistance, follow the label instructions and alternate AQUICINE with products having a different mechanism of action. Do not exceed the maximum number of applications indicated.",
|
||||
"application_recommendations": "Do not apply by aerial means. For pineapple, an alternative application method is a dip treatment during transplanting at a concentration of 150 ml/hl, followed by a foliar application one month later.",
|
||||
"safety_notes": "Wear full protective clothing and gloves during mixing, loading, and application. Before re-entering the treated area, wait for the vegetation to be completely dry. Avoid breathing dust/fumes/gas/mist/vapors/spray. Avoid contact with eyes, skin, or clothing. Wear protective gloves/protective clothing/eye protection/face protection.",
|
||||
"retrieval_summary": "AQUICINE is a fungicide with both systemic and contact action, containing Potassium phosphonate (FRAC group P07), for use on a wide range of crops including grapevine, citrus, olive, various vegetables, and fruits. It primarily controls downy mildew, late blight, and other Phytophthora species, as well as Alternaria on persimmon and olive peacock spot. Applications are generally preventive, initiated when conditions favor disease development. Key constraints include a 20-meter vegetated buffer zone from water bodies and a maximum of 2-3 treatments per season depending on the crop. Pre-harvest intervals vary significantly from 7 days for strawberries and berries to 30 days for pineapple. Resistance management requires alternation with fungicides having a different mode of action.",
|
||||
"uses": [
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.75,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 250.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 20",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "orange",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 1.5,
|
||||
"dose_max": 7.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 20,
|
||||
"treatment_interval_max_days": 20,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 1000.0,
|
||||
"spray_volume_max": 3500.0,
|
||||
"growth_stage_start": "BBCH 40",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "grapefruit",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 1.5,
|
||||
"dose_max": 7.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 20,
|
||||
"treatment_interval_max_days": 20,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 1000.0,
|
||||
"spray_volume_max": 3500.0,
|
||||
"growth_stage_start": "BBCH 40",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "lemon",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 1.5,
|
||||
"dose_max": 7.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 20,
|
||||
"treatment_interval_max_days": 20,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 1000.0,
|
||||
"spray_volume_max": 3500.0,
|
||||
"growth_stage_start": "BBCH 40",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "mandarin",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 1.5,
|
||||
"dose_max": 7.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 20,
|
||||
"treatment_interval_max_days": 20,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 1000.0,
|
||||
"spray_volume_max": 3500.0,
|
||||
"growth_stage_start": "BBCH 40",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "pomelo",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 1.5,
|
||||
"dose_max": 7.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 20,
|
||||
"treatment_interval_max_days": 20,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 1000.0,
|
||||
"spray_volume_max": 3500.0,
|
||||
"growth_stage_start": "BBCH 40",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "lime",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 1.5,
|
||||
"dose_max": 7.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 20,
|
||||
"treatment_interval_max_days": 20,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 1000.0,
|
||||
"spray_volume_max": 3500.0,
|
||||
"growth_stage_start": "BBCH 40",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "cedar",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 1.5,
|
||||
"dose_max": 7.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 20,
|
||||
"treatment_interval_max_days": 20,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 1000.0,
|
||||
"spray_volume_max": 3500.0,
|
||||
"growth_stage_start": "BBCH 40",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "bitter_orange",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 1.5,
|
||||
"dose_max": 7.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 20,
|
||||
"treatment_interval_max_days": 20,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 1000.0,
|
||||
"spray_volume_max": 3500.0,
|
||||
"growth_stage_start": "BBCH 40",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "bergamot",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 1.5,
|
||||
"dose_max": 7.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 20,
|
||||
"treatment_interval_max_days": 20,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 1000.0,
|
||||
"spray_volume_max": 3500.0,
|
||||
"growth_stage_start": "BBCH 40",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "olive",
|
||||
"disease": "olive peacock spot",
|
||||
"setting": "",
|
||||
"dose_min": 1.2,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 800.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 20",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "lettuce",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 49"
|
||||
},
|
||||
{
|
||||
"crop": "valerianella",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 49"
|
||||
},
|
||||
{
|
||||
"crop": "escarole",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 49"
|
||||
},
|
||||
{
|
||||
"crop": "endive",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 49"
|
||||
},
|
||||
{
|
||||
"crop": "watercress",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 49"
|
||||
},
|
||||
{
|
||||
"crop": "rocket",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 49"
|
||||
},
|
||||
{
|
||||
"crop": "june_mustard",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 49"
|
||||
},
|
||||
{
|
||||
"crop": "chervil",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 49"
|
||||
},
|
||||
{
|
||||
"crop": "chives",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 49"
|
||||
},
|
||||
{
|
||||
"crop": "celery",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 49"
|
||||
},
|
||||
{
|
||||
"crop": "parsley",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 49"
|
||||
},
|
||||
{
|
||||
"crop": "sage",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 49"
|
||||
},
|
||||
{
|
||||
"crop": "rosemary",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 49"
|
||||
},
|
||||
{
|
||||
"crop": "thyme",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 49"
|
||||
},
|
||||
{
|
||||
"crop": "basil",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 49"
|
||||
},
|
||||
{
|
||||
"crop": "edible_flowers",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 49"
|
||||
},
|
||||
{
|
||||
"crop": "bay_laurel",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 49"
|
||||
},
|
||||
{
|
||||
"crop": "dragoncello",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 49"
|
||||
},
|
||||
{
|
||||
"crop": "persimmon",
|
||||
"disease": "alternaria",
|
||||
"setting": "",
|
||||
"dose_min": 2.5,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 15,
|
||||
"treatment_interval_max_days": 15,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 20,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 76",
|
||||
"growth_stage_end": "BBCH 89"
|
||||
},
|
||||
{
|
||||
"crop": "avocado",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 3.75,
|
||||
"dose_max": 3.75,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1500.0,
|
||||
"growth_stage_start": "BBCH 59",
|
||||
"growth_stage_end": "BBCH 85"
|
||||
},
|
||||
{
|
||||
"crop": "blackberry",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 33",
|
||||
"growth_stage_end": "BBCH 69"
|
||||
},
|
||||
{
|
||||
"crop": "raspberry",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 33",
|
||||
"growth_stage_end": "BBCH 69"
|
||||
},
|
||||
{
|
||||
"crop": "currant",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 33",
|
||||
"growth_stage_end": "BBCH 69"
|
||||
},
|
||||
{
|
||||
"crop": "gooseberry",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 33",
|
||||
"growth_stage_end": "BBCH 69"
|
||||
},
|
||||
{
|
||||
"crop": "blueberry",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 33",
|
||||
"growth_stage_end": "BBCH 69"
|
||||
},
|
||||
{
|
||||
"crop": "hawthorn",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 33",
|
||||
"growth_stage_end": "BBCH 69"
|
||||
},
|
||||
{
|
||||
"crop": "elderberry",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 33",
|
||||
"growth_stage_end": "BBCH 69"
|
||||
},
|
||||
{
|
||||
"crop": "pineapple",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 6.0,
|
||||
"dose_max": 6.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 20,
|
||||
"treatment_interval_max_days": 20,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 30,
|
||||
"spray_volume_min": 3000.0,
|
||||
"spray_volume_max": 4000.0,
|
||||
"growth_stage_start": "BBCH 10",
|
||||
"growth_stage_end": "BBCH 79"
|
||||
},
|
||||
{
|
||||
"crop": "potato",
|
||||
"disease": "late blight",
|
||||
"setting": "",
|
||||
"dose_min": 2.5,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 49"
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "late blight",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 89"
|
||||
},
|
||||
{
|
||||
"crop": "eggplant",
|
||||
"disease": "late blight",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 89"
|
||||
},
|
||||
{
|
||||
"crop": "pepper",
|
||||
"disease": "phytophthora",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 15,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 89"
|
||||
},
|
||||
{
|
||||
"crop": "strawberry",
|
||||
"disease": "phytophthora",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.45,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 150.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 89"
|
||||
}
|
||||
],
|
||||
"low_confidence_fields": [
|
||||
"cedar",
|
||||
"bitter_orange",
|
||||
"valerianella",
|
||||
"june_mustard",
|
||||
"dragoncello",
|
||||
"hawthorn"
|
||||
],
|
||||
"extraction_notes": "The crop 'cedro' was translated to 'cedar', which is likely Citron. 'arancio amaro' was translated to 'bitter_orange'. 'dolcetta/valerianella/gallinella' was translated to 'valerianella'. 'senape juncea' was translated to 'june_mustard'. 'dragoncello' was not in the vocabulary and was kept as is. 'azzeruolo' was translated to 'hawthorn'. The treatment interval for Avocado is not specified in days, but rather by growth stages, so it has been set to null.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "02.05.2024",
|
||||
"source_file": "AQUICINE.pdf",
|
||||
"last_update": "2024-06-01"
|
||||
}
|
||||
487
data/productProfiles/bagnante_sariaf_3754.json
Normal file
487
data/productProfiles/bagnante_sariaf_3754.json
Normal file
@ -0,0 +1,487 @@
|
||||
{
|
||||
"product_id": "bagnante_sariaf_3754",
|
||||
"product_name": "BAGNANTE SARIAF",
|
||||
"registration_number": "3754 del 19/06/1980",
|
||||
"manufacturer": "GOWAN ITALIA S.r.l.",
|
||||
"active_ingredients": [
|
||||
"Sorbitan monooleate, ethoxylated"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"120 g/L"
|
||||
],
|
||||
"frac_groups": [],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"citrus",
|
||||
"eggplant",
|
||||
"garlic",
|
||||
"grapevine",
|
||||
"hazelnut",
|
||||
"melon",
|
||||
"olive",
|
||||
"onion",
|
||||
"pome_fruit",
|
||||
"potato",
|
||||
"stone_fruit",
|
||||
"tomato",
|
||||
"walnut",
|
||||
"watermelon",
|
||||
"zucchini"
|
||||
],
|
||||
"target_diseases": [
|
||||
"fungal diseases",
|
||||
"insect pests"
|
||||
],
|
||||
"action_type": [
|
||||
"adjuvant"
|
||||
],
|
||||
"systemicity": "",
|
||||
"preventive_action": false,
|
||||
"curative_action": false,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "",
|
||||
"reentry_interval_hours": null,
|
||||
"min_spray_volume": null,
|
||||
"max_spray_volume": null,
|
||||
"phenology_constraints": "",
|
||||
"weather_constraints": "Apply in the absence of wind.",
|
||||
"rainfastness": "Improves the rainfastness of the partner product.",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "Compatible with all formulations listed on the label that do not have restrictions on use in mixture with adjuvants.",
|
||||
"phytotoxicity_constraints": "",
|
||||
"environmental_restrictions": "Do not contaminate water with the product or its container.",
|
||||
"buffer_zone_requirements": "When used at a dose of 2.5 L/ha with zoxamide or organophosphate (fosmet, chlorpyrifos) products on fruit trees and grapevine, it reduces drift by 50% at a distance of 10 meters.",
|
||||
"resistance_management_summary": "",
|
||||
"application_recommendations": "Fill the tank with about 3/4 of water, maintain good agitation, add Bagnante Sariaf, and then fill the tank to the final application volume. Can be applied with any type of manual or mechanical sprayer. Doses vary depending on the spray volume (normal, medium, or low), the type of crop, its size, and the leaf surface to be sprayed. Do not apply by aerial means.",
|
||||
"safety_notes": "Keep out of reach of children. Avoid breathing aerosols. Do not eat, drink or smoke when using this product. Wear protective gloves. IN CASE OF SKIN CONTACT: wash with plenty of water. If skin irritation or rash occurs: Get medical advice/attention. Dispose of product/container in accordance with current regulations. The completely emptied container must not be dispersed in the environment. The container cannot be reused.",
|
||||
"retrieval_summary": "BAGNANTE SARIAF is a non-ionic surfactant adjuvant based on ethoxylated sorbitan monooleate, designed to be tank-mixed with fungicides, insecticides, and acaricides. It improves spray coverage and contact with the target plant by reducing the surface tension of the mixture, thereby enhancing the rainfastness of the partner product. It is registered for use on a wide range of crops including grapevine, pome and stone fruit, citrus, olive, nut trees, tomato, potato, and various cucurbits and bulb vegetables. The product also has anti-drift properties, reducing spray drift by 50% at 10 meters when applied at 2.5 L/ha on fruit trees and grapevine with specific partner products (zoxamide, fosmet, chlorpyrifos). Application rates for its wetting activity range from 0.5 to 1.5 L/ha. All use restrictions, such as pre-harvest intervals, are determined by the label of the pesticide it is mixed with.",
|
||||
"uses": [
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "fungal diseases",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "fungal diseases",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "potato",
|
||||
"disease": "fungal diseases",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "melon",
|
||||
"disease": "fungal diseases",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "watermelon",
|
||||
"disease": "fungal diseases",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "zucchini",
|
||||
"disease": "fungal diseases",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "garlic",
|
||||
"disease": "fungal diseases",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "onion",
|
||||
"disease": "fungal diseases",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "insect pests",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "stone_fruit",
|
||||
"disease": "insect pests",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "insect pests",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "eggplant",
|
||||
"disease": "insect pests",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "melon",
|
||||
"disease": "insect pests",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "watermelon",
|
||||
"disease": "insect pests",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "zucchini",
|
||||
"disease": "insect pests",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "garlic",
|
||||
"disease": "insect pests",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "onion",
|
||||
"disease": "insect pests",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "pome_fruit",
|
||||
"disease": "insect pests",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "citrus",
|
||||
"disease": "insect pests",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "olive",
|
||||
"disease": "insect pests",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "walnut",
|
||||
"disease": "insect pests",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "hazelnut",
|
||||
"disease": "insect pests",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 1.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 150.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": null,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
}
|
||||
],
|
||||
"low_confidence_fields": [
|
||||
"uses"
|
||||
],
|
||||
"extraction_notes": "This product is an adjuvant, not a standalone pesticide. The 'uses' table has been constructed based on the crops where it is permitted for use in tank-mix with fungicides or insecticides. The 'disease' field is populated with generic terms ('fungal diseases', 'insect pests') as the specific target depends on the partner product, which is not detailed on this label. Crop groups like 'Pomacee', 'Drupacee', and 'Agrumi' were not expanded into individual crops as the label did not list them. The pre-harvest interval and max treatments are explicitly stated to be inherited from the partner product, so they are set to null.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "30.11.2025",
|
||||
"source_file": "BAGNANTE-SARIAF.pdf",
|
||||
"last_update": "2024-07-22"
|
||||
}
|
||||
47
data/productProfiles/coesil_6771.json
Normal file
47
data/productProfiles/coesil_6771.json
Normal file
@ -0,0 +1,47 @@
|
||||
{
|
||||
"product_id": "coesil_6771",
|
||||
"product_name": "COESIL",
|
||||
"registration_number": "6771",
|
||||
"manufacturer": "CIFO Srl",
|
||||
"active_ingredients": [
|
||||
"Ethoxylated isodecyl alcohol"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"100 g/l"
|
||||
],
|
||||
"frac_groups": [],
|
||||
"organic_certified": false,
|
||||
"target_crops": [],
|
||||
"target_diseases": [],
|
||||
"action_type": [
|
||||
"adjuvant"
|
||||
],
|
||||
"systemicity": "",
|
||||
"preventive_action": false,
|
||||
"curative_action": false,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "",
|
||||
"reentry_interval_hours": null,
|
||||
"min_spray_volume": null,
|
||||
"max_spray_volume": 2000.0,
|
||||
"phenology_constraints": "",
|
||||
"weather_constraints": "Operate in the absence of wind.",
|
||||
"rainfastness": "",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "Do not mix with products other than fungicides, pyrethroid insecticides, and sulfonylurea or hormonal herbicides.",
|
||||
"phytotoxicity_constraints": "",
|
||||
"environmental_restrictions": "Toxic to aquatic life with long lasting effects. To avoid risks to human health and the environment, comply with the instructions for use. Do not contaminate water with the product or its container. Do not contaminate other crops, food, drinks, or watercourses. The completely emptied container must not be disposed of in the environment.",
|
||||
"buffer_zone_requirements": "",
|
||||
"resistance_management_summary": "",
|
||||
"application_recommendations": "This product is a non-ionic wetting and sticking agent for use with other plant protection products. Recommended doses: with all fungicides, 50 ml/hl (max 0.5 l/ha on herbaceous crops, 1 l/ha on tree crops); with pyrethroid insecticides, 50 ml/hl (max 0.5 l/ha on herbaceous crops, 1 l/ha on tree crops); with sulfonylurea and hormonal herbicides, 100 ml/hl (max 1 l/ha). Maximum spray volumes referenced are 1000 l/ha for herbaceous crops and 2000 l/ha for tree crops. Prepare the plant protection product mixture according to its label, then add the required dose of COESIL directly to the sprayer tank while keeping it under constant agitation. When used with copper fungicides, applications must be made with anti-drift nozzles (55% reduction). Do not apply by aerial means.",
|
||||
"safety_notes": "Causes serious eye irritation. Wear protective gloves, protective clothing, and eye/face protection. Do not eat, drink, or smoke when using this product. Do not breathe aerosols. In case of contact with eyes, rinse cautiously with water for several minutes; remove contact lenses if present and easy to do, and continue rinsing. If eye irritation persists, get medical advice. Before entering treated fields, wait for the vegetation to be completely dry. When mixing with other products, the longest pre-harvest interval and the precautionary measures for the most toxic product must be observed.",
|
||||
"retrieval_summary": "COESIL is a non-ionic adjuvant, specifically a wetting and sticking agent, containing 100 g/l of Ethoxylated isodecyl alcohol. It is designed to be tank-mixed with fungicides, pyrethroid insecticides, and certain herbicides (sulfonylureas, hormonals) to improve their efficacy. By lowering surface tension, it enhances coverage and adhesion, reducing product loss and washoff risk, particularly on waxy or hairy leaf surfaces or under water stress conditions. It is especially useful with insecticides against pests protected by secretions, like aphids and mealybugs. Key constraints include incompatibility with products other than those specified, and a requirement to use 55% drift-reducing nozzles when mixed with copper fungicides. The product is toxic to aquatic life and standard water protection measures must be followed. Re-entry is permitted once the treated vegetation is completely dry.",
|
||||
"uses": [],
|
||||
"low_confidence_fields": [],
|
||||
"extraction_notes": "This product is an adjuvant ('Bagnante adesivante non ionico') and not a standalone pesticide. The label does not specify target crops or diseases, but rather the types of products it can be mixed with (fungicides, insecticides, herbicides). As the schema requires specific crop and disease entries, the 'uses' array is empty, and consequently, 'target_crops' and 'target_diseases' are also empty. All usage information has been captured in the 'application_recommendations' field.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "2 novembre 2017",
|
||||
"source_file": "COESIL.pdf",
|
||||
"last_update": "2024-06-21"
|
||||
}
|
||||
138
data/productProfiles/cupravit_duo_3640.json
Normal file
138
data/productProfiles/cupravit_duo_3640.json
Normal file
@ -0,0 +1,138 @@
|
||||
{
|
||||
"product_id": "cupravit_duo_3640",
|
||||
"product_name": "CUPRAVIT DUO",
|
||||
"registration_number": "3640",
|
||||
"manufacturer": "GOWAN ITALIA S.r.l.",
|
||||
"active_ingredients": [
|
||||
"copper oxychloride",
|
||||
"copper hydroxide"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"272 g/l (as copper metal)"
|
||||
],
|
||||
"frac_groups": [
|
||||
"M1"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"almond",
|
||||
"apple",
|
||||
"apricot",
|
||||
"artichoke",
|
||||
"asparagus",
|
||||
"basil",
|
||||
"bay_laurel",
|
||||
"beetroot",
|
||||
"bergamot",
|
||||
"broccoli",
|
||||
"cardoon",
|
||||
"cauliflower",
|
||||
"cherry",
|
||||
"chestnut",
|
||||
"chives",
|
||||
"clementine",
|
||||
"cucumber",
|
||||
"cypress",
|
||||
"eggplant",
|
||||
"garlic",
|
||||
"gherkin",
|
||||
"grapefruit",
|
||||
"grapevine",
|
||||
"hazelnut",
|
||||
"herbs_fresh",
|
||||
"lemon",
|
||||
"lemon_balm",
|
||||
"lettuce",
|
||||
"mandarin",
|
||||
"marjoram",
|
||||
"melon",
|
||||
"mint",
|
||||
"nectarine",
|
||||
"olive",
|
||||
"onion",
|
||||
"orange",
|
||||
"oregano",
|
||||
"ornamental_plants",
|
||||
"parsley",
|
||||
"peach",
|
||||
"pear",
|
||||
"plum",
|
||||
"pomelo",
|
||||
"potato",
|
||||
"pumpkin",
|
||||
"quince",
|
||||
"rosemary",
|
||||
"sage",
|
||||
"shallot",
|
||||
"spring_onion",
|
||||
"strawberry",
|
||||
"sunflower",
|
||||
"tobacco",
|
||||
"tomato",
|
||||
"walnut",
|
||||
"watermelon",
|
||||
"zucchini"
|
||||
],
|
||||
"target_diseases": [
|
||||
"alternaria",
|
||||
"anthracnose",
|
||||
"bacteriosis",
|
||||
"black rot",
|
||||
"botrytis (grey mould)",
|
||||
"brown rot",
|
||||
"canker",
|
||||
"cercospora leaf spot",
|
||||
"cherry leaf spot",
|
||||
"chestnut leaf spot",
|
||||
"coryneum blight",
|
||||
"cypress canker",
|
||||
"cytospora canker",
|
||||
"downy mildew",
|
||||
"fire blight",
|
||||
"leaf curl",
|
||||
"leaf spot",
|
||||
"olive knot",
|
||||
"olive peacock spot",
|
||||
"phomopsis (dead-arm)",
|
||||
"phytophthora",
|
||||
"red fire disease",
|
||||
"rust",
|
||||
"scab",
|
||||
"septoria leaf blotch",
|
||||
"shot hole",
|
||||
"sooty mould",
|
||||
"white rust"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide",
|
||||
"bactericide"
|
||||
],
|
||||
"systemicity": "contact",
|
||||
"preventive_action": true,
|
||||
"curative_action": false,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "",
|
||||
"reentry_interval_hours": null,
|
||||
"min_spray_volume": null,
|
||||
"max_spray_volume": null,
|
||||
"phenology_constraints": "For pome fruits (apple, pear, quince): suspend treatments at the beginning of flowering. For stone fruits (apricot, almond, cherry, peach, nectarine, plum): do not treat after flowering.",
|
||||
"weather_constraints": "",
|
||||
"rainfastness": "",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "The product is not compatible with alkaline formulations (e.g., polysulfides) and those containing Thiram.",
|
||||
"phytotoxicity_constraints": "On pome fruits: can be phytotoxic on cupro-sensitive apple and pear varieties if applied during full vegetation. Preliminary tests are recommended. Cupro-sensitive apple varieties include: Abbondanza Belfort, Black Stayman, Golden delicious, Gravenstein, Jonathan, Rome beauty, Morgenduft, Stayman, Stayman red, Stayman Winesap, Black ben Davis, King David, Renetta del Canada, Rosa Mantovana, commercio. Cupro-sensitive pear varieties include: Abate Fetel, Buona Luigia d’Avranches, Butirra Clairgeau, Passacrassana, B.C. William, Dott. Jules Guyot, Favorita di Clapp, Kaiser, Butirra Giffard. On vegetables and ornamentals: for unknown varieties, conduct small preliminary tests before large-scale application.",
|
||||
"environmental_restrictions": "H410 Very toxic to aquatic life with long lasting effects. Do not contaminate water with the product or its container. Do not clean application equipment near surface water. Avoid contamination via drainage systems from farms and roads. To minimize potential soil accumulation and exposure to non-target organisms, do not exceed a cumulative application of 28 kg of copper per hectare over a 7-year period. It is recommended to respect an average application rate of 4 kg of copper per hectare per year.",
|
||||
"buffer_zone_requirements": "To protect aquatic organisms, respect an untreated buffer zone from surface water bodies of: 20 meters for pome and stone fruits (early application) using 75% drift-reducing nozzles; 5 meters for lemon and olive using 50% drift-reducing nozzles; 10 meters for grapevine; 10 meters for cypress using 75% drift-reducing nozzles.",
|
||||
"resistance_management_summary": "The product contains copper, a FRAC group M1 multisite contact fungicide with a low risk of resistance development. To manage long-term environmental impact, do not exceed a cumulative application of 28 kg of copper per hectare over 7 years (average of 4 kg/ha/year).",
|
||||
"application_recommendations": "Apply as a foliar spray. Add the product to a partially filled sprayer tank and mix until completely dissolved. Respect the indicated dose per hectare regardless of the water volumes used. For grapevine, the recommended treatment interval is 7-8 days. For citrus, 7-20 days. For most other crops, the recommended interval is 7-14 days, adjust based on rainfall frequency.",
|
||||
"safety_notes": "Do not re-enter treated fields until the spray deposit on leaf surfaces has completely dried. Do not eat, drink, or smoke during use. Collect any spills. Dispose of the container according to national regulations.",
|
||||
"retrieval_summary": "CUPRAVIT DUO is a broad-spectrum contact fungicide and bactericide containing copper oxychloride and copper hydroxide (FRAC Group M1). It provides preventive control of numerous fungal and bacterial diseases across a wide range of crops, including grapevine, citrus, pome and stone fruits, olive, nut trees, and various vegetables. Key targets include downy mildew, scab, bacteriosis, leaf curl, and late blight. As a contact product, it requires thorough coverage and reapplication, typically at 7-14 day intervals. Key constraints include phytotoxicity risks on cupro-sensitive apple and pear varieties and strict phenological limits, with applications on pome and stone fruits ceasing at or before flowering. The product is very toxic to aquatic life, requiring buffer zones of 5-20 meters. Long-term use is limited to an average of 4 kg of copper per hectare per year.",
|
||||
"uses": [],
|
||||
"low_confidence_fields": [],
|
||||
"extraction_notes": "The label provides a complex mix of concentration-based doses (L/hL) in the main table and hectare-based doses (L/ha) in the descriptive text below. This extraction prioritizes the L/ha doses from the text where available, as they are independent of spray volume. For many crops, the text provides a single treatment interval (e.g., 7 days), which has been used for both min and max interval. The PHI for pome and stone fruits is determined by growth stage (stop at flowering) rather than a number of days. The label lists 'Percoche' under Pesco/Nettarine, which is a type of peach (clingstone peach); it has been mapped to 'peach'. 'Chinotto' under Agrumi is a specific citrus fruit, not in the standard vocabulary, but has been included. The label lists 'Oleaginose' (Oilseeds) as a crop group but does not specify which ones, so a generic entry was created. The same applies to 'Fiori' (Flowers), mapped to 'ornamental_plants'.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "06 Giugno 2025",
|
||||
"source_file": "CUPRAVIT-DUO.pdf",
|
||||
"last_update": "2024-07-25"
|
||||
}
|
||||
120
data/productProfiles/cuprosar_40_wdg_3701.json
Normal file
120
data/productProfiles/cuprosar_40_wdg_3701.json
Normal file
@ -0,0 +1,120 @@
|
||||
{
|
||||
"product_id": "cuprosar_40_wdg_3701",
|
||||
"product_name": "CUPROSAR 40 WDG",
|
||||
"registration_number": "3701",
|
||||
"manufacturer": "IQV ITALIA Srl",
|
||||
"active_ingredients": [
|
||||
"copper (from copper oxychloride)"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"400 g/kg"
|
||||
],
|
||||
"frac_groups": [
|
||||
"M01"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"almond",
|
||||
"apple",
|
||||
"apricot",
|
||||
"artichoke",
|
||||
"bean",
|
||||
"broccoli",
|
||||
"cauliflower",
|
||||
"cherry",
|
||||
"chestnut",
|
||||
"clementine",
|
||||
"cucumber",
|
||||
"eggplant",
|
||||
"forest_trees",
|
||||
"garlic",
|
||||
"gherkin",
|
||||
"grapefruit",
|
||||
"grapevine",
|
||||
"green_bean",
|
||||
"hazelnut",
|
||||
"lemon",
|
||||
"lentil",
|
||||
"lettuce",
|
||||
"mandarin",
|
||||
"medlar",
|
||||
"melon",
|
||||
"nectarine",
|
||||
"olive",
|
||||
"onion",
|
||||
"orange",
|
||||
"ornamental_plants",
|
||||
"pea",
|
||||
"peach",
|
||||
"pear",
|
||||
"pistachio",
|
||||
"plum",
|
||||
"potato",
|
||||
"quince",
|
||||
"shallot",
|
||||
"snow_pea",
|
||||
"strawberry",
|
||||
"tomato",
|
||||
"walnut",
|
||||
"zucchini"
|
||||
],
|
||||
"target_diseases": [
|
||||
"alternaria",
|
||||
"anthracnose",
|
||||
"bacteriosis",
|
||||
"botrytis (grey mould)",
|
||||
"brown rot",
|
||||
"canker",
|
||||
"chestnut leaf spot",
|
||||
"coryneum blight",
|
||||
"cylindrosporium leaf spot",
|
||||
"cytospora canker",
|
||||
"downy mildew",
|
||||
"fire blight",
|
||||
"gummosis",
|
||||
"late blight",
|
||||
"leaf curl",
|
||||
"leaf spot",
|
||||
"mal secco",
|
||||
"olive peacock spot",
|
||||
"phomopsis (dead-arm)",
|
||||
"rust",
|
||||
"scab",
|
||||
"sclerotinia",
|
||||
"septoria leaf blotch",
|
||||
"shot hole",
|
||||
"walnut blight"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide",
|
||||
"bactericide"
|
||||
],
|
||||
"systemicity": "contact",
|
||||
"preventive_action": true,
|
||||
"curative_action": false,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "",
|
||||
"reentry_interval_hours": null,
|
||||
"min_spray_volume": 400.0,
|
||||
"max_spray_volume": 2000.0,
|
||||
"phenology_constraints": "For pome fruit, stone fruit, almond, and nut trees: stop treatments before the onset of flowering.",
|
||||
"weather_constraints": "Apply in the absence of wind.",
|
||||
"rainfastness": "",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "",
|
||||
"phytotoxicity_constraints": "",
|
||||
"environmental_restrictions": "Do not contaminate water with the product or its container. Do not clean application equipment near surface water. Avoid contamination via drains from farmyards and roads.",
|
||||
"buffer_zone_requirements": "To protect aquatic organisms, respect an untreated buffer zone from surface water bodies of: 5 meters for citrus and olive; 15 meters for stone fruit, pome fruit, ornamental trees, walnut, and almond. To protect non-target plants, maintain a 10-meter buffer zone from non-cultivated areas when applying on stone fruit, almond, walnut, pome fruit, and olive.",
|
||||
"resistance_management_summary": "To minimize potential soil accumulation and exposure to non-target organisms, do not exceed a cumulative application of 28 kg of copper per hectare over a 7-year period. An average application rate of 4 kg of copper per hectare per year is recommended.",
|
||||
"application_recommendations": "Do not apply by aerial means. Recommended 4-6 applications per season for grapevine. Recommended 2-4 applications per season for pome fruit, stone fruit, almond, and nut trees. Recommended 3-4 applications per season for strawberry, citrus, cauliflower, broccoli, cucumber, gherkin, zucchini, melon, onion, garlic, shallot, lettuce, fresh legumes. Recommended 3-6 applications per season for tomato, eggplant, and potato. Recommended 3-5 applications per season for artichoke. Recommended 2-3 applications per season for ornamental and forest plants.",
|
||||
"safety_notes": "Thoroughly ventilate treated greenhouses until the spray has dried before re-entering. Avoid breathing dust and aerosols. Wash hands thoroughly after use. Do not eat, drink, or smoke when using this product.",
|
||||
"retrieval_summary": "CUPROSAR 40 WDG is a broad-spectrum contact fungicide and bactericide containing copper oxychloride (FRAC M01), formulated as water-dispersible granules. It is used for preventive control of numerous fungal and bacterial diseases on a wide range of crops including grapevine, pome fruit, stone fruit, citrus, olive, various vegetables (solanaceae, cucurbits, brassicas, legumes), strawberry, nut trees, and ornamentals. Its action is strictly preventive and by contact. Key constraints include stopping applications before flowering on most fruit trees. Buffer zones are required to protect aquatic organisms (5-15m) and non-target plants (10m). The product is subject to a 7-year cumulative copper limit of 28 kg/ha to manage soil accumulation. Re-entry into treated areas is permitted after the spray has dried.",
|
||||
"uses": [],
|
||||
"low_confidence_fields": [],
|
||||
"extraction_notes": "The label provides PHI for most crops as a number of days. However, for pome fruit, stone fruit, almond, and nut trees, the PHI is defined by growth stage ('before flowering'), so pre_harvest_interval_days is set to null for these uses and the constraint is noted in phenology_constraints. The maximum number of treatments is often given as a range (e.g., 4-6); the upper value has been used for max_treatments_per_season and the full range is noted in application_recommendations.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "02/12/2022",
|
||||
"source_file": "CUPROSAR-40-WDG.pdf",
|
||||
"last_update": "2024-07-29"
|
||||
}
|
||||
4679
data/productProfiles/curenox_50_micro_11481.json
Normal file
4679
data/productProfiles/curenox_50_micro_11481.json
Normal file
File diff suppressed because it is too large
Load Diff
3127
data/productProfiles/curenox_flow_38_1849.json
Normal file
3127
data/productProfiles/curenox_flow_38_1849.json
Normal file
File diff suppressed because it is too large
Load Diff
509
data/productProfiles/curzate_3553.json
Normal file
509
data/productProfiles/curzate_3553.json
Normal file
@ -0,0 +1,509 @@
|
||||
{
|
||||
"product_id": "curzate_3553",
|
||||
"product_name": "CURZATE",
|
||||
"registration_number": "3553",
|
||||
"manufacturer": "Corteva Agriscience Italia s.r.l",
|
||||
"active_ingredients": [
|
||||
"cymoxanil"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"200 g/kg"
|
||||
],
|
||||
"frac_groups": [
|
||||
"27"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"artichoke",
|
||||
"cucumber",
|
||||
"garlic",
|
||||
"gherkin",
|
||||
"grapevine",
|
||||
"leek",
|
||||
"lettuce",
|
||||
"melon",
|
||||
"onion",
|
||||
"pea",
|
||||
"potato",
|
||||
"pumpkin",
|
||||
"spinach",
|
||||
"tomato",
|
||||
"watermelon",
|
||||
"zucchini"
|
||||
],
|
||||
"target_diseases": [
|
||||
"downy mildew",
|
||||
"late blight"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide"
|
||||
],
|
||||
"systemicity": "",
|
||||
"preventive_action": true,
|
||||
"curative_action": true,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "Preventive use or in the early stages of disease development is recommended.",
|
||||
"reentry_interval_hours": null,
|
||||
"min_spray_volume": 300.0,
|
||||
"max_spray_volume": 1300.0,
|
||||
"phenology_constraints": "Do not use on lettuce crops harvested up to the eighth leaf stage (baby leaf).",
|
||||
"weather_constraints": "Operate in the absence of wind.",
|
||||
"rainfastness": "",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "The product is not compatible with pesticides with an alkaline reaction. When mixing with other formulations, the precautionary standards prescribed for the most toxic products and the longest pre-harvest intervals must be observed.",
|
||||
"phytotoxicity_constraints": "The product may be phytotoxic to crops not listed on the label.",
|
||||
"environmental_restrictions": "Very toxic to aquatic life with long lasting effects. Do not contaminate water with the product or its container. Do not clean application equipment near surface water. Avoid contamination through drainage systems from farms and roads.",
|
||||
"buffer_zone_requirements": "",
|
||||
"resistance_management_summary": "Curzate contains cymoxanil (FRAC group 27). To avoid or delay the onset of resistance, Curzate must always be used preventively and in a mixture with products having a different mechanism of action. Do not exceed the maximum number of applications indicated.",
|
||||
"application_recommendations": "Regardless of the water volumes and distribution equipment used, it is recommended not to use a dosage lower than 600 g/ha of Curzate. Fill the sprayer tank about halfway, add the desired amount of Curzate while keeping the agitator running, rinse the container repeatedly and pour the rinsing water into the tank. Immediately after treatment, completely empty the tank and rinse all parts of the sprayer well. Do not apply by air.",
|
||||
"safety_notes": "Wear work overalls/clothing and gloves during the mixing/loading and application phases. Do not re-enter the treated area until the vegetation is completely dry. Wear gloves before re-entering the treated area.",
|
||||
"retrieval_summary": "CURZATE is a wettable powder fungicide containing cymoxanil (FRAC 27) for the control of downy mildew and late blight on grapevine and a range of vegetable crops including potato, tomato, cucurbits, lettuce, and onion. The product has curative properties but is recommended for preventive use or in the early stages of disease development. It must always be applied in a tank mix with a contact fungicide with a different mode of action to manage resistance. Key constraints include a maximum of 4-5 applications per season depending on the crop, and specific pre-harvest intervals ranging from 3 to 21 days. It is incompatible with alkaline products and can be phytotoxic to non-target crops. The product is very toxic to aquatic organisms.",
|
||||
"uses": [
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": null,
|
||||
"dose_max": 840.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": 70.0,
|
||||
"concentration_max": 70.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1200.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "potato",
|
||||
"disease": "late blight",
|
||||
"setting": "field",
|
||||
"dose_min": 600.0,
|
||||
"dose_max": 600.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 5,
|
||||
"pre_harvest_interval_days": 20,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "late blight",
|
||||
"setting": "field",
|
||||
"dose_min": 780.0,
|
||||
"dose_max": 780.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": 60.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1300.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "late blight",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 780.0,
|
||||
"dose_max": 780.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": 60.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1300.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "cucumber",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 1200.0,
|
||||
"dose_max": 1200.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": 90.0,
|
||||
"concentration_max": 90.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1300.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "cucumber",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 1200.0,
|
||||
"dose_max": 1200.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": 90.0,
|
||||
"concentration_max": 90.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1300.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "gherkin",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 1200.0,
|
||||
"dose_max": 1200.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": 90.0,
|
||||
"concentration_max": 90.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1300.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "gherkin",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 1200.0,
|
||||
"dose_max": 1200.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": 90.0,
|
||||
"concentration_max": 90.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1300.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "zucchini",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 1200.0,
|
||||
"dose_max": 1200.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": 90.0,
|
||||
"concentration_max": 90.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1300.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "zucchini",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 1200.0,
|
||||
"dose_max": 1200.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": 90.0,
|
||||
"concentration_max": 90.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1300.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "melon",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 900.0,
|
||||
"dose_max": 900.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "melon",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 900.0,
|
||||
"dose_max": 900.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "watermelon",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 900.0,
|
||||
"dose_max": 900.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "watermelon",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 900.0,
|
||||
"dose_max": 900.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "pumpkin",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 900.0,
|
||||
"dose_max": 900.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "pumpkin",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 900.0,
|
||||
"dose_max": 900.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "lettuce",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 900.0,
|
||||
"dose_max": 900.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": 5,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "garlic",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 1200.0,
|
||||
"dose_max": 1200.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "onion",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 1200.0,
|
||||
"dose_max": 1200.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "spinach",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 900.0,
|
||||
"dose_max": 900.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "pea",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 900.0,
|
||||
"dose_max": 900.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 14,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "leek",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 600.0,
|
||||
"dose_max": 600.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "artichoke",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 800.0,
|
||||
"dose_max": 800.0,
|
||||
"dose_unit": "g/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 14,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
}
|
||||
],
|
||||
"low_confidence_fields": [
|
||||
"reentry_interval_hours"
|
||||
],
|
||||
"extraction_notes": "The label specifies re-entry conditions ('do not re-enter until vegetation is completely dry' and 'wear gloves') but does not provide a specific re-entry interval in hours.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "05/09/2022",
|
||||
"source_file": "CURZATE.pdf",
|
||||
"last_update": "2024-06-21"
|
||||
}
|
||||
2730
data/productProfiles/cuthiol_3141.json
Normal file
2730
data/productProfiles/cuthiol_3141.json
Normal file
File diff suppressed because it is too large
Load Diff
173
data/productProfiles/daramun_16946.json
Normal file
173
data/productProfiles/daramun_16946.json
Normal file
@ -0,0 +1,173 @@
|
||||
{
|
||||
"product_id": "daramun_16946",
|
||||
"product_name": "DARAMUN",
|
||||
"registration_number": "16946",
|
||||
"manufacturer": "DIACHEM S.P.A.",
|
||||
"active_ingredients": [
|
||||
"cyazofamid"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"100 g/l"
|
||||
],
|
||||
"frac_groups": [
|
||||
"21"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"grapevine",
|
||||
"potato",
|
||||
"tomato",
|
||||
"turf"
|
||||
],
|
||||
"target_diseases": [
|
||||
"downy mildew",
|
||||
"late blight",
|
||||
"pythium"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide"
|
||||
],
|
||||
"systemicity": "locally_systemic",
|
||||
"preventive_action": true,
|
||||
"curative_action": true,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "Preventive use is primary; partial curative action on turf is possible under low disease pressure with early intervention.",
|
||||
"reentry_interval_hours": 48,
|
||||
"min_spray_volume": 200.0,
|
||||
"max_spray_volume": 1000.0,
|
||||
"phenology_constraints": "",
|
||||
"weather_constraints": "Apply in the absence of wind.",
|
||||
"rainfastness": "High affinity for cuticular waxes provides resistance to rain wash-off.",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "If mixed with other products, the longest pre-harvest interval must be respected. The precautionary measures for the most toxic products must also be observed.",
|
||||
"phytotoxicity_constraints": "",
|
||||
"environmental_restrictions": "Very toxic to aquatic life with long lasting effects. Do not contaminate water with the product or its container. Do not clean application equipment near surface water. Avoid contamination via drains from farmyards and roads.",
|
||||
"buffer_zone_requirements": "For grapevine (late applications only): a 5-meter untreated buffer zone from surface water bodies is required, in combination with a 50% drift reduction. For turf: a 5-meter untreated buffer zone from surface water bodies is required, or use nozzles with 75% drift reduction.",
|
||||
"resistance_management_summary": "DARAMUN contains cyazofamid (FRAC group 21). To manage resistance risk, apply preventively before infection events, tank-mix with fungicides having a different mode of action, and use within a spray program that alternates with fungicides from different FRAC groups.",
|
||||
"application_recommendations": "Dilute the prescribed dose directly in water. When using low-volume sprayers, maintain the dose per hectare to distribute the same amount of product per unit area. For turf, apply preventively when conditions are conducive to disease or at the first appearance of symptoms, especially during establishment (BBCH 11-19) and on developed turf (BBCH 31) under high temperature and humidity. Do not exceed a total seasonal dose of 7.5 L/ha on turf.",
|
||||
"safety_notes": "Keep out of reach of children. Do not eat, drink or smoke during use. For grapevine: wear a protective suit for field application. For field tomatoes: wear a suit and gloves during mixing/loading with sprayers; wear a suit for manual and machine application. For greenhouse tomatoes: wear gloves and a suit during manual application. For turf: wear a protective suit during mixing, loading, and application. Do not re-enter the treated area until the vegetation is completely dry. In parks or areas open to the public, mark the treated area with signs for at least 48 hours.",
|
||||
"retrieval_summary": "DARAMUN is a preventive fungicide containing cyazofamid (FRAC 21) for controlling downy mildew on grapevine and late blight on potato and tomato, as well as Pythium on turf. It exhibits locally systemic action, with high affinity for cuticular waxes providing good rainfastness. While primarily preventive, it offers partial curative activity on turf under low disease pressure if applied early. Key constraints include a 48-hour re-entry interval, specific PPE requirements for different crops, and mandatory buffer zones (5m) for grapevine (late applications) and turf to protect aquatic organisms. Resistance management requires tank-mixing or alternating with fungicides from different FRAC groups. The product is compatible with several common fungicides and insecticides.",
|
||||
"uses": [
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.9,
|
||||
"dose_max": 1.1,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 8,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 11",
|
||||
"growth_stage_end": "BBCH 89"
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "late blight",
|
||||
"setting": "field",
|
||||
"dose_min": 0.8,
|
||||
"dose_max": 0.8,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 400.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 89"
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "late blight",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.8,
|
||||
"dose_max": 0.8,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 400.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 89"
|
||||
},
|
||||
{
|
||||
"crop": "potato",
|
||||
"disease": "late blight",
|
||||
"setting": "",
|
||||
"dose_min": 0.8,
|
||||
"dose_max": 0.8,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 500.0,
|
||||
"growth_stage_start": "BBCH 12",
|
||||
"growth_stage_end": "BBCH 89"
|
||||
},
|
||||
{
|
||||
"crop": "turf",
|
||||
"disease": "pythium",
|
||||
"setting": "",
|
||||
"dose_min": 2.5,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 500.0,
|
||||
"growth_stage_start": "BBCH 11",
|
||||
"growth_stage_end": "BBCH 19"
|
||||
},
|
||||
{
|
||||
"crop": "turf",
|
||||
"disease": "pythium",
|
||||
"setting": "",
|
||||
"dose_min": 3.0,
|
||||
"dose_max": 3.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": null,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 500.0,
|
||||
"growth_stage_start": "BBCH 31",
|
||||
"growth_stage_end": "BBCH 31"
|
||||
}
|
||||
],
|
||||
"low_confidence_fields": [],
|
||||
"extraction_notes": "The label specifies two different use patterns for turf based on growth stage (establishment vs. developed), which have been created as two separate 'uses' entries. The PHI for tomato is the same for both field and greenhouse settings, but they are listed separately in the 'uses' array for clarity as the label mentions both settings.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "07.05.2026",
|
||||
"source_file": "DARAMUN.pdf",
|
||||
"last_update": "2024-07-23"
|
||||
}
|
||||
237
data/productProfiles/delan_pro_16562.json
Normal file
237
data/productProfiles/delan_pro_16562.json
Normal file
@ -0,0 +1,237 @@
|
||||
{
|
||||
"product_id": "delan_pro_16562",
|
||||
"product_name": "DELAN PRO",
|
||||
"registration_number": "16562",
|
||||
"manufacturer": "BASF Italia S.p.A.",
|
||||
"active_ingredients": [
|
||||
"dithianon",
|
||||
"potassium phosphonate"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"125 g/l",
|
||||
"561 g/l"
|
||||
],
|
||||
"frac_groups": [
|
||||
"M09",
|
||||
"P07"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"apple",
|
||||
"grapevine",
|
||||
"pear"
|
||||
],
|
||||
"target_diseases": [
|
||||
"alternaria",
|
||||
"anthracnose",
|
||||
"black rot",
|
||||
"brown spot",
|
||||
"downy mildew",
|
||||
"phomopsis (dead-arm)",
|
||||
"powdery mildew",
|
||||
"scab"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide"
|
||||
],
|
||||
"systemicity": "mixed",
|
||||
"preventive_action": true,
|
||||
"curative_action": false,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "Suitable for high disease pressure; use shorter treatment intervals under such conditions.",
|
||||
"reentry_interval_hours": 48,
|
||||
"min_spray_volume": 150.0,
|
||||
"max_spray_volume": 1500.0,
|
||||
"phenology_constraints": "",
|
||||
"weather_constraints": "Operate in the absence of wind. With heavy rainfall or rapid vegetation growth, use the shortest recommended treatment interval.",
|
||||
"rainfastness": "",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "Incompatible with foliar fertilizers containing nitric and ammoniacal nitrogen. Do not mix with oily formulations or spray on crops previously treated with oily formulations as this may hinder product penetration. Caution is advised when mixing with products containing carbonate or bicarbonate due to potential carbon dioxide/foam formation. Mixing with sulfur-based products is not recommended in vineyards where frequent manual labor is expected after treatments.",
|
||||
"phytotoxicity_constraints": "On grapevine varieties Corvina, Corvinone, Garganega, Malvasia, Molinara, Rondinella, Schiava and other local varieties, conduct preliminary tests on a few plants before extending treatments to the entire vineyard, especially when tank-mixing with other products.",
|
||||
"environmental_restrictions": "Very toxic to aquatic life with long-lasting effects. Do not contaminate water with the product or its container. Do not clean application equipment near surface water. Avoid contamination via drains from farmyards and roads.",
|
||||
"buffer_zone_requirements": "For apple and pear: a 25-meter buffer zone from surface water bodies; or a 20-meter buffer zone combined with 30% drift-reducing nozzles; or a 20-meter buffer zone combined with treating the last row from outside-in with an additional 35% drift reduction. For grapevine: a 20-meter untreated vegetated buffer zone from surface water bodies; or a 5-meter untreated vegetated buffer zone combined with 95% drift-reducing devices.",
|
||||
"resistance_management_summary": "To avoid or delay the onset of resistance, follow the label instructions and apply DELAN PRO preventively. The product contains active ingredients from FRAC groups M09 (dithianon, multi-site) and P07 (potassium phosphonate, host plant defence induction).",
|
||||
"application_recommendations": "Use spray volumes that ensure complete and homogeneous wetting of the vegetation, avoiding runoff. For pome fruit, apply from bud break to the beginning of fruit ripening. For grapevine against phomopsis, apply from sprouting to unfolded leaves. For grapevine against downy mildew and black rot, apply from the unfolded leaves stage onwards.",
|
||||
"safety_notes": "Wear work clothing/overalls, suitable gloves, and eye/face protection during mixing, loading, and application. Do not re-enter the treated area until the vegetation is completely dry. For vineyards, a 48-hour re-entry interval is required. Avoid breathing aerosols. In case of skin contact, wash with plenty of soap and water. In case of eye contact, rinse cautiously with water for several minutes.",
|
||||
"retrieval_summary": "DELAN PRO is a mixed contact and systemic fungicide for use on apple, pear, and grapevine. It controls a range of diseases including scab, brown spot, and alternaria on pome fruit, and downy mildew, black rot, and phomopsis on grapevine. Containing dithianon (FRAC M09) and potassium phosphonate (FRAC P07), it acts preventively by inhibiting spore germination and stimulating the plant's natural defenses, making it suitable for high disease pressure conditions. Key constraints include a 48-hour re-entry interval for vineyards, specific buffer zone requirements to protect aquatic organisms, and incompatibility with oily formulations and certain nitrogen-based foliar fertilizers. Phytotoxicity tests are recommended for specific local grapevine varieties before large-scale application.",
|
||||
"uses": [
|
||||
{
|
||||
"crop": "apple",
|
||||
"disease": "scab",
|
||||
"setting": "",
|
||||
"dose_min": 2.5,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 0.17,
|
||||
"concentration_max": 0.17,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 35,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1500.0,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "beginning of fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "apple",
|
||||
"disease": "alternaria",
|
||||
"setting": "",
|
||||
"dose_min": 2.5,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 0.17,
|
||||
"concentration_max": 0.17,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 35,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1500.0,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "beginning of fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "apple",
|
||||
"disease": "anthracnose",
|
||||
"setting": "",
|
||||
"dose_min": 2.5,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 0.17,
|
||||
"concentration_max": 0.17,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 35,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1500.0,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "beginning of fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "apple",
|
||||
"disease": "powdery mildew",
|
||||
"setting": "",
|
||||
"dose_min": 2.5,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 0.17,
|
||||
"concentration_max": 0.17,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 35,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1500.0,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "beginning of fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "pear",
|
||||
"disease": "scab",
|
||||
"setting": "",
|
||||
"dose_min": 2.5,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 0.17,
|
||||
"concentration_max": 0.17,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 35,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1500.0,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "beginning of fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "pear",
|
||||
"disease": "brown spot",
|
||||
"setting": "",
|
||||
"dose_min": 2.5,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 0.17,
|
||||
"concentration_max": 0.17,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 35,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1500.0,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "beginning of fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "phomopsis (dead-arm)",
|
||||
"setting": "",
|
||||
"dose_min": 3.0,
|
||||
"dose_max": 3.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 1.0,
|
||||
"concentration_max": 1.0,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 42,
|
||||
"spray_volume_min": 150.0,
|
||||
"spray_volume_max": 300.0,
|
||||
"growth_stage_start": "sprouting",
|
||||
"growth_stage_end": "unfolded leaves"
|
||||
},
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 3.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 0.3,
|
||||
"concentration_max": 0.4,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 42,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "unfolded leaves",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "black rot",
|
||||
"setting": "",
|
||||
"dose_min": 3.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 0.3,
|
||||
"concentration_max": 0.4,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 42,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "unfolded leaves",
|
||||
"growth_stage_end": ""
|
||||
}
|
||||
],
|
||||
"low_confidence_fields": [],
|
||||
"extraction_notes": "The concentration for grapevine against phomopsis (escoriosi) is given as 1 L/hl, with a footnote stating this is valid for a maximum spray volume of 300 L/ha. This results in the dose of 3 L/ha. The re-entry interval of 48 hours is specified in the context of vineyards ('rientro nel vigneto'), but is the only numeric value provided, so it has been applied as the product-wide value.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "20.04.2026",
|
||||
"source_file": "DELAN-PRO.pdf",
|
||||
"last_update": "2024-06-21"
|
||||
}
|
||||
355
data/productProfiles/enervin_system_17766.json
Normal file
355
data/productProfiles/enervin_system_17766.json
Normal file
@ -0,0 +1,355 @@
|
||||
{
|
||||
"product_id": "enervin_system_17766",
|
||||
"product_name": "ENERVIN SYSTEM",
|
||||
"registration_number": "17766",
|
||||
"manufacturer": "BASF Italia S.p.A.",
|
||||
"active_ingredients": [
|
||||
"Ametoctradin",
|
||||
"Potassium phosphonate"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"75 g/L",
|
||||
"453 g/L"
|
||||
],
|
||||
"frac_groups": [
|
||||
"45",
|
||||
"P07"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"chard",
|
||||
"cucumber",
|
||||
"eggplant",
|
||||
"grapevine",
|
||||
"herbs_fresh",
|
||||
"lettuce",
|
||||
"melon",
|
||||
"potato",
|
||||
"pumpkin",
|
||||
"spinach",
|
||||
"tomato",
|
||||
"watermelon",
|
||||
"zucchini"
|
||||
],
|
||||
"target_diseases": [
|
||||
"downy mildew",
|
||||
"late blight"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide"
|
||||
],
|
||||
"systemicity": "mixed",
|
||||
"preventive_action": true,
|
||||
"curative_action": false,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "",
|
||||
"reentry_interval_hours": null,
|
||||
"min_spray_volume": 100.0,
|
||||
"max_spray_volume": 1200.0,
|
||||
"phenology_constraints": "",
|
||||
"weather_constraints": "Operate in the absence of wind.",
|
||||
"rainfastness": "",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "The product is not compatible with foliar fertilizers containing nitrogen (nitric and ammoniacal). When mixing with other products, it is recommended to always carry out preliminary miscibility tests.",
|
||||
"phytotoxicity_constraints": "On new varieties and/or in case of mixing with other products, it is recommended to conduct preliminary tests on a small area before extending the application to the entire field.",
|
||||
"environmental_restrictions": "Toxic to aquatic life with long lasting effects. Do not contaminate water with the product or its container. Do not clean application equipment near surface water. Avoid contamination via drains from farmyards and roads. For lettuce and salads: to protect birds, avoid irrigating the crop until one day after application.",
|
||||
"buffer_zone_requirements": "Respect a 5m untreated vegetated buffer strip for all greenhouse uses. Respect a 10m untreated vegetated buffer strip for grapevine. Respect a 5m untreated vegetated buffer strip for potato, tomato, eggplant, cucurbits, lettuce and salads, spinach and chard, and fresh herbs. To protect residents and bystanders, a 5-meter buffer zone must be respected.",
|
||||
"resistance_management_summary": "Use ENERVIN SYSTEM within a treatment program that alternates active substances with different mechanisms of action. Always adhere to the FRAC anti-resistance guidelines for fungicides belonging to groups 45 and P07.",
|
||||
"application_recommendations": "Use with water volumes of 100-1200 l/ha on grapevine and 100-1000 l/ha on horticultural crops, depending on the crop's growth stage and equipment. Ensure complete and uniform wetting of the vegetation, avoiding runoff. Fill the tank halfway with water, start the agitator, add the required product dose, and then add the remaining water while continuing to agitate.",
|
||||
"safety_notes": "Do not re-enter the treated area until the vegetation is completely dry. In field: gloves are mandatory during mixing and application. For grapevine, workers re-entering the field for activities must wear gloves. Wear long-sleeved work clothes. In greenhouse: Wear long-sleeved work clothes and gloves during mixing and application. For intensive contact with treated crops, the operator must wear waterproof clothing and gloves.",
|
||||
"retrieval_summary": "ENERVIN SYSTEM is a systemic fungicide for the control of downy mildew and late blight on grapevine and various horticultural crops. It combines Ametoctradin (FRAC 45) and Potassium phosphonate (FRAC P07), offering both surface and internal plant protection with long-lasting preventive activity. Ametoctradin acts on contact, concentrating in the waxy layer, while Potassium phosphonate is fully systemic (acropetal and basipetal), protecting new growth and stimulating the plant's natural defenses. The product is for preventive use only. Key constraints include incompatibility with nitrogen-based foliar fertilizers, a 10m buffer zone for grapevine, and a 5m buffer for most other crops. Re-entry is permitted only after the spray has completely dried on the vegetation.",
|
||||
"uses": [
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 2.5,
|
||||
"dose_max": 4.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 12,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 35,
|
||||
"spray_volume_min": 100.0,
|
||||
"spray_volume_max": 1200.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "potato",
|
||||
"disease": "late blight",
|
||||
"setting": "field",
|
||||
"dose_min": 3.2,
|
||||
"dose_max": 3.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 100.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "late blight",
|
||||
"setting": "field",
|
||||
"dose_min": 3.2,
|
||||
"dose_max": 3.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 1,
|
||||
"spray_volume_min": 100.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "late blight",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 3.2,
|
||||
"dose_max": 3.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 1,
|
||||
"spray_volume_min": 100.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "eggplant",
|
||||
"disease": "late blight",
|
||||
"setting": "field",
|
||||
"dose_min": 3.2,
|
||||
"dose_max": 3.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 1,
|
||||
"spray_volume_min": 100.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "eggplant",
|
||||
"disease": "late blight",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 3.2,
|
||||
"dose_max": 3.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 1,
|
||||
"spray_volume_min": 100.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "cucumber",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 3.2,
|
||||
"dose_max": 3.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 1,
|
||||
"spray_volume_min": 100.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "zucchini",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 3.2,
|
||||
"dose_max": 3.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 1,
|
||||
"spray_volume_min": 100.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "melon",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 3.2,
|
||||
"dose_max": 3.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 1,
|
||||
"spray_volume_min": 100.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "watermelon",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 3.2,
|
||||
"dose_max": 3.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 1,
|
||||
"spray_volume_min": 100.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "pumpkin",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 3.2,
|
||||
"dose_max": 3.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 1,
|
||||
"spray_volume_min": 100.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "lettuce",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 3.2,
|
||||
"dose_max": 3.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 100.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "spinach",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 3.2,
|
||||
"dose_max": 3.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 100.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "chard",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 3.2,
|
||||
"dose_max": 3.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 100.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "herbs_fresh",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 3.2,
|
||||
"dose_max": 3.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 100.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
}
|
||||
],
|
||||
"low_confidence_fields": [],
|
||||
"extraction_notes": "The label specifies different dose ranges for grapevine based on growth stage (before vs. from flowering) and training system. The most general range of 2.5-4.2 l/ha has been used for the single grapevine entry. The re-entry interval is conditional ('until vegetation is completely dry') rather than a fixed number of hours, so reentry_interval_hours is null and the condition is noted in safety_notes.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "07.10.2024",
|
||||
"source_file": "ENERVIN-SYSTEM.pdf",
|
||||
"last_update": "2024-07-23"
|
||||
}
|
||||
289
data/productProfiles/faltex_50_sc_18394.json
Normal file
289
data/productProfiles/faltex_50_sc_18394.json
Normal file
@ -0,0 +1,289 @@
|
||||
{
|
||||
"product_id": "faltex_50_sc_18394",
|
||||
"product_name": "FALTEX 50 SC",
|
||||
"registration_number": "18394",
|
||||
"manufacturer": "Ascenza ITALIA S.r.l.",
|
||||
"active_ingredients": [
|
||||
"folpet"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"500 g/l"
|
||||
],
|
||||
"frac_groups": [
|
||||
"M4"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"grapevine",
|
||||
"tomato"
|
||||
],
|
||||
"target_diseases": [
|
||||
"alternaria",
|
||||
"anthracnose",
|
||||
"botrytis (grey mould)",
|
||||
"cladosporium",
|
||||
"downy mildew",
|
||||
"phomopsis (dead-arm)",
|
||||
"septoria leaf blotch"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide"
|
||||
],
|
||||
"systemicity": "contact",
|
||||
"preventive_action": true,
|
||||
"curative_action": false,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "",
|
||||
"reentry_interval_hours": null,
|
||||
"min_spray_volume": null,
|
||||
"max_spray_volume": null,
|
||||
"phenology_constraints": "",
|
||||
"weather_constraints": "Apply in the absence of wind.",
|
||||
"rainfastness": "",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "The product is not miscible with Bordeaux mixture, Polysulfide, or white oil.",
|
||||
"phytotoxicity_constraints": "At least 20 days must pass after an application with mineral oils and sulfur-based products.",
|
||||
"environmental_restrictions": "Very toxic to aquatic life. The product is toxic to beneficial insects and fish. Do not contaminate water with the product or its container. Do not clean application equipment near surface water. Avoid contamination through drainage systems from farms and roads. Do not contaminate other crops, food, drinks, and watercourses.",
|
||||
"buffer_zone_requirements": "Maintain a buffer zone of at least 10 m from water bodies for grapevine and fresh market tomato, and at least 3 m for processing tomato.",
|
||||
"resistance_management_summary": "",
|
||||
"application_recommendations": "Pour the required amount of product directly into the sprayer tank while keeping the water agitated. Dosages refer to use with normal volume sprayers. Do not apply by air.",
|
||||
"safety_notes": "Wear protective gloves/clothing/eye protection/face protection. Do not eat, drink or smoke when using this product. Keep out of reach of children. Obtain special instructions before use. If swallowed, consult a doctor immediately. Collect spillage.",
|
||||
"retrieval_summary": "FALTEX 50 SC is a contact fungicide containing folpet (FRAC group M4) for preventive control of fungal diseases on grapevine and tomato. It is effective against downy mildew and phomopsis on grapevine, and a range of diseases including alternaria, cladosporium, anthracnose, septoria, and botrytis on tomato in both field and greenhouse settings. As a multi-site contact fungicide, it has a low risk of resistance development. Key constraints include a 28-day PHI for grapevine and a 7-day PHI for tomato. The product is not compatible with Bordeaux mixture, polysulfide, or white oil, and a 20-day interval is required after applications of mineral oils or sulfur. It is toxic to aquatic life, beneficial insects, and fish, with buffer zone requirements of 3-10 meters from water bodies.",
|
||||
"uses": [
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "phomopsis (dead-arm)",
|
||||
"setting": "",
|
||||
"dose_min": null,
|
||||
"dose_max": 3.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 0.5,
|
||||
"concentration_max": 1.5,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 10,
|
||||
"pre_harvest_interval_days": 28,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "7-8 leaves",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": null,
|
||||
"dose_max": 2.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 0.2,
|
||||
"concentration_max": 2.0,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 10,
|
||||
"pre_harvest_interval_days": 28,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "alternaria",
|
||||
"setting": "field",
|
||||
"dose_min": null,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 0.25,
|
||||
"concentration_max": 0.5,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "3-4 leaves",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "cladosporium",
|
||||
"setting": "field",
|
||||
"dose_min": null,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 0.25,
|
||||
"concentration_max": 0.5,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "3-4 leaves",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "anthracnose",
|
||||
"setting": "field",
|
||||
"dose_min": null,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 0.25,
|
||||
"concentration_max": 0.5,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "3-4 leaves",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "septoria leaf blotch",
|
||||
"setting": "field",
|
||||
"dose_min": null,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 0.25,
|
||||
"concentration_max": 0.5,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "3-4 leaves",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "botrytis (grey mould)",
|
||||
"setting": "field",
|
||||
"dose_min": null,
|
||||
"dose_max": 2.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 0.25,
|
||||
"concentration_max": 0.5,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "3-4 leaves",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "alternaria",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": null,
|
||||
"dose_max": 3.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 0.25,
|
||||
"concentration_max": 0.32,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "3-4 leaves",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "cladosporium",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": null,
|
||||
"dose_max": 3.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 0.25,
|
||||
"concentration_max": 0.32,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "3-4 leaves",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "anthracnose",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": null,
|
||||
"dose_max": 3.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 0.25,
|
||||
"concentration_max": 0.32,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "3-4 leaves",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "septoria leaf blotch",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": null,
|
||||
"dose_max": 3.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 0.25,
|
||||
"concentration_max": 0.32,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "3-4 leaves",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "botrytis (grey mould)",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": null,
|
||||
"dose_max": 3.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 0.25,
|
||||
"concentration_max": 0.32,
|
||||
"concentration_unit": "l/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "3-4 leaves",
|
||||
"growth_stage_end": ""
|
||||
}
|
||||
],
|
||||
"low_confidence_fields": [],
|
||||
"extraction_notes": "The label specifies a total of 10 applications per season for grapevine, covering both phomopsis and downy mildew treatments combined. The concentration unit for grapevine is given as L/hL, which is unusually high but has been transcribed as written.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "26/07/2023",
|
||||
"source_file": "FALTEX-50-SC.pdf",
|
||||
"last_update": "2024-07-23"
|
||||
}
|
||||
1905
data/productProfiles/idrorame_flow_1850.json
Normal file
1905
data/productProfiles/idrorame_flow_1850.json
Normal file
File diff suppressed because it is too large
Load Diff
95
data/productProfiles/melody_flex_18293.json
Normal file
95
data/productProfiles/melody_flex_18293.json
Normal file
@ -0,0 +1,95 @@
|
||||
{
|
||||
"product_id": "melody_flex_18293",
|
||||
"product_name": "MELODY FLEX",
|
||||
"registration_number": "18293",
|
||||
"manufacturer": "Bayer CropScience S.r.l.",
|
||||
"active_ingredients": [
|
||||
"iprovalicarb",
|
||||
"folpet"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"90 g/kg",
|
||||
"563 g/kg"
|
||||
],
|
||||
"frac_groups": [
|
||||
"40",
|
||||
"M04"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"grapevine"
|
||||
],
|
||||
"target_diseases": [
|
||||
"downy mildew"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide"
|
||||
],
|
||||
"systemicity": "mixed",
|
||||
"preventive_action": true,
|
||||
"curative_action": true,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "Suitable for high disease pressure; increase dose to 1.8 kg/ha and shorten treatment interval to 10 days.",
|
||||
"reentry_interval_hours": null,
|
||||
"min_spray_volume": 200.0,
|
||||
"max_spray_volume": 1000.0,
|
||||
"phenology_constraints": "",
|
||||
"weather_constraints": "For daytime temperatures above 30°C, it is recommended to apply in the evening or early morning. Apply in the absence of wind.",
|
||||
"rainfastness": "",
|
||||
"temperature_constraints": "For daytime temperatures above 30°C, it is recommended to apply in the evening or early morning.",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "Melody Flex is not miscible with Bordeaux mixture, polysulfides, and white oils. If mixed with other formulations, the longest pre-harvest interval must be respected.",
|
||||
"phytotoxicity_constraints": "",
|
||||
"environmental_restrictions": "Very toxic to aquatic organisms. Do not apply iprovalicarb-based products on soils with low clay content (less than 8%). Do not contaminate water with the product or its container. Do not clean application equipment near surface water. Avoid contamination via drains from farmyards and roads.",
|
||||
"buffer_zone_requirements": "To protect aquatic organisms, respect one of the following alternative measures: do not treat within a 20-meter buffer zone from water bodies, of which 10 meters must be vegetated; OR do not treat within a 10-meter vegetated buffer zone from water bodies, using 50% drift reduction.",
|
||||
"resistance_management_summary": "It is advisable to alternate this product with fungicides having a different mechanism of action. Use CAA fungicides (like iprovalicarb) for a maximum of 4 applications per year, with no more than 2 consecutive applications, and not exceeding 50% of the total applications.",
|
||||
"application_recommendations": "When using low or ultra-low volume equipment, the product concentration must be increased to ensure the same dosage per hectare is applied. Do not apply by aerial means.",
|
||||
"safety_notes": "During mixing, loading, and application, wear protective clothing and suitable gloves. Do not re-enter treated areas until the spray has completely dried. During post-treatment field activities, wear suitable protective gloves.",
|
||||
"retrieval_summary": "Melody Flex is a mixed systemic (iprovalicarb) and contact (folpet) fungicide for controlling downy mildew on grapevine. It offers both preventive and curative action, making it suitable for use even under high disease pressure by adjusting the dose and application interval. The product contains FRAC group 40 and M04 active ingredients, requiring alternation with other modes of action for resistance management, with a maximum of 4 applications per season and no more than 2 consecutively. Key constraints include incompatibility with Bordeaux mixture, polysulfides, and white oils, and application restrictions in temperatures above 30°C. It is very toxic to aquatic life, requiring a 10-20 meter buffer zone from water bodies.",
|
||||
"uses": [
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.9,
|
||||
"dose_max": 0.9,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 180.0,
|
||||
"concentration_max": 450.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 12,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 28,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 500.0,
|
||||
"growth_stage_start": "BBCH 16 (leaves developed)",
|
||||
"growth_stage_end": "BBCH 61 (beginning of flowering)"
|
||||
},
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 1.8,
|
||||
"dose_max": 1.8,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 180.0,
|
||||
"concentration_max": 900.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 12,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 28,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 61 (beginning of flowering)",
|
||||
"growth_stage_end": ""
|
||||
}
|
||||
],
|
||||
"low_confidence_fields": [],
|
||||
"extraction_notes": "The label provides two distinct use cases for grapevine based on the growth stage, with different doses and spray volumes. These have been captured as two separate entries in the 'uses' array. The maximum number of applications (4) and the pre-harvest interval (28 days) apply to the entire season, across both application windows.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "22/01/2024",
|
||||
"source_file": "MELODY-FLEX.pdf",
|
||||
"last_update": "2024-06-21"
|
||||
}
|
||||
134
data/productProfiles/mikal_f_17113.json
Normal file
134
data/productProfiles/mikal_f_17113.json
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"product_id": "mikal_f_17113",
|
||||
"product_name": "MIKAL F",
|
||||
"registration_number": "17113",
|
||||
"manufacturer": "Bayer CropScience S.r.l.",
|
||||
"active_ingredients": [
|
||||
"folpet",
|
||||
"fosetyl-aluminium"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"250 g/kg",
|
||||
"500 g/kg"
|
||||
],
|
||||
"frac_groups": [
|
||||
"33",
|
||||
"M4"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"grapevine"
|
||||
],
|
||||
"target_diseases": [
|
||||
"downy mildew",
|
||||
"phomopsis (dead-arm)"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide"
|
||||
],
|
||||
"systemicity": "mixed",
|
||||
"preventive_action": true,
|
||||
"curative_action": false,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "Under high disease pressure, use the higher dose (4 kg/ha) and shorten the treatment interval to 10 days.",
|
||||
"reentry_interval_hours": null,
|
||||
"min_spray_volume": 100.0,
|
||||
"max_spray_volume": 1000.0,
|
||||
"phenology_constraints": "",
|
||||
"weather_constraints": "Operate in the absence of wind.",
|
||||
"rainfastness": "",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "The product may have compatibility issues when mixed with formulations containing copper, some biostimulants, and foliar fertilizers containing nitrogen (nitric and ammoniacal). Do not mix with oily formulations. Preliminary tests are recommended for these combinations.",
|
||||
"phytotoxicity_constraints": "",
|
||||
"environmental_restrictions": "Very toxic to aquatic organisms. Do not contaminate water with the product or its container. Do not clean application equipment near surface water. Avoid contamination via drainage systems from farms and roads.",
|
||||
"buffer_zone_requirements": "A 20-meter vegetated buffer zone from surface water bodies must be respected to protect aquatic organisms.",
|
||||
"resistance_management_summary": "It is advisable to alternate this product with fungicides having a different mechanism of action.",
|
||||
"application_recommendations": "Pour the product directly into the sprayer tank half-filled with water; then fill with the remaining amount of water and keep agitated. The mixture should be used within 48 hours of preparation, keeping the agitator running. For grapevine downy mildew, under high disease pressure, use the higher dose (4 kg/ha) and reduce the interval between treatments to 10 days.",
|
||||
"safety_notes": "Wear suitable gloves, protective clothing, and eye/face protection during mixing, loading, and application, and when in contact with contaminated surfaces. Before re-entering the treated area, wait for the vegetation to be completely dry.",
|
||||
"retrieval_summary": "MIKAL F is a fungicide for use on table and wine grapes, controlling downy mildew and phomopsis (dead-arm). It combines the systemic action of fosetyl-aluminium (FRAC 33) with the contact, multi-site action of folpet (FRAC M4), providing preventive control. The fosetyl-aluminium component is distributed throughout the plant, protecting new growth, while folpet acts on spore germination. The product is applied preventively, with specific timing for each disease. Key constraints include a 28-day PHI for wine grapes and a 70-day PHI for table grapes, a 20-meter buffer zone near water bodies, and incompatibility with copper-based products, certain foliar fertilizers, and oily formulations. For resistance management, alternation with fungicides with different modes of action is recommended.",
|
||||
"uses": [
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "phomopsis (dead-arm)",
|
||||
"setting": "",
|
||||
"dose_min": null,
|
||||
"dose_max": null,
|
||||
"dose_unit": "",
|
||||
"concentration_min": 300.0,
|
||||
"concentration_max": 300.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 28,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 07",
|
||||
"growth_stage_end": "BBCH 12"
|
||||
},
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 3.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 12,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 28,
|
||||
"spray_volume_min": 100.0,
|
||||
"spray_volume_max": 400.0,
|
||||
"growth_stage_start": "BBCH 13",
|
||||
"growth_stage_end": "BBCH 79"
|
||||
},
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "phomopsis (dead-arm)",
|
||||
"setting": "",
|
||||
"dose_min": null,
|
||||
"dose_max": null,
|
||||
"dose_unit": "",
|
||||
"concentration_min": 300.0,
|
||||
"concentration_max": 300.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 70,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "BBCH 07",
|
||||
"growth_stage_end": "BBCH 12"
|
||||
},
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 3.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 12,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 70,
|
||||
"spray_volume_min": 100.0,
|
||||
"spray_volume_max": 400.0,
|
||||
"growth_stage_start": "BBCH 13",
|
||||
"growth_stage_end": "BBCH 69"
|
||||
}
|
||||
],
|
||||
"low_confidence_fields": [],
|
||||
"extraction_notes": "The label distinguishes between 'uva da vino' (wine grape) and 'uva da tavola' (table grape). While the crop is 'grapevine' for both, separate use entries have been created due to different Pre-Harvest Intervals (28 days for wine, 70 days for table) and different end growth stages for downy mildew treatment. The PHI for each use case has been assigned based on the grape type.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "27/02/2018",
|
||||
"source_file": "MIKAL-F.pdf",
|
||||
"last_update": "2024-07-02"
|
||||
}
|
||||
76
data/productProfiles/pergado_d_16296.json
Normal file
76
data/productProfiles/pergado_d_16296.json
Normal file
@ -0,0 +1,76 @@
|
||||
{
|
||||
"product_id": "pergado_d_16296",
|
||||
"product_name": "PERGADO D",
|
||||
"registration_number": "16296",
|
||||
"manufacturer": "SYNGENTA ITALIA S.p.A.",
|
||||
"active_ingredients": [
|
||||
"mandipropamid",
|
||||
"dithianon"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"62.5 g/l",
|
||||
"250 g/l"
|
||||
],
|
||||
"frac_groups": [
|
||||
"40",
|
||||
"M9"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"grapevine"
|
||||
],
|
||||
"target_diseases": [
|
||||
"downy mildew"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide"
|
||||
],
|
||||
"systemicity": "mixed",
|
||||
"preventive_action": true,
|
||||
"curative_action": false,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "Use higher doses and shorter intervals under conditions favorable for pathogen development.",
|
||||
"reentry_interval_hours": null,
|
||||
"min_spray_volume": 150.0,
|
||||
"max_spray_volume": 1000.0,
|
||||
"phenology_constraints": "",
|
||||
"weather_constraints": "Apply in the absence of wind. Use higher doses and shorter intervals in weather conditions favorable for pathogen development.",
|
||||
"rainfastness": "Highly rainfast after the spray deposit has dried, due to retention in the waxy layers of the vegetation.",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "When tank-mixing with other formulations, a preliminary physical-chemical compatibility test should be performed. If incompatibilities occur, do not use the mixture. When mixing, the longest pre-harvest interval and the precautions for the most toxic product must be observed.",
|
||||
"phytotoxicity_constraints": "The product is generally selective for the indicated crops. It is advisable to carry out preliminary tests on small areas before extending the treatment to larger areas in the following cases: little-known or newly introduced varieties, post-flowering treatments. In case of tank-mixing with other formulations, perform a selectivity test beforehand.",
|
||||
"environmental_restrictions": "Very toxic to aquatic life with long lasting effects. Do not contaminate water with the product or its container. Do not clean application equipment near surface water. Avoid contamination via drainage systems from farms and roads.",
|
||||
"buffer_zone_requirements": "To protect aquatic organisms, a vegetated untreated buffer zone of 20 m from surface water bodies must be maintained, or 10 m in combination with drift-reducing nozzles (30% reduction) and application on the last row from the outside inwards (35% reduction). To protect bystanders, maintain an untreated safety buffer of 15 meters from non-agricultural areas, or 10 meters in combination with drift-reducing nozzles (30% reduction) and application on the last row from the outside inwards (35% reduction).",
|
||||
"resistance_management_summary": "PERGADO D contains two active substances with different mechanisms of action: mandipropamid (FRAC 40, CAA group) and dithianon (FRAC M9, quinone group), a multi-site contact fungicide with low resistance risk. Do not apply more than 4 treatments per year with products belonging to the CAA group.",
|
||||
"application_recommendations": "Start treatments when conditions are conducive to the onset of the disease. Use water volumes adequate for complete and homogeneous wetting of the treated vegetation, avoiding runoff. The hl doses are valid for a water volume of 1000 l/ha. For lower volumes (e.g., low volume), refer to the dose/ha, using a water volume of not less than 150 l/ha. For volumes greater than 1000 l/ha, refer to the per-hectolitre doses, not exceeding the maximum dose per hectare. To prepare the mixture, fill the tank one-third with water, add the product directly without pre-dilution, then complete filling while keeping the agitator running. Clean equipment thoroughly after application.",
|
||||
"safety_notes": "May cause an allergic skin reaction. Harmful if inhaled. Suspected of causing cancer. Wear protective gloves and clothing. IN CASE OF SKIN CONTACT: Wash with plenty of soap and water. In case of exposure or suspected exposure, consult a doctor. Remove contaminated clothing and wash it before reuse. Re-enter the field only when the vegetation is completely dry and wear protective clothing and gloves. During mixing/loading, wear a protective suit and gloves. For application with a cabbed tractor, wear gloves and work clothes. For application with a non-cabbed tractor, wear a protective suit with a hood and gloves.",
|
||||
"retrieval_summary": "PERGADO D is a fungicide for the control of downy mildew (Plasmopara viticola) on grapevine. It combines mandipropamid (FRAC 40) and dithianon (FRAC M9), providing mixed contact and translaminar/cytotropic systemicity. The product is recommended for preventive applications, with a portion penetrating the leaf to inhibit mycelial growth and sporulation. It is highly rainfast once the spray deposit has dried. Key constraints include a maximum of 4 applications per season, a pre-harvest interval of 42 days, and specific buffer zone requirements (20m, or 10m with mitigation) to protect aquatic organisms. For resistance management, no more than 4 treatments with CAA group fungicides (like mandipropamid) should be made per year. Phytotoxicity tests are advised on new varieties or for post-flowering applications.",
|
||||
"uses": [
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 1.4,
|
||||
"dose_max": 2.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 140.0,
|
||||
"concentration_max": 200.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 8,
|
||||
"treatment_interval_max_days": 12,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 42,
|
||||
"spray_volume_min": 150.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
}
|
||||
],
|
||||
"low_confidence_fields": [],
|
||||
"extraction_notes": "The registration number on the label is 'n. 16296 del 18.04.2017'. I have extracted only the number '16296'. The re-entry interval is not specified in hours, but as 'when vegetation is completely dry'. This information has been added to safety_notes.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "16/06/2021, valid from 4.12.2021",
|
||||
"source_file": "PERGADO-D.pdf",
|
||||
"last_update": "2024-07-23"
|
||||
}
|
||||
545
data/productProfiles/pergado_sc_13382.json
Normal file
545
data/productProfiles/pergado_sc_13382.json
Normal file
@ -0,0 +1,545 @@
|
||||
{
|
||||
"product_id": "pergado_sc_13382",
|
||||
"product_name": "PERGADO SC",
|
||||
"registration_number": "13382",
|
||||
"manufacturer": "Syngenta Italia S.p.A.",
|
||||
"active_ingredients": [
|
||||
"mandipropamid"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"250 g/l"
|
||||
],
|
||||
"frac_groups": [
|
||||
"40"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"artichoke",
|
||||
"broccoli",
|
||||
"cauliflower",
|
||||
"chard",
|
||||
"eggplant",
|
||||
"grapevine",
|
||||
"herbs_fresh",
|
||||
"lettuce",
|
||||
"melon",
|
||||
"potato",
|
||||
"pumpkin",
|
||||
"radish",
|
||||
"spinach",
|
||||
"tomato",
|
||||
"watermelon",
|
||||
"zucchini"
|
||||
],
|
||||
"target_diseases": [
|
||||
"downy mildew",
|
||||
"late blight"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide"
|
||||
],
|
||||
"systemicity": "translaminar",
|
||||
"preventive_action": true,
|
||||
"curative_action": true,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "Use higher doses and shorter intervals under conditions favorable for rapid pathogen development (frequent or intense rainfall).",
|
||||
"reentry_interval_hours": null,
|
||||
"min_spray_volume": 600.0,
|
||||
"max_spray_volume": 1000.0,
|
||||
"phenology_constraints": "",
|
||||
"weather_constraints": "Operate in the absence of wind. Use higher doses and shorter intervals during frequent or intense rainfall.",
|
||||
"rainfastness": "The product has notable resistance to washout after the spray deposit has dried.",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "When mixing with other formulations, perform a compatibility test beforehand. If mixing, observe the precautionary standards and longest pre-harvest interval of the most toxic product in the mixture.",
|
||||
"phytotoxicity_constraints": "For uncommon or newly introduced varieties, especially horticultural crops, it is advisable to test on small areas before extending the treatment to larger areas. Do not apply the product in grapevine nurseries.",
|
||||
"environmental_restrictions": "Toxic to aquatic life with long lasting effects. Do not contaminate water with the product or its container.",
|
||||
"buffer_zone_requirements": "To protect aquatic organisms, respect an untreated buffer zone of: 3 meters from surface water bodies for grapevine; 1 meter from surface water bodies for potato, lettuce, salads, spinach and similar, fresh herbs, cucurbits, tomato, and eggplant.",
|
||||
"resistance_management_summary": "For grapevine downy mildew (Plasmopara viticola), do not apply more than 4 treatments per year with products belonging to the CAA group (FRAC 40).",
|
||||
"application_recommendations": "Use sufficient water volumes for complete and uniform coverage of the treated crops, avoiding runoff. For radish, a maximum of 6 treatments per year is allowed, corresponding to 2 treatments per crop cycle for a total of 3 crop cycles per year. Ensure equipment is clean and properly calibrated. Fill the tank halfway with water, add the product, then complete filling while keeping the mixture agitated. Clean equipment with water and a suitable detergent after application.",
|
||||
"safety_notes": "Use suitable gloves during mixing and loading. Re-enter the field only when the vegetation is completely dry.",
|
||||
"retrieval_summary": "PERGADO SC is a translaminar fungicide containing mandipropamid (FRAC 40) for the control of Oomycetes like downy mildew and late blight on grapevine, potato, and various vegetable crops. It offers strong preventive and early curative activity by inhibiting mycelial growth during incubation. The product is highly rainfast after drying. Application is recommended preventively, with higher rates and shorter intervals under high disease pressure. Key constraints include a maximum of 4 applications per season on most crops (6 on potato) and specific buffer zones of 1-3 meters from water bodies. It is not for use in grapevine nurseries, and phytotoxicity tests are advised on new or uncommon varieties.",
|
||||
"uses": [
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.5,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 50.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 12,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "late blight",
|
||||
"setting": "field",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 60.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "late blight",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 60.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "eggplant",
|
||||
"disease": "late blight",
|
||||
"setting": "field",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 60.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "eggplant",
|
||||
"disease": "late blight",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 60.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "melon",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 60.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "melon",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 60.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "watermelon",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 60.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "watermelon",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 60.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "pumpkin",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 60.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "pumpkin",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 60.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "zucchini",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 60.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "zucchini",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 60.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "potato",
|
||||
"disease": "late blight",
|
||||
"setting": "field",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 60.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "lettuce",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 60.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "lettuce",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 60.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "spinach",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 60.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "spinach",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 60.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "herbs_fresh",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "herbs_fresh",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "artichoke",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 60.0,
|
||||
"concentration_max": 60.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "chard",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 100.0,
|
||||
"concentration_max": 100.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 600.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "cauliflower",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 75.0,
|
||||
"concentration_max": 75.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 14,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "broccoli",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 75.0,
|
||||
"concentration_max": 75.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 14,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "radish",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.6,
|
||||
"dose_max": 0.6,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 100.0,
|
||||
"concentration_max": 100.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 7,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": 600.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
}
|
||||
],
|
||||
"low_confidence_fields": [],
|
||||
"extraction_notes": "The label for 'LATTUGHE E INSALATE, SPINACI E SIMILI' and 'ERBE FRESCHE' specifies different maximum treatment counts for field vs. greenhouse settings. This has been captured by creating separate use entries for each setting. For Radish, the label specifies 6 treatments per year, broken down as 2 treatments per cycle for 3 cycles; the total annual maximum (6) has been used for max_treatments_per_season, and a note added to application_recommendations.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "28.11.2022",
|
||||
"source_file": "PERGADO-SC.pdf",
|
||||
"last_update": "2024-07-01"
|
||||
}
|
||||
2679
data/productProfiles/poltiglia_20_pb_manica_13635.json
Normal file
2679
data/productProfiles/poltiglia_20_pb_manica_13635.json
Normal file
File diff suppressed because it is too large
Load Diff
78
data/productProfiles/profiler_16442.json
Normal file
78
data/productProfiles/profiler_16442.json
Normal file
@ -0,0 +1,78 @@
|
||||
{
|
||||
"product_id": "profiler_16442",
|
||||
"product_name": "PROFILER®",
|
||||
"registration_number": "16442",
|
||||
"manufacturer": "Bayer CropScience S.r.l.",
|
||||
"active_ingredients": [
|
||||
"fluopicolide",
|
||||
"fosetyl-aluminium"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"44.4 g/kg",
|
||||
"666.7 g/kg"
|
||||
],
|
||||
"frac_groups": [
|
||||
"43",
|
||||
"33"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"grapevine"
|
||||
],
|
||||
"target_diseases": [
|
||||
"downy mildew"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide"
|
||||
],
|
||||
"systemicity": "mixed",
|
||||
"preventive_action": true,
|
||||
"curative_action": false,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "Use shorter interval and higher dose under environmental conditions favorable to pathogen development.",
|
||||
"reentry_interval_hours": null,
|
||||
"min_spray_volume": 1000.0,
|
||||
"max_spray_volume": 1000.0,
|
||||
"phenology_constraints": "",
|
||||
"weather_constraints": "Apply in the absence of wind.",
|
||||
"rainfastness": "",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "May have compatibility issues when mixed with formulations containing copper, some biostimulants, and foliar fertilizers containing nitrogen (nitric and ammoniacal). Do not mix with oil-based formulations. It is advisable to carry out preliminary tests to verify compatibility. If mixed with other formulations, the longest pre-harvest interval must be respected.",
|
||||
"phytotoxicity_constraints": "",
|
||||
"environmental_restrictions": "Toxic to aquatic life with long lasting effects. May cause long-term and widespread contamination of water resources. To protect groundwater, do not apply on soils containing more than 80% sand. Do not contaminate water with the product or its container. Do not clean application equipment near surface water. Avoid contamination via drainage systems from farms and roads.",
|
||||
"buffer_zone_requirements": "",
|
||||
"resistance_management_summary": "It is advisable to alternate this product with fungicides having a different mechanism of action. On wine grapes, if alternating with fluopyram-based formulations, do not exceed 2 total treatments per year. If tank-mixing with fluopyram-based products, apply only once per year. Do not apply fluopicolide-based products if 2 applications of fluopyram-based products are made per year.",
|
||||
"application_recommendations": "Pour the product directly into the sprayer tank half-filled with water, then fill with the remaining water and keep agitated. For low or ultra-low volume equipment, the product concentration must be increased to ensure the same dosage per hectare.",
|
||||
"safety_notes": "Causes serious eye irritation. Suspected of damaging the unborn child. Wear suitable gloves during mixing/loading and application. Wait until vegetation is completely dry before re-entering the treated area.",
|
||||
"retrieval_summary": "PROFILER® is a fungicide for the preventive control of downy mildew (Plasmopara viticola) on grapevine. It contains fluopicolide (FRAC 43) and fosetyl-aluminium (FRAC 33), providing mixed systemic and translaminar activity. The product is applied from pre-flowering to fruit set, with a maximum of two applications per season at a 10-14 day interval. Key constraints include a 28-day pre-harvest interval, specific resistance management rules regarding alternation with fluopyram, and incompatibility with copper, certain foliar fertilizers, and oil-based formulations. It is toxic to aquatic life and has restrictions on use in sandy soils to protect groundwater.",
|
||||
"uses": [
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 2.25,
|
||||
"dose_max": 3.0,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 225.0,
|
||||
"concentration_max": 300.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 28,
|
||||
"spray_volume_min": 1000.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "pre-flowering",
|
||||
"growth_stage_end": "fruit set"
|
||||
}
|
||||
],
|
||||
"low_confidence_fields": [
|
||||
"reentry_interval_hours"
|
||||
],
|
||||
"extraction_notes": "The label specifies re-entry is permitted once vegetation is dry, rather than a fixed number of hours, so reentry_interval_hours is set to null.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "09/06/2023",
|
||||
"source_file": "PROFILER.pdf",
|
||||
"last_update": "2024-06-21"
|
||||
}
|
||||
135
data/productProfiles/quadris_9210.json
Normal file
135
data/productProfiles/quadris_9210.json
Normal file
@ -0,0 +1,135 @@
|
||||
{
|
||||
"product_id": "quadris_9210",
|
||||
"product_name": "Quadris",
|
||||
"registration_number": "9210",
|
||||
"manufacturer": "SYNGENTA ITALIA S.p.A.",
|
||||
"active_ingredients": [
|
||||
"azoxystrobin"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"250 g/l"
|
||||
],
|
||||
"frac_groups": [
|
||||
"11"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"grapevine"
|
||||
],
|
||||
"target_diseases": [
|
||||
"black rot",
|
||||
"downy mildew",
|
||||
"phomopsis (dead-arm)",
|
||||
"powdery mildew"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide"
|
||||
],
|
||||
"systemicity": "translaminar",
|
||||
"preventive_action": true,
|
||||
"curative_action": false,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "Use higher doses and shorter intervals under conditions very favorable to pathogen development.",
|
||||
"reentry_interval_hours": null,
|
||||
"min_spray_volume": 1000.0,
|
||||
"max_spray_volume": 1000.0,
|
||||
"phenology_constraints": "",
|
||||
"weather_constraints": "Operate in the absence of wind.",
|
||||
"rainfastness": "",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "When mixing with other formulations, perform a compatibility test beforehand. If mixing, observe the precautionary standards for the most toxic products and the longest pre-harvest intervals.",
|
||||
"phytotoxicity_constraints": "Quadris can be phytotoxic to certain apple varieties: Gala and its derivatives (e.g., Royal Gala, Mondial Gala, Galaxy), Renetta del Canadà, McIntosh and its derivatives (e.g., Summered), Delbar estivale, Cox and its derivatives (e.g., Cox's Orange Pippin). Avoid spray drift onto sensitive apple varieties. Do not use equipment on sensitive apple varieties that has been used to apply Quadris in vineyards. Although selective on widely grown apple varieties (e.g., Golden Delicious, Red Delicious, Imperatore, Granny Smith, Jonagold, Stayman), operate with caution near orchards with less common or newly introduced varieties.",
|
||||
"environmental_restrictions": "Very toxic to aquatic life with long lasting effects. Do not contaminate water with the product or its container. Do not clean application equipment near surface water. Avoid contamination via drainage systems from farms and roads. To protect groundwater, do not apply on alkaline soils. Selective for bees and predatory mites (e.g., Typhlodromus pyri and Amblyseius aberrans). Does not affect fermentation processes of musts or alter the organoleptic characteristics of wines.",
|
||||
"buffer_zone_requirements": "To protect aquatic organisms, respect a 10-meter untreated vegetated buffer strip from surface water bodies. For sloped terrains (>4%), permanent grass cover must be established in the inter-row of the vineyard.",
|
||||
"resistance_management_summary": "This product is a QoI fungicide (FRAC group 11). To manage resistance, always follow specific FRAC guidelines. Against powdery mildew, do not make more than 2 consecutive applications. Against downy mildew, always use in a tank mix with fungicides having a different mode of action. If loss of efficacy of QoI inhibitors is observed, suspend use and replace with a fungicide with a different mode of action.",
|
||||
"application_recommendations": "Apply using water volumes adequate for complete and uniform coverage, avoiding runoff. For treatments with volumes less than 1000 l/ha when the vine is in full vegetation, refer to the indicated per-hectare dose. Do not apply in nurseries. To prepare the mixture, fill the tank one-third with water, add the product directly without pre-dilution, then complete filling while keeping the agitator running. Clean equipment with water and a suitable detergent after application.",
|
||||
"safety_notes": "Do not re-enter the treated area until the vegetation is completely dry. Contains 1,2-benzisothiazol-3(2H)-one, which may cause an allergic reaction. To avoid risks to human health and the environment, follow the instructions for use.",
|
||||
"retrieval_summary": "Quadris is a translaminar fungicide containing azoxystrobin (FRAC 11) for use on grapevine (both table and wine grapes). It provides long-lasting preventive control against powdery mildew, downy mildew, black rot, and phomopsis (dead-arm). The product is selective for bees and predatory mites, making it suitable for IPM programs, but it is very toxic to aquatic life, requiring a 10-meter buffer zone. Strict resistance management is required: no more than two consecutive applications against powdery mildew and mandatory tank-mixing for downy mildew control. Quadris is phytotoxic to several apple varieties, and spray drift must be carefully avoided. The pre-harvest interval is 21 days, and re-entry is permitted after the spray has dried.",
|
||||
"uses": [
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "powdery mildew",
|
||||
"setting": "",
|
||||
"dose_min": 1.0,
|
||||
"dose_max": 1.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 75.0,
|
||||
"concentration_max": 100.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 12,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": 1000.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "phomopsis (dead-arm)",
|
||||
"setting": "",
|
||||
"dose_min": 1.0,
|
||||
"dose_max": 1.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 75.0,
|
||||
"concentration_max": 100.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 12,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": 1000.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "black rot",
|
||||
"setting": "",
|
||||
"dose_min": 1.0,
|
||||
"dose_max": 1.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 75.0,
|
||||
"concentration_max": 100.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 12,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": 1000.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 1.0,
|
||||
"dose_max": 1.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 75.0,
|
||||
"concentration_max": 100.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 12,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": 1000.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
}
|
||||
],
|
||||
"low_confidence_fields": [
|
||||
"reentry_interval_hours"
|
||||
],
|
||||
"extraction_notes": "The re-entry interval is not specified in hours, but as the time required for the vegetation to dry completely. This information has been added to the safety_notes field.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "16/06/2021",
|
||||
"source_file": "QUADRIS.pdf",
|
||||
"last_update": "2024-07-23"
|
||||
}
|
||||
94
data/productProfiles/quantum_l_17078.json
Normal file
94
data/productProfiles/quantum_l_17078.json
Normal file
@ -0,0 +1,94 @@
|
||||
{
|
||||
"product_id": "quantum_l_17078",
|
||||
"product_name": "QUANTUM L",
|
||||
"registration_number": "17078",
|
||||
"manufacturer": "ADAMA Italia S.r.l.",
|
||||
"active_ingredients": [
|
||||
"dimethomorph"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"500 g/l"
|
||||
],
|
||||
"frac_groups": [
|
||||
"40"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"grapevine",
|
||||
"tomato"
|
||||
],
|
||||
"target_diseases": [
|
||||
"downy mildew",
|
||||
"late blight"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide"
|
||||
],
|
||||
"systemicity": "translaminar",
|
||||
"preventive_action": true,
|
||||
"curative_action": false,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "",
|
||||
"reentry_interval_hours": null,
|
||||
"min_spray_volume": 200.0,
|
||||
"max_spray_volume": 1000.0,
|
||||
"phenology_constraints": "",
|
||||
"weather_constraints": "Apply in the absence of wind.",
|
||||
"rainfastness": "Rainfast after 1-2 hours.",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "The product is not miscible with fungicide or insecticide formulations with an alkaline reaction (e.g., Bordeaux mixture, polysulfides, etc.). When tank-mixing, the longest pre-harvest interval must be respected and the precautionary measures for the most toxic products must be observed.",
|
||||
"phytotoxicity_constraints": "",
|
||||
"environmental_restrictions": "Toxic to aquatic life with long lasting effects. Do not contaminate water with the product or its container. Do not clean application equipment near surface water. Avoid contamination via drains from farmyards and roads.",
|
||||
"buffer_zone_requirements": "To protect aquatic species, an untreated buffer zone of 10 meters is required.",
|
||||
"resistance_management_summary": "Do not apply more than 4 treatments per year, and no more than three consecutive treatments.",
|
||||
"application_recommendations": "For grapevine and tomato, apply in a mixture with contact anti-downy mildew products. Do not apply by air.",
|
||||
"safety_notes": "May damage fertility. Contains 1,2-Benzisothiazolin-3-one, may produce an allergic reaction. Keep out of reach of children. Obtain special instructions before use. Wear protective gloves/protective clothing/eye protection/face protection. Dispose of contents/container in accordance with national regulations.",
|
||||
"retrieval_summary": "QUANTUM L is a translaminar fungicide containing dimethomorph (FRAC 40) for the control of downy mildew on grapevine and late blight on field-grown tomato. It acts by disrupting the fungal cell wall formation and is rapidly absorbed by leaves (rainfast in 1-2 hours), moving from the upper to the lower surface. The product is intended for preventive use, applied in a mixture with contact fungicides at fixed intervals of 8-12 days. Key constraints include a maximum of 4 applications per season (with no more than 3 consecutive), a 10-meter buffer zone to protect aquatic life, and incompatibility with alkaline-reaction products like Bordeaux mixture. The pre-harvest interval is 10 days for grapevine and 7 days for tomato.",
|
||||
"uses": [
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.4,
|
||||
"dose_max": 0.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 12,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 10,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "late blight",
|
||||
"setting": "field",
|
||||
"dose_min": 0.4,
|
||||
"dose_max": 0.5,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 8,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
}
|
||||
],
|
||||
"low_confidence_fields": [],
|
||||
"extraction_notes": "The registration number on the label is '17078 del 26.10.2017'. The number part '17078' has been extracted for the structured field. The disease 'Peronospora (Phytophthora infestans)' on tomato has been correctly mapped to its common English name 'late blight'.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "04.10.2022",
|
||||
"source_file": "QUANTUM-L.pdf",
|
||||
"last_update": "2024-06-21"
|
||||
}
|
||||
156
data/productProfiles/quasar_6_24_r_12636.json
Normal file
156
data/productProfiles/quasar_6_24_r_12636.json
Normal file
@ -0,0 +1,156 @@
|
||||
{
|
||||
"product_id": "quasar_6_24_r_12636",
|
||||
"product_name": "QUASAR® 6-24 R",
|
||||
"registration_number": "12636",
|
||||
"manufacturer": "DIACHEM S.p.A.",
|
||||
"active_ingredients": [
|
||||
"dimethomorph",
|
||||
"copper"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"60 g/kg",
|
||||
"240 g/kg"
|
||||
],
|
||||
"frac_groups": [
|
||||
"40",
|
||||
"M1"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"grapevine",
|
||||
"melon",
|
||||
"potato",
|
||||
"tomato"
|
||||
],
|
||||
"target_diseases": [
|
||||
"downy mildew",
|
||||
"late blight"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide"
|
||||
],
|
||||
"systemicity": "locally_systemic",
|
||||
"preventive_action": true,
|
||||
"curative_action": true,
|
||||
"eradicant_action": true,
|
||||
"recommended_disease_pressure": "",
|
||||
"reentry_interval_hours": null,
|
||||
"min_spray_volume": null,
|
||||
"max_spray_volume": null,
|
||||
"phenology_constraints": "Do not apply during flowering.",
|
||||
"weather_constraints": "Apply in the absence of wind.",
|
||||
"rainfastness": "",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "",
|
||||
"phytotoxicity_constraints": "On melon, the product may be slightly phytotoxic on some varieties. Preliminary tests are recommended.",
|
||||
"environmental_restrictions": "Very toxic to aquatic life with long lasting effects. Do not contaminate water with the product or its container. Do not clean application equipment near surface water. Avoid contamination via drains from farmyards and roads. Do not exceed a cumulative application of 28 kg of copper per hectare over a 7-year period; it is recommended to respect an average applied quantity of 4 kg of copper per hectare per year.",
|
||||
"buffer_zone_requirements": "To protect aquatic organisms, respect a 10 m untreated buffer zone from surface water bodies.",
|
||||
"resistance_management_summary": "To minimize resistance risk, use preventively, respecting doses, intervals, and treatment limits. Rotate with fungicides having a different mode of action. Do not make more than 2 consecutive applications. Maximum total applications of CAA group fungicides per year: 4 for grapevine and potato, 3 for tomato and melon.",
|
||||
"application_recommendations": "Apply with normal volume sprayers using enough water to wet all vegetation evenly without runoff. For low volume sprayers, refer to the dose per hectare. No adjuvant is necessary. To prepare the mixture, fill the tank halfway with water, start the agitator, add the required product dose, and then add the remaining water while continuing to agitate.",
|
||||
"safety_notes": "Do not re-enter the treated area until the vegetation is completely dry. During mixing and loading, wear a work suit, gloves, and respiratory protection (FFP2/P2).",
|
||||
"retrieval_summary": "QUASAR® 6-24 R is a locally systemic fungicide containing dimethomorph (FRAC 40) and copper (FRAC M1) for the control of downy mildew and late blight on grapevine, tomato, potato, and melon. It offers preventive, curative, and antisporulant activity by disrupting fungal cell wall formation. The product is applied at 3.5 kg/ha, with treatment intervals of 7-12 days depending on the crop. Key constraints include a prohibition on application during flowering and potential phytotoxicity on some melon varieties. For resistance management, a maximum of 2 consecutive applications is permitted, with crop-specific limits on total CAA group fungicide use per season. Environmental protection requires a 10-meter buffer zone from water bodies and adherence to long-term copper application limits.",
|
||||
"uses": [
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 3.5,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 350.0,
|
||||
"concentration_max": 350.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 8,
|
||||
"treatment_interval_max_days": 12,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 10,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "late blight",
|
||||
"setting": "field",
|
||||
"dose_min": 3.5,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 350.0,
|
||||
"concentration_max": 350.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "late blight",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 3.5,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 350.0,
|
||||
"concentration_max": 350.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "potato",
|
||||
"disease": "late blight",
|
||||
"setting": "",
|
||||
"dose_min": 3.5,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 350.0,
|
||||
"concentration_max": 350.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "melon",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 3.5,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 350.0,
|
||||
"concentration_max": 350.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
}
|
||||
],
|
||||
"low_confidence_fields": [],
|
||||
"extraction_notes": "The label for tomato specifies '(pieno campo e serra)' which translates to '(open field and greenhouse)'. This has been expanded into two separate 'uses' entries, one for 'field' and one for 'greenhouse', both sharing the same parameters as the label does not differentiate them further.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "25/11/2022",
|
||||
"source_file": "QUASAR-6-24-R.pdf",
|
||||
"last_update": "2024-07-01"
|
||||
}
|
||||
2173
data/productProfiles/qumran_flow_10491.json
Normal file
2173
data/productProfiles/qumran_flow_10491.json
Normal file
File diff suppressed because it is too large
Load Diff
1939
data/productProfiles/ramin_sc_0916.json
Normal file
1939
data/productProfiles/ramin_sc_0916.json
Normal file
File diff suppressed because it is too large
Load Diff
570
data/productProfiles/ridomil_gold_480_sl_18800.json
Normal file
570
data/productProfiles/ridomil_gold_480_sl_18800.json
Normal file
@ -0,0 +1,570 @@
|
||||
{
|
||||
"product_id": "ridomil_gold_480_sl_18800",
|
||||
"product_name": "RIDOMIL GOLD 480 SL",
|
||||
"registration_number": "18800",
|
||||
"manufacturer": "SYNGENTA ITALIA S.p.A.",
|
||||
"active_ingredients": [
|
||||
"metalaxyl-m"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"465.2 g/l"
|
||||
],
|
||||
"frac_groups": [
|
||||
"4"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"broccoli",
|
||||
"cabbage",
|
||||
"cauliflower",
|
||||
"clementine",
|
||||
"cucumber",
|
||||
"grapefruit",
|
||||
"grapevine",
|
||||
"herbs_fresh",
|
||||
"lettuce",
|
||||
"lime",
|
||||
"mandarin",
|
||||
"melon",
|
||||
"onion",
|
||||
"orange",
|
||||
"potato",
|
||||
"savoy_cabbage",
|
||||
"spinach",
|
||||
"tomato",
|
||||
"watermelon"
|
||||
],
|
||||
"target_diseases": [
|
||||
"downy mildew",
|
||||
"late blight",
|
||||
"phytophthora"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide"
|
||||
],
|
||||
"systemicity": "systemic",
|
||||
"preventive_action": true,
|
||||
"curative_action": true,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "",
|
||||
"reentry_interval_hours": null,
|
||||
"min_spray_volume": 200.0,
|
||||
"max_spray_volume": 1500.0,
|
||||
"phenology_constraints": "",
|
||||
"weather_constraints": "Operate in the absence of wind.",
|
||||
"rainfastness": "",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "If mixing with other formulations, perform a compatibility test beforehand. When mixing, observe the precautionary rules and longest pre-harvest interval of the most toxic product in the mixture.",
|
||||
"phytotoxicity_constraints": "The product is generally selective for the indicated crops. For uncommon or newly introduced varieties, it is recommended to perform preliminary tests on small areas before treating larger areas.",
|
||||
"environmental_restrictions": "Toxic to aquatic life with long lasting effects. Do not contaminate water with the product or its container. Do not clean application equipment near surface water. Avoid contamination via drains from farmyards and roads.",
|
||||
"buffer_zone_requirements": "",
|
||||
"resistance_management_summary": "Contains metalaxyl-m (FRAC group 4). The product must be applied preventively and always in a mixture with fungicides having a different mechanism of action to control downy mildew and phytophthora. It is recommended to follow specific FRAC guidelines for the crop and pathogen.",
|
||||
"application_recommendations": "Use adequate water volumes to ensure complete and uniform wetting of the treated vegetation, avoiding runoff. Do not apply by air.",
|
||||
"safety_notes": "Wear protective gloves/clothing and eye/face protection. Do not eat, drink or smoke during use. For citrus and grapevine, protect eyes and face during mixing, loading, and application. For field-grown vegetables, protect eyes and face; for manual applications, also wear a mask (FP2, P2 or similar), work clothes, and gloves. For greenhouse vegetables, wear gloves and a face shield during mixing/loading, and waterproof clothing and gloves during application. Re-entry is permitted after 1 day for grapevine, after 10 days for brassicas, and when foliage is completely dry for greenhouse crops. For other crops, workers re-entering treated areas should wear work clothes (long pants and long-sleeved shirt) and gloves.",
|
||||
"retrieval_summary": "RIDOMIL GOLD 480 SL is a systemic fungicide containing metalaxyl-m (FRAC 4) for the control of downy mildew, late blight, and phytophthora on grapevine, citrus, and a range of vegetable crops. Its systemic action provides both preventive and curative protection to existing and newly formed vegetation. The product is rapidly absorbed. For resistance management, it must always be applied preventively and in a tank mix with fungicides having a different mode of action. Key constraints include specific pre-harvest intervals varying from 3 to 30 days depending on the crop, and crop-specific re-entry intervals (1 day for grapevine, 10 days for brassicas). It is toxic to aquatic organisms, and care must be taken to avoid water contamination. Application should be done in calm wind conditions.",
|
||||
"uses": [
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 20.0,
|
||||
"concentration_max": 20.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 20,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "from bud break",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "orange",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 14.0,
|
||||
"concentration_max": 14.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 14,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1500.0,
|
||||
"growth_stage_start": "from fruit set",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "mandarin",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 14.0,
|
||||
"concentration_max": 14.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 14,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1500.0,
|
||||
"growth_stage_start": "from fruit set",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "clementine",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 14.0,
|
||||
"concentration_max": 14.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 14,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1500.0,
|
||||
"growth_stage_start": "from fruit set",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "lime",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 14.0,
|
||||
"concentration_max": 14.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 14,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1500.0,
|
||||
"growth_stage_start": "from fruit set",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "grapefruit",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 14.0,
|
||||
"concentration_max": 14.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 14,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1500.0,
|
||||
"growth_stage_start": "from fruit set",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "potato",
|
||||
"disease": "late blight",
|
||||
"setting": "field",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 14,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 600.0,
|
||||
"growth_stage_start": "from bud break",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "onion",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 14,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "from fifth leaf to harvest",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "broccoli",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 20,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "from first true leaf stage",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "cauliflower",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 20,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "from first true leaf stage",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "cabbage",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 30,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "from first true leaf stage",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "savoy_cabbage",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 30,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "from first true leaf stage",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "cucumber",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "from third leaf stage",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "cucumber",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 14,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "from third leaf stage",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "melon",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "from first visible shoot",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "melon",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "from first visible shoot",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "watermelon",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "from first visible shoot",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "watermelon",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "from first visible shoot",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "lettuce",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 10,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "from first true leaf stage",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "lettuce",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 10,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "from first true leaf stage",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "spinach",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 10,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "from first true leaf stage",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "spinach",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 10,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "from first true leaf stage",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "herbs_fresh",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 10,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "from first true leaf stage",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "herbs_fresh",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": null,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 1,
|
||||
"pre_harvest_interval_days": 10,
|
||||
"spray_volume_min": 200.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "from first true leaf stage",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "late blight",
|
||||
"setting": "field",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "from fifth leaf stage",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "late blight",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 0.2,
|
||||
"dose_max": 0.2,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 20.0,
|
||||
"concentration_max": 20.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 300.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "from fifth leaf stage",
|
||||
"growth_stage_end": ""
|
||||
}
|
||||
],
|
||||
"low_confidence_fields": [
|
||||
"reentry_interval_hours"
|
||||
],
|
||||
"extraction_notes": "Re-entry interval varies by crop (1 day for grapevine, 10 days for brassicas, 'when dry' for greenhouse), so the top-level 'reentry_interval_hours' is set to null. The specific intervals are detailed in 'safety_notes'.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "04/02/2026",
|
||||
"source_file": "RIDOMIL-GOLD-480-SL.pdf",
|
||||
"last_update": "2024-07-23"
|
||||
}
|
||||
492
data/productProfiles/riviera_r_wg_17023.json
Normal file
492
data/productProfiles/riviera_r_wg_17023.json
Normal file
@ -0,0 +1,492 @@
|
||||
{
|
||||
"product_id": "riviera_r_wg_17023",
|
||||
"product_name": "RIVIERA R WG",
|
||||
"registration_number": "17023",
|
||||
"manufacturer": "ADAMA ITALIA SRL",
|
||||
"active_ingredients": [
|
||||
"Dimethomorph",
|
||||
"Copper hydroxide"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"60 g/kg",
|
||||
"140 g/kg"
|
||||
],
|
||||
"frac_groups": [
|
||||
"40",
|
||||
"M1"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"chicory",
|
||||
"cucumber",
|
||||
"dandelion",
|
||||
"eggplant",
|
||||
"endive",
|
||||
"escarole",
|
||||
"gherkin",
|
||||
"grapevine",
|
||||
"lettuce",
|
||||
"melon",
|
||||
"potato",
|
||||
"pumpkin",
|
||||
"rocket",
|
||||
"tomato",
|
||||
"valerianella",
|
||||
"watermelon",
|
||||
"zucchini"
|
||||
],
|
||||
"target_diseases": [
|
||||
"downy mildew",
|
||||
"late blight"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide"
|
||||
],
|
||||
"systemicity": "mixed",
|
||||
"preventive_action": true,
|
||||
"curative_action": false,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "",
|
||||
"reentry_interval_hours": 24,
|
||||
"min_spray_volume": 500.0,
|
||||
"max_spray_volume": 1000.0,
|
||||
"phenology_constraints": "",
|
||||
"weather_constraints": "",
|
||||
"rainfastness": "",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "",
|
||||
"phytotoxicity_constraints": "May be slightly phytotoxic on some melon varieties. Preliminary tests are recommended.",
|
||||
"environmental_restrictions": "Very toxic to aquatic life with long lasting effects. Do not contaminate water with the product or its container. Do not clean application equipment near surface water. Avoid contamination via drains from farmyards and roads. To minimize potential soil accumulation and exposure for non-target organisms, do not exceed a cumulative application of 28 kg of copper per hectare over 7 years; it is recommended to respect the average applied quantity of 4 kg of copper per hectare per year.",
|
||||
"buffer_zone_requirements": "For treatments on tomato, eggplant, cucumber, gherkin, zucchini, potato, grapevine, lettuces and other salads including brassicas, to protect aquatic organisms, respect a 10-meter untreated vegetated buffer zone from surface water bodies.",
|
||||
"resistance_management_summary": "To avoid the development of resistance, use the product at the dosages indicated on the label within a defense program that includes products with different mechanisms of action.",
|
||||
"application_recommendations": "Apply with spray volumes of 500-1000 l/ha. To prepare the mixture, dilute the product in a small amount of water, then fill the tank to the final volume. Do not apply by air. If mixed with other formulations, the longest pre-harvest interval must be respected, and the precautionary standards for the most toxic products must be observed.",
|
||||
"safety_notes": "Keep out of reach of children. Wear protective gloves and clothing during handling of the concentrate, mixing, and loading. Replace protective gear and wear new ones during application. Do not re-enter the treated area until the vegetation is completely dry and not before 24 hours have passed since the last treatment. At harvest, re-enter the treated area wearing protective gloves and clothing.",
|
||||
"retrieval_summary": "RIVIERA R WG is a fungicide for the control of downy mildew and late blight on grapevine, potato, and various vegetable crops including tomato, eggplant, cucurbits, and lettuces. It combines the locally systemic action of Dimethomorph (FRAC 40) with the contact, multi-site activity of copper hydroxide (FRAC M1), providing both preventive and translaminar effects. The product is applied at intervals of 7-14 days, starting when conditions are favorable for disease development. Key constraints include a 24-hour re-entry interval, a 10-meter buffer zone near water bodies for most crops, and a cumulative limit on copper application over a 7-year period. It may be phytotoxic to some melon varieties, and aerial application is prohibited. Resistance management requires alternating with fungicides having different modes of action.",
|
||||
"uses": [
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": null,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 250.0,
|
||||
"concentration_max": 350.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 28,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "late blight",
|
||||
"setting": "field",
|
||||
"dose_min": null,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 250.0,
|
||||
"concentration_max": 350.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "late blight",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": null,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 250.0,
|
||||
"concentration_max": 350.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "eggplant",
|
||||
"disease": "late blight",
|
||||
"setting": "field",
|
||||
"dose_min": null,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 250.0,
|
||||
"concentration_max": 350.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "eggplant",
|
||||
"disease": "late blight",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": null,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 250.0,
|
||||
"concentration_max": 350.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "cucumber",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": null,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 300.0,
|
||||
"concentration_max": 350.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "cucumber",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": null,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 300.0,
|
||||
"concentration_max": 350.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "gherkin",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": null,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 300.0,
|
||||
"concentration_max": 350.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "gherkin",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": null,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 300.0,
|
||||
"concentration_max": 350.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 3,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "zucchini",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": null,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 300.0,
|
||||
"concentration_max": 350.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "zucchini",
|
||||
"disease": "downy mildew",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": null,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 300.0,
|
||||
"concentration_max": 350.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "melon",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": null,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 300.0,
|
||||
"concentration_max": 350.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "watermelon",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": null,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 300.0,
|
||||
"concentration_max": 350.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "pumpkin",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": null,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": 300.0,
|
||||
"concentration_max": 350.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "potato",
|
||||
"disease": "late blight",
|
||||
"setting": "",
|
||||
"dose_min": 2.5,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 14,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "valerianella",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 2.5,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "lettuce",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 2.5,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "escarole",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 2.5,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "endive",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 2.5,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "dandelion",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 2.5,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "chicory",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 2.5,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "rocket",
|
||||
"disease": "downy mildew",
|
||||
"setting": "field",
|
||||
"dose_min": 2.5,
|
||||
"dose_max": 3.5,
|
||||
"dose_unit": "kg/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 14,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 500.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
}
|
||||
],
|
||||
"low_confidence_fields": [],
|
||||
"extraction_notes": "The 'LATTUGHE E INSALATE' section lists a large group of leafy greens. I have expanded this into individual uses for each identifiable crop type mentioned (valerianella, lettuce, escarole, endive, dandelion, chicory, rocket). The dose for this group is given only in kg/ha, not g/hl.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "3.10.2017",
|
||||
"source_file": "RIVIERA-R-WG.pdf",
|
||||
"last_update": "2024-06-21"
|
||||
}
|
||||
565
data/productProfiles/soriale_18767.json
Normal file
565
data/productProfiles/soriale_18767.json
Normal file
@ -0,0 +1,565 @@
|
||||
{
|
||||
"product_id": "soriale_18767",
|
||||
"product_name": "SORIALE",
|
||||
"registration_number": "18767",
|
||||
"manufacturer": "BASF Italia S.p.A.",
|
||||
"active_ingredients": [
|
||||
"Potassium phosphonate"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"755 g/L"
|
||||
],
|
||||
"frac_groups": [
|
||||
"P07"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"almond",
|
||||
"apple",
|
||||
"chestnut",
|
||||
"grapevine",
|
||||
"hazelnut",
|
||||
"pear",
|
||||
"persimmon",
|
||||
"pistachio",
|
||||
"pomegranate",
|
||||
"walnut"
|
||||
],
|
||||
"target_diseases": [
|
||||
"alternaria",
|
||||
"anthracnose",
|
||||
"botrytis (grey mould)",
|
||||
"brown spot",
|
||||
"downy mildew",
|
||||
"phytophthora",
|
||||
"pistachio branch canker",
|
||||
"scab",
|
||||
"walnut blight"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide"
|
||||
],
|
||||
"systemicity": "systemic",
|
||||
"preventive_action": true,
|
||||
"curative_action": false,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "Recommended for use in conditions of high disease pressure on grapevine.",
|
||||
"reentry_interval_hours": null,
|
||||
"min_spray_volume": 1000.0,
|
||||
"max_spray_volume": 1000.0,
|
||||
"phenology_constraints": "On apple and pear, apply from bud break to the beginning of ripening. On grapevine, apply from vegetative restart to pre-bunch closure. On chestnut, walnut, hazelnut, almond, and pistachio, apply from bud break to fruit ripening. On persimmon, apply from flower bud opening to harvest ripening. On pomegranate, apply from the beginning of flowering until fruits reach half their final size.",
|
||||
"weather_constraints": "Operate in the absence of wind.",
|
||||
"rainfastness": "",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "The product is not compatible with foliar fertilizers containing nitrogen (nitric and ammoniacal). Do not mix with oily formulations and do not spray on crops previously treated with oily formulations as this would hinder product penetration.",
|
||||
"phytotoxicity_constraints": "When mixing with other formulations, it is recommended to carry out preliminary tests for miscibility and phytotoxicity.",
|
||||
"environmental_restrictions": "Do not contaminate water with the product or its container.",
|
||||
"buffer_zone_requirements": "For chestnut, walnut, hazelnut, almond, and pistachio, to protect aquatic organisms, a 10-meter untreated and vegetated buffer zone from surface waters must be respected.",
|
||||
"resistance_management_summary": "On apple and pear, use exclusively in a mixture with another fungicide with a different mechanism of action. On grapevine, it is recommended to use SORIALE within a treatment program that includes contact fungicides.",
|
||||
"application_recommendations": "The indicated doses refer to Normal Spray Volumes (e.g., grapevine: 1000 L/ha). If using different volumes, respect the dose per hectare. For grapevine treatments in early development stages where less water is needed, a concentration of 300-400 ml/hl can be used, ensuring not to exceed the maximum dose per hectare. Do not apply by aerial means.",
|
||||
"safety_notes": "Keep out of reach of children. Do not eat, drink, or smoke during use. Do not re-enter the treated area until the vegetation is completely dry.",
|
||||
"retrieval_summary": "SORIALE is a systemic fungicide containing Potassium phosphonate (FRAC group P07) for preventive control of fungal diseases on pome fruit, grapevine, nut trees, persimmon, and pomegranate. Its active ingredient exhibits both ascending and descending mobility, being most effective on young, actively growing vegetation. It targets a range of diseases including downy mildew, scab, alternaria, and phytophthora. Key constraints include variable pre-harvest intervals (7 to 70 days depending on the crop), incompatibility with nitrogen-based foliar fertilizers and oily formulations, and a mandatory 10-meter buffer zone for nut trees. For resistance management, it must be tank-mixed on pome fruit and used in a program with contact fungicides on grapevine.",
|
||||
"uses": [
|
||||
{
|
||||
"crop": "apple",
|
||||
"disease": "scab",
|
||||
"setting": "",
|
||||
"dose_min": 1.9,
|
||||
"dose_max": 1.9,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 35,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "beginning of ripening"
|
||||
},
|
||||
{
|
||||
"crop": "apple",
|
||||
"disease": "brown spot",
|
||||
"setting": "",
|
||||
"dose_min": 1.9,
|
||||
"dose_max": 1.9,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 35,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "beginning of ripening"
|
||||
},
|
||||
{
|
||||
"crop": "apple",
|
||||
"disease": "alternaria",
|
||||
"setting": "",
|
||||
"dose_min": 1.9,
|
||||
"dose_max": 1.9,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 35,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "beginning of ripening"
|
||||
},
|
||||
{
|
||||
"crop": "pear",
|
||||
"disease": "scab",
|
||||
"setting": "",
|
||||
"dose_min": 1.9,
|
||||
"dose_max": 1.9,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 35,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "beginning of ripening"
|
||||
},
|
||||
{
|
||||
"crop": "pear",
|
||||
"disease": "brown spot",
|
||||
"setting": "",
|
||||
"dose_min": 1.9,
|
||||
"dose_max": 1.9,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 35,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "beginning of ripening"
|
||||
},
|
||||
{
|
||||
"crop": "pear",
|
||||
"disease": "alternaria",
|
||||
"setting": "",
|
||||
"dose_min": 1.9,
|
||||
"dose_max": 1.9,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 35,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "beginning of ripening"
|
||||
},
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 2.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 200.0,
|
||||
"concentration_max": 400.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 5,
|
||||
"pre_harvest_interval_days": 14,
|
||||
"spray_volume_min": 1000.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "vegetative restart",
|
||||
"growth_stage_end": "pre-bunch closure"
|
||||
},
|
||||
{
|
||||
"crop": "chestnut",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 4.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "chestnut",
|
||||
"disease": "anthracnose",
|
||||
"setting": "",
|
||||
"dose_min": 4.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "chestnut",
|
||||
"disease": "alternaria",
|
||||
"setting": "",
|
||||
"dose_min": 4.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "walnut",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 4.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "walnut",
|
||||
"disease": "anthracnose",
|
||||
"setting": "",
|
||||
"dose_min": 4.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "walnut",
|
||||
"disease": "alternaria",
|
||||
"setting": "",
|
||||
"dose_min": 4.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "walnut",
|
||||
"disease": "walnut blight",
|
||||
"setting": "",
|
||||
"dose_min": 4.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "hazelnut",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 4.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "hazelnut",
|
||||
"disease": "anthracnose",
|
||||
"setting": "",
|
||||
"dose_min": 4.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "hazelnut",
|
||||
"disease": "alternaria",
|
||||
"setting": "",
|
||||
"dose_min": 4.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "almond",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 4.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "almond",
|
||||
"disease": "alternaria",
|
||||
"setting": "",
|
||||
"dose_min": 4.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "pistachio",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 4.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "pistachio",
|
||||
"disease": "alternaria",
|
||||
"setting": "",
|
||||
"dose_min": 4.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "pistachio",
|
||||
"disease": "pistachio branch canker",
|
||||
"setting": "",
|
||||
"dose_min": 4.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 6,
|
||||
"pre_harvest_interval_days": 21,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "fruit ripening"
|
||||
},
|
||||
{
|
||||
"crop": "persimmon",
|
||||
"disease": "alternaria",
|
||||
"setting": "",
|
||||
"dose_min": 4.0,
|
||||
"dose_max": 4.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 4,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "flower bud opening",
|
||||
"growth_stage_end": "harvest ripening"
|
||||
},
|
||||
{
|
||||
"crop": "pomegranate",
|
||||
"disease": "phytophthora",
|
||||
"setting": "",
|
||||
"dose_min": 2.4,
|
||||
"dose_max": 2.4,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 70,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "beginning of flowering",
|
||||
"growth_stage_end": "fruit half size"
|
||||
},
|
||||
{
|
||||
"crop": "pomegranate",
|
||||
"disease": "alternaria",
|
||||
"setting": "",
|
||||
"dose_min": 2.4,
|
||||
"dose_max": 2.4,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 70,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "beginning of flowering",
|
||||
"growth_stage_end": "fruit half size"
|
||||
},
|
||||
{
|
||||
"crop": "pomegranate",
|
||||
"disease": "botrytis (grey mould)",
|
||||
"setting": "",
|
||||
"dose_min": 2.4,
|
||||
"dose_max": 2.4,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": null,
|
||||
"concentration_max": null,
|
||||
"concentration_unit": "",
|
||||
"treatment_interval_min_days": 5,
|
||||
"treatment_interval_max_days": null,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 70,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "beginning of flowering",
|
||||
"growth_stage_end": "fruit half size"
|
||||
}
|
||||
],
|
||||
"low_confidence_fields": [],
|
||||
"extraction_notes": "The re-entry interval is not given in hours, but as 'wait until vegetation is completely dry'. This has been noted in safety_notes and reentry_interval_hours is set to null. Maximum treatments for Chestnut, Walnut, and Hazelnut vary by target disease, which has been reflected in the individual 'uses' entries.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "02/10/2024",
|
||||
"source_file": "SORIALE.pdf",
|
||||
"last_update": "2024-07-23"
|
||||
}
|
||||
331
data/productProfiles/tepeta_combi_flow_6834.json
Normal file
331
data/productProfiles/tepeta_combi_flow_6834.json
Normal file
@ -0,0 +1,331 @@
|
||||
{
|
||||
"product_id": "tepeta_combi_flow_6834",
|
||||
"product_name": "TEPETA COMBI FLOW",
|
||||
"registration_number": "6834",
|
||||
"manufacturer": "DIACHEM S.p.A.",
|
||||
"active_ingredients": [
|
||||
"Folpet",
|
||||
"Copper (from tribasic sulphate)"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"360 g/L",
|
||||
"120 g/L"
|
||||
],
|
||||
"frac_groups": [
|
||||
"M04",
|
||||
"M01"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"grapevine",
|
||||
"tomato"
|
||||
],
|
||||
"target_diseases": [
|
||||
"alternaria",
|
||||
"black rot",
|
||||
"botrytis (grey mould)",
|
||||
"cladosporium",
|
||||
"downy mildew",
|
||||
"late blight",
|
||||
"phomopsis (dead-arm)",
|
||||
"septoria leaf blotch"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide"
|
||||
],
|
||||
"systemicity": "contact",
|
||||
"preventive_action": true,
|
||||
"curative_action": false,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "",
|
||||
"reentry_interval_hours": null,
|
||||
"min_spray_volume": 800.0,
|
||||
"max_spray_volume": 1000.0,
|
||||
"phenology_constraints": "Do not treat during flowering.",
|
||||
"weather_constraints": "Apply in the absence of wind.",
|
||||
"rainfastness": "",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "Not miscible with alkaline formulations (e.g., Bordeaux mixture and polysulphides) or with oils. Treatment with TEPETA COMBI FLOW must be spaced at least 20 days from an application with mineral oils.",
|
||||
"phytotoxicity_constraints": "",
|
||||
"environmental_restrictions": "Very toxic to aquatic life with long lasting effects. Do not contaminate water with the product or its container. Do not clean application equipment near surface water. Avoid contamination via drainage systems from farms and roads.",
|
||||
"buffer_zone_requirements": "To protect aquatic organisms, respect an untreated buffer zone of 5 meters from surface water.",
|
||||
"resistance_management_summary": "The active ingredients Folpet (FRAC M04) and Copper (FRAC M01) are multi-site contact fungicides with a low risk of resistance development. Adhere to the maximum number of applications per season as specified for each crop.",
|
||||
"application_recommendations": "If using spray volumes different from the normal ones, respect the indicated dose per hectare for the respective crops and diseases. Do not exceed a cumulative application of 28 kg of copper per hectare over a 7-year period; it is recommended to respect the average applied quantity of 4 kg of copper per hectare per year.",
|
||||
"safety_notes": "After handling and in case of contamination, wash thoroughly with soap and water. Wear protective gloves, protective clothing, eye protection, and face protection. In case of (possible) exposure, consult a doctor.",
|
||||
"retrieval_summary": "TEPETA COMBI FLOW is a contact fungicide containing Folpet (FRAC M04) and Copper (FRAC M01) for use on grapevine and tomato. It provides preventive control against a range of diseases including downy mildew, phomopsis, and black rot on grapevine, and late blight, alternaria, cladosporium, septoria, and botrytis on tomato. As a multi-site contact product, it has a low risk of resistance development. Key constraints include a prohibition on application during flowering and a 5-meter buffer zone from surface water. It is incompatible with alkaline products and oils, requiring a 20-day interval after oil applications. The product is very toxic to aquatic organisms.",
|
||||
"uses": [
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "phomopsis (dead-arm)",
|
||||
"setting": "",
|
||||
"dose_min": 2.4,
|
||||
"dose_max": 2.4,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 300.0,
|
||||
"concentration_max": 300.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 10,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 2,
|
||||
"pre_harvest_interval_days": 28,
|
||||
"spray_volume_min": 800.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "bud break",
|
||||
"growth_stage_end": "first leaves unfolded"
|
||||
},
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": 2.0,
|
||||
"dose_max": 2.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 200.0,
|
||||
"concentration_max": 200.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 5,
|
||||
"pre_harvest_interval_days": 28,
|
||||
"spray_volume_min": 1000.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "black rot",
|
||||
"setting": "",
|
||||
"dose_min": 2.0,
|
||||
"dose_max": 2.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 200.0,
|
||||
"concentration_max": 200.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 5,
|
||||
"pre_harvest_interval_days": 28,
|
||||
"spray_volume_min": 1000.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "botrytis (grey mould)",
|
||||
"setting": "",
|
||||
"dose_min": 2.0,
|
||||
"dose_max": 2.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 200.0,
|
||||
"concentration_max": 200.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 5,
|
||||
"pre_harvest_interval_days": 28,
|
||||
"spray_volume_min": 1000.0,
|
||||
"spray_volume_max": 1000.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "late blight",
|
||||
"setting": "field",
|
||||
"dose_min": 2.0,
|
||||
"dose_max": 2.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 250.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 5,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 800.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "alternaria",
|
||||
"setting": "field",
|
||||
"dose_min": 2.0,
|
||||
"dose_max": 2.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 250.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 5,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 800.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "cladosporium",
|
||||
"setting": "field",
|
||||
"dose_min": 2.0,
|
||||
"dose_max": 2.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 250.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 5,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 800.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "septoria leaf blotch",
|
||||
"setting": "field",
|
||||
"dose_min": 2.0,
|
||||
"dose_max": 2.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 250.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 5,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 800.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "botrytis (grey mould)",
|
||||
"setting": "field",
|
||||
"dose_min": 2.0,
|
||||
"dose_max": 2.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 250.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 5,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 800.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "late blight",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 2.0,
|
||||
"dose_max": 2.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 250.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 5,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 800.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "alternaria",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 2.0,
|
||||
"dose_max": 2.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 250.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 5,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 800.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "cladosporium",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 2.0,
|
||||
"dose_max": 2.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 250.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 5,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 800.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "septoria leaf blotch",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 2.0,
|
||||
"dose_max": 2.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 250.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 5,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 800.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
},
|
||||
{
|
||||
"crop": "tomato",
|
||||
"disease": "botrytis (grey mould)",
|
||||
"setting": "greenhouse",
|
||||
"dose_min": 2.0,
|
||||
"dose_max": 2.0,
|
||||
"dose_unit": "l/ha",
|
||||
"concentration_min": 250.0,
|
||||
"concentration_max": 250.0,
|
||||
"concentration_unit": "ml/hl",
|
||||
"treatment_interval_min_days": 7,
|
||||
"treatment_interval_max_days": 10,
|
||||
"max_treatments_per_season": 5,
|
||||
"pre_harvest_interval_days": 7,
|
||||
"spray_volume_min": 800.0,
|
||||
"spray_volume_max": 800.0,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
}
|
||||
],
|
||||
"low_confidence_fields": [],
|
||||
"extraction_notes": "The registration number on the label is 'n. 6834 del 29/10/1986'. I have extracted only the number '6834' as per standard practice. The label specifies 'uva da Vino' (wine grape), but for canonical crop naming, this is normalized to 'grapevine'. The action against Botrytis on grapevine is described as 'azione collaterale antibotritica' (collateral anti-botrytis action), but it is listed as a target, so a use entry has been created.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "25/06/2018, modified 01/04/2019",
|
||||
"source_file": "TEPETA-COMBI-FLOW.pdf",
|
||||
"last_update": "2024-07-01"
|
||||
}
|
||||
76
data/productProfiles/vitipec_r_wdg_16394.json
Normal file
76
data/productProfiles/vitipec_r_wdg_16394.json
Normal file
@ -0,0 +1,76 @@
|
||||
{
|
||||
"product_id": "vitipec_r_wdg_16394",
|
||||
"product_name": "VITIPEC R WDG",
|
||||
"registration_number": "16394",
|
||||
"manufacturer": "ASCENZA Italia S.r.l.",
|
||||
"active_ingredients": [
|
||||
"cymoxanil",
|
||||
"copper oxychloride"
|
||||
],
|
||||
"active_ingredient_concentrations": [
|
||||
"40 g/kg",
|
||||
"400 g/kg"
|
||||
],
|
||||
"frac_groups": [
|
||||
"27",
|
||||
"M01"
|
||||
],
|
||||
"organic_certified": false,
|
||||
"target_crops": [
|
||||
"grapevine"
|
||||
],
|
||||
"target_diseases": [
|
||||
"downy mildew"
|
||||
],
|
||||
"action_type": [
|
||||
"fungicide"
|
||||
],
|
||||
"systemicity": "mixed",
|
||||
"preventive_action": true,
|
||||
"curative_action": true,
|
||||
"eradicant_action": false,
|
||||
"recommended_disease_pressure": "",
|
||||
"reentry_interval_hours": null,
|
||||
"min_spray_volume": null,
|
||||
"max_spray_volume": null,
|
||||
"phenology_constraints": "",
|
||||
"weather_constraints": "Apply in the absence of wind.",
|
||||
"rainfastness": "",
|
||||
"temperature_constraints": "",
|
||||
"humidity_constraints": "",
|
||||
"mixing_incompatibilities": "The product is compatible with all neutral or acidic reaction products; use with alkaline reaction products is not recommended. If mixing with other formulations, the longest pre-harvest interval must be respected.",
|
||||
"phytotoxicity_constraints": "",
|
||||
"environmental_restrictions": "Very toxic to aquatic life with long lasting effects. Do not contaminate water with the product or its container. Do not clean application equipment near surface water. Avoid contamination via drainage systems from farms and roads. To minimize potential soil accumulation and exposure to non-target organisms, do not exceed a cumulative application of 28 kg of copper per hectare over a 7-year period. An average application of 4 kg of copper per hectare per year is recommended.",
|
||||
"buffer_zone_requirements": "To protect aquatic organisms, respect a 5-meter untreated vegetated buffer strip from surface water bodies for early applications on grapevine, and a 10-meter untreated vegetated buffer strip for late applications.",
|
||||
"resistance_management_summary": "To avoid the onset of resistance, follow the label instructions and alternate VITIPEC R WDG with other fungicides. Do not apply more than 3 times per year.",
|
||||
"application_recommendations": "The indicated doses refer to treatments with normal volume equipment. For reduced volume treatments, the doses should be adjusted to apply the same amount of product per unit area. Do not apply by air.",
|
||||
"safety_notes": "Do not re-enter treated areas until the vegetation is completely dry. During mixing/loading, application, and any re-entry activities, always wear work clothing. Given the eye-irritating properties, wear a face shield when handling the concentrate. During mixing/loading operations, wear protective gloves. During application with a tractor, wear boots, mask, head covering, and gloves; if using a cabbed tractor, protective gloves are sufficient. During maintenance/harvesting activities in the field, wear protective gloves. May cause an allergic reaction.",
|
||||
"retrieval_summary": "VITIPEC R WDG is a fungicide for the control of downy mildew on grapevine. It combines the translaminar and curative (blocking) action of cymoxanil (FRAC 27) with the contact and preventive action of copper oxychloride (FRAC M01), providing a mixed systemicity. The product is formulated as water-dispersible granules. Applications should be made at 12-day intervals, with a maximum of 3 treatments per season and a pre-harvest interval of 66 days. Key constraints include avoiding tank mixes with alkaline products and adhering to buffer zones of 5 meters (early season) to 10 meters (late season) from water bodies. To manage copper accumulation, a maximum of 28 kg of copper per hectare over 7 years is permitted. The product is very toxic to aquatic life.",
|
||||
"uses": [
|
||||
{
|
||||
"crop": "grapevine",
|
||||
"disease": "downy mildew",
|
||||
"setting": "",
|
||||
"dose_min": null,
|
||||
"dose_max": null,
|
||||
"dose_unit": "",
|
||||
"concentration_min": 300.0,
|
||||
"concentration_max": 600.0,
|
||||
"concentration_unit": "g/hl",
|
||||
"treatment_interval_min_days": 12,
|
||||
"treatment_interval_max_days": 12,
|
||||
"max_treatments_per_season": 3,
|
||||
"pre_harvest_interval_days": 66,
|
||||
"spray_volume_min": null,
|
||||
"spray_volume_max": null,
|
||||
"growth_stage_start": "",
|
||||
"growth_stage_end": ""
|
||||
}
|
||||
],
|
||||
"low_confidence_fields": [],
|
||||
"extraction_notes": "The re-entry interval is not specified in hours, but as the time until the vegetation is completely dry. This information has been placed in the safety_notes field.",
|
||||
"reviewed": false,
|
||||
"source_label_version": "21/12/2018",
|
||||
"source_file": "VITIPEC-R-WDG.pdf",
|
||||
"last_update": "2024-07-23"
|
||||
}
|
||||
26
docker-compose.yml
Normal file
26
docker-compose.yml
Normal file
@ -0,0 +1,26 @@
|
||||
services:
|
||||
weaviate:
|
||||
command:
|
||||
- --host
|
||||
- 0.0.0.0
|
||||
- --port
|
||||
- "8080"
|
||||
- --scheme
|
||||
- http
|
||||
image: cr.weaviate.io/semitechnologies/weaviate:1.32.0 # Required for text2vec-google taskType support
|
||||
ports:
|
||||
- 8080:8080
|
||||
- 50051:50051
|
||||
volumes:
|
||||
- weaviate_data:/var/lib/weaviate
|
||||
restart: on-failure:0
|
||||
environment:
|
||||
QUERY_DEFAULTS_LIMIT: 25
|
||||
PERSISTENCE_DATA_PATH: "/var/lib/weaviate"
|
||||
CLUSTER_HOSTNAME: "node1"
|
||||
# Swap OpenAI to Google modules
|
||||
ENABLE_MODULES: "text2vec-google"
|
||||
DEFAULT_VECTORIZER_MODULE: "text2vec-google"
|
||||
|
||||
volumes:
|
||||
weaviate_data:
|
||||
681
ingest.py
Normal file
681
ingest.py
Normal file
@ -0,0 +1,681 @@
|
||||
"""
|
||||
Data ingestion pipeline for the agricultural treatment assistant system.
|
||||
|
||||
Reads local product profile JSON files and label-chunk JSONL files, then loads
|
||||
them into the configured backends:
|
||||
|
||||
- **Weaviate** (``ProductProfile``) — semantic ``retrieval_summary`` for profiles
|
||||
- **SQL Server** — ``products``, ``product_uses`` (profiles), ``label_chunks`` (chunks)
|
||||
|
||||
The pipeline is idempotent: a hash manifest (``.processed_manifest.json``)
|
||||
tracks which files have already been ingested (and their content hash), so
|
||||
re-running the script skips unchanged files unless ``--force`` is passed.
|
||||
|
||||
Usage:
|
||||
python ingest.py
|
||||
python ingest.py --profiles-dir data/productProfiles
|
||||
python ingest.py --chunks-dir data/chunks
|
||||
python ingest.py --file data/productProfiles/ramin_sc_0916.json
|
||||
python ingest.py --chunk-file data/chunks/delan_pro_16562.jsonl
|
||||
python ingest.py --force
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import argparse
|
||||
import hashlib
|
||||
import json
|
||||
import os
|
||||
import sys
|
||||
import uuid
|
||||
from collections import defaultdict
|
||||
from pathlib import Path
|
||||
from typing import Any, Dict, Iterable, Optional
|
||||
|
||||
import pyodbc
|
||||
import weaviate
|
||||
from dotenv import load_dotenv
|
||||
|
||||
from setup_weaviate import ensure_product_profile_collection
|
||||
|
||||
COLLECTION_NAME = "ProductProfile"
|
||||
MANIFEST_PATH = Path(".processed_manifest.json")
|
||||
DEFAULT_PROFILES_DIR = Path("data/productProfiles")
|
||||
DEFAULT_CHUNKS_DIR = Path("data/chunks")
|
||||
|
||||
# Namespace used to derive deterministic Weaviate UUIDs from product_id, so
|
||||
# re-ingesting the same product always maps to the same object.
|
||||
WEAVIATE_UUID_NAMESPACE = uuid.UUID("1b7e2c3a-4f5d-4a8b-9c1e-6d2f3a8b9c0d")
|
||||
|
||||
ARRAY_FIELDS = (
|
||||
"active_ingredients",
|
||||
"frac_groups",
|
||||
"target_crops",
|
||||
"target_diseases",
|
||||
"action_type",
|
||||
)
|
||||
|
||||
USE_FIELDS = (
|
||||
"crop",
|
||||
"disease",
|
||||
"setting",
|
||||
"dose_min",
|
||||
"dose_max",
|
||||
"dose_unit",
|
||||
"concentration_min",
|
||||
"concentration_max",
|
||||
"concentration_unit",
|
||||
"treatment_interval_min_days",
|
||||
"treatment_interval_max_days",
|
||||
"max_treatments_per_season",
|
||||
"pre_harvest_interval_days",
|
||||
"spray_volume_min",
|
||||
"spray_volume_max",
|
||||
"growth_stage_start",
|
||||
"growth_stage_end",
|
||||
)
|
||||
|
||||
CHUNK_INSERT_COLUMNS = (
|
||||
"chunk_id",
|
||||
"product_id",
|
||||
"product_name",
|
||||
"target_crops",
|
||||
"target_diseases",
|
||||
"chunk_type",
|
||||
"chunk_text",
|
||||
)
|
||||
|
||||
CHUNK_ARRAY_FIELDS = ("target_crops", "target_diseases")
|
||||
CHUNK_REQUIRED_KEYS = ("chunk_id", "product_id", "chunk_text")
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Configuration
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def load_config() -> Dict[str, str]:
|
||||
"""Load and validate required environment variables from .env."""
|
||||
load_dotenv()
|
||||
|
||||
required = [
|
||||
"GEMINI_API_KEY",
|
||||
"SQL_DRIVER",
|
||||
"SQL_SERVER",
|
||||
"SQL_DATABASE",
|
||||
"SQL_USERNAME",
|
||||
"SQL_PASSWORD",
|
||||
]
|
||||
missing = [key for key in required if not os.getenv(key)]
|
||||
if missing:
|
||||
raise EnvironmentError(
|
||||
f"Missing required environment variable(s): {', '.join(missing)}. "
|
||||
"Copy .env.example to .env and fill in the values."
|
||||
)
|
||||
|
||||
return {
|
||||
"GEMINI_API_KEY": os.getenv("GEMINI_API_KEY", ""),
|
||||
"WEAVIATE_HOST": os.getenv("WEAVIATE_HOST", "localhost"),
|
||||
"WEAVIATE_HTTP_PORT": os.getenv("WEAVIATE_HTTP_PORT", "8080"),
|
||||
"WEAVIATE_GRPC_PORT": os.getenv("WEAVIATE_GRPC_PORT", "50051"),
|
||||
"SQL_DRIVER": os.getenv("SQL_DRIVER", ""),
|
||||
"SQL_SERVER": os.getenv("SQL_SERVER", ""),
|
||||
"SQL_DATABASE": os.getenv("SQL_DATABASE", ""),
|
||||
"SQL_USERNAME": os.getenv("SQL_USERNAME", ""),
|
||||
"SQL_PASSWORD": os.getenv("SQL_PASSWORD", ""),
|
||||
}
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# File discovery, hashing, and manifest tracking
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def discover_files(data_dir: Path, pattern: str) -> list[Path]:
|
||||
"""Recursively find files matching pattern under data_dir, sorted for stable order."""
|
||||
if not data_dir.exists():
|
||||
raise FileNotFoundError(f"Data directory not found: {data_dir}")
|
||||
return sorted(data_dir.rglob(pattern))
|
||||
|
||||
|
||||
def discover_json_files(data_dir: Path) -> list[Path]:
|
||||
"""Recursively find all *.json files under data_dir."""
|
||||
return discover_files(data_dir, "*.json")
|
||||
|
||||
|
||||
def discover_jsonl_files(data_dir: Path) -> list[Path]:
|
||||
"""Recursively find all *.jsonl files under data_dir."""
|
||||
return discover_files(data_dir, "*.jsonl")
|
||||
|
||||
|
||||
def sha256_of(path: Path) -> str:
|
||||
"""Compute the SHA-256 hex digest of a file's contents."""
|
||||
digest = hashlib.sha256()
|
||||
with path.open("rb") as f:
|
||||
for chunk in iter(lambda: f.read(8192), b""):
|
||||
digest.update(chunk)
|
||||
return digest.hexdigest()
|
||||
|
||||
|
||||
def load_manifest(manifest_path: Path = MANIFEST_PATH) -> Dict[str, str]:
|
||||
"""Load the processed-files manifest (filename -> content hash)."""
|
||||
if not manifest_path.exists():
|
||||
return {}
|
||||
try:
|
||||
with manifest_path.open("r", encoding="utf-8") as f:
|
||||
return json.load(f)
|
||||
except (json.JSONDecodeError, OSError) as exc:
|
||||
print(f"[WARN] Could not read manifest at {manifest_path}: {exc}. Starting fresh.", file=sys.stderr)
|
||||
return {}
|
||||
|
||||
|
||||
def save_manifest(manifest: Dict[str, str], manifest_path: Path = MANIFEST_PATH) -> None:
|
||||
"""Persist the processed-files manifest to disk."""
|
||||
with manifest_path.open("w", encoding="utf-8") as f:
|
||||
json.dump(manifest, f, indent=2, sort_keys=True)
|
||||
|
||||
|
||||
def should_process(path: Path, file_hash: str, manifest: Dict[str, str], force: bool) -> bool:
|
||||
"""Determine whether a file needs (re)processing based on the manifest."""
|
||||
if force:
|
||||
return True
|
||||
key = str(path.resolve())
|
||||
return manifest.get(key) != file_hash
|
||||
|
||||
|
||||
def collect_files_to_process(
|
||||
candidates: list[Path],
|
||||
manifest: Dict[str, str],
|
||||
force: bool,
|
||||
) -> list[tuple[Path, str]]:
|
||||
"""Filter candidates through the manifest and return (path, hash) pairs to process."""
|
||||
to_process: list[tuple[Path, str]] = []
|
||||
for path in candidates:
|
||||
try:
|
||||
file_hash = sha256_of(path)
|
||||
except OSError as exc:
|
||||
print(f"[ERROR] Could not read {path}: {exc}", file=sys.stderr)
|
||||
continue
|
||||
if should_process(path, file_hash, manifest, force):
|
||||
to_process.append((path, file_hash))
|
||||
else:
|
||||
print(f"[SKIP] {path} already processed and unchanged.")
|
||||
return to_process
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Parsing
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def parse_profile(path: Path) -> Dict[str, Any]:
|
||||
"""Load and lightly validate a product profile JSON file."""
|
||||
with path.open("r", encoding="utf-8") as f:
|
||||
profile = json.load(f)
|
||||
|
||||
required_keys = ("product_id", "product_name", "retrieval_summary")
|
||||
missing = [key for key in required_keys if key not in profile]
|
||||
if missing:
|
||||
raise ValueError(f"Profile {path} is missing required key(s): {', '.join(missing)}")
|
||||
|
||||
return profile
|
||||
|
||||
|
||||
def parse_chunks_file(path: Path) -> list[Dict[str, Any]]:
|
||||
"""
|
||||
Load a JSONL label-chunk file, validating each non-empty line.
|
||||
|
||||
Malformed lines are logged to stderr and skipped; returns all valid chunks.
|
||||
"""
|
||||
chunks: list[Dict[str, Any]] = []
|
||||
with path.open("r", encoding="utf-8") as f:
|
||||
for line_number, line in enumerate(f, start=1):
|
||||
stripped = line.strip()
|
||||
if not stripped:
|
||||
continue
|
||||
try:
|
||||
chunk = json.loads(stripped)
|
||||
except json.JSONDecodeError as exc:
|
||||
print(
|
||||
f"[ERROR] {path} line {line_number}: invalid JSON: {exc}",
|
||||
file=sys.stderr,
|
||||
)
|
||||
continue
|
||||
if not isinstance(chunk, dict):
|
||||
print(
|
||||
f"[ERROR] {path} line {line_number}: expected a JSON object, got {type(chunk).__name__}",
|
||||
file=sys.stderr,
|
||||
)
|
||||
continue
|
||||
missing = [key for key in CHUNK_REQUIRED_KEYS if key not in chunk]
|
||||
if missing:
|
||||
print(
|
||||
f"[ERROR] {path} line {line_number}: missing required key(s): {', '.join(missing)}",
|
||||
file=sys.stderr,
|
||||
)
|
||||
continue
|
||||
chunks.append(chunk)
|
||||
return chunks
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Connections
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def connect_weaviate(cfg: Dict[str, str]) -> weaviate.WeaviateClient:
|
||||
"""Open a connection to the local Weaviate instance with the Gemini API key header."""
|
||||
client = weaviate.connect_to_local(
|
||||
host=cfg["WEAVIATE_HOST"],
|
||||
port=int(cfg["WEAVIATE_HTTP_PORT"]),
|
||||
grpc_port=int(cfg["WEAVIATE_GRPC_PORT"]),
|
||||
headers={"X-Goog-Studio-Api-Key": cfg["GEMINI_API_KEY"]},
|
||||
)
|
||||
return client
|
||||
|
||||
|
||||
def connect_sql(cfg: Dict[str, str]) -> pyodbc.Connection:
|
||||
"""Open a connection to the Microsoft SQL Server database via pyodbc."""
|
||||
conn_str = (
|
||||
f"DRIVER={{{cfg['SQL_DRIVER']}}};"
|
||||
f"SERVER={cfg['SQL_SERVER']};"
|
||||
f"DATABASE={cfg['SQL_DATABASE']};"
|
||||
f"UID={cfg['SQL_USERNAME']};"
|
||||
f"PWD={cfg['SQL_PASSWORD']};"
|
||||
)
|
||||
conn = pyodbc.connect(conn_str, autocommit=False)
|
||||
return conn
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Weaviate insertion
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def upsert_weaviate(client: weaviate.WeaviateClient, profile: Dict[str, Any]) -> None:
|
||||
"""Insert or replace the semantic summary object for this product in Weaviate."""
|
||||
collection = client.collections.get(COLLECTION_NAME)
|
||||
|
||||
product_id = profile["product_id"]
|
||||
object_uuid = uuid.uuid5(WEAVIATE_UUID_NAMESPACE, product_id)
|
||||
|
||||
properties = {
|
||||
"product_id": product_id,
|
||||
"product_name": profile["product_name"],
|
||||
"retrieval_summary": profile["retrieval_summary"],
|
||||
}
|
||||
|
||||
if collection.data.exists(object_uuid):
|
||||
collection.data.replace(uuid=object_uuid, properties=properties)
|
||||
else:
|
||||
collection.data.insert(properties=properties, uuid=object_uuid)
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# SQL Server: products table
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def upsert_product(cursor: pyodbc.Cursor, profile: Dict[str, Any]) -> None:
|
||||
"""Upsert the global metadata row for this product into the products table."""
|
||||
array_json = {field: json.dumps(profile.get(field, [])) for field in ARRAY_FIELDS}
|
||||
|
||||
params = (
|
||||
profile["product_id"],
|
||||
profile.get("product_name"),
|
||||
profile.get("registration_number"),
|
||||
profile.get("manufacturer"),
|
||||
int(bool(profile.get("organic_certified"))),
|
||||
profile.get("systemicity"),
|
||||
int(bool(profile.get("preventive_action"))),
|
||||
int(bool(profile.get("curative_action"))),
|
||||
int(bool(profile.get("eradicant_action"))),
|
||||
array_json["active_ingredients"],
|
||||
array_json["frac_groups"],
|
||||
array_json["target_crops"],
|
||||
array_json["target_diseases"],
|
||||
array_json["action_type"],
|
||||
)
|
||||
|
||||
cursor.execute(
|
||||
"""
|
||||
IF EXISTS (SELECT 1 FROM products WHERE product_id = ?)
|
||||
UPDATE products
|
||||
SET product_name = ?,
|
||||
registration_number = ?,
|
||||
manufacturer = ?,
|
||||
organic_certified = ?,
|
||||
systemicity = ?,
|
||||
preventive_action = ?,
|
||||
curative_action = ?,
|
||||
eradicant_action = ?,
|
||||
active_ingredients = ?,
|
||||
frac_groups = ?,
|
||||
target_crops = ?,
|
||||
target_diseases = ?,
|
||||
action_type = ?
|
||||
WHERE product_id = ?
|
||||
ELSE
|
||||
INSERT INTO products (
|
||||
product_id, product_name, registration_number, manufacturer,
|
||||
organic_certified, systemicity, preventive_action, curative_action,
|
||||
eradicant_action, active_ingredients, frac_groups, target_crops,
|
||||
target_diseases, action_type
|
||||
)
|
||||
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
|
||||
""",
|
||||
# IF EXISTS check
|
||||
profile["product_id"],
|
||||
# UPDATE ... SET (13 params) + WHERE product_id
|
||||
*params[1:],
|
||||
profile["product_id"],
|
||||
# INSERT ... VALUES (14 params)
|
||||
*params,
|
||||
)
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# SQL Server: product_uses table
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def replace_uses(cursor: pyodbc.Cursor, profile: Dict[str, Any]) -> None:
|
||||
"""Replace all use-rule rows for this product with the ones from the profile."""
|
||||
product_id = profile["product_id"]
|
||||
uses: Iterable[Dict[str, Any]] = profile.get("uses", [])
|
||||
|
||||
cursor.execute("DELETE FROM product_uses WHERE product_id = ?", product_id)
|
||||
|
||||
insert_sql = f"""
|
||||
INSERT INTO product_uses (
|
||||
product_id, {", ".join(USE_FIELDS)}
|
||||
)
|
||||
VALUES (?, {", ".join(["?"] * len(USE_FIELDS))})
|
||||
"""
|
||||
|
||||
for index, use in enumerate(uses):
|
||||
try:
|
||||
values = (product_id, *(use.get(field) for field in USE_FIELDS))
|
||||
cursor.execute(insert_sql, values)
|
||||
except pyodbc.Error as exc:
|
||||
print(
|
||||
f"[ERROR] Failed to insert use rule #{index} for product '{product_id}': {exc}",
|
||||
file=sys.stderr,
|
||||
)
|
||||
raise
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# SQL Server: label_chunks table
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def chunk_insert_values(chunk: Dict[str, Any]) -> tuple[Any, ...]:
|
||||
"""Build parameterized insert values for a single label chunk row."""
|
||||
values: list[Any] = []
|
||||
for column in CHUNK_INSERT_COLUMNS:
|
||||
if column in CHUNK_ARRAY_FIELDS:
|
||||
values.append(json.dumps(chunk.get(column, [])))
|
||||
else:
|
||||
values.append(chunk.get(column))
|
||||
return tuple(values)
|
||||
|
||||
|
||||
def replace_label_chunks(
|
||||
cursor: pyodbc.Cursor,
|
||||
product_id: str,
|
||||
chunks: Iterable[Dict[str, Any]],
|
||||
) -> None:
|
||||
"""Replace all label-chunk rows for a product with the provided set."""
|
||||
cursor.execute("DELETE FROM label_chunks WHERE product_id = ?", product_id)
|
||||
|
||||
insert_sql = f"""
|
||||
INSERT INTO label_chunks (
|
||||
{", ".join(CHUNK_INSERT_COLUMNS)}
|
||||
)
|
||||
VALUES ({", ".join(["?"] * len(CHUNK_INSERT_COLUMNS))})
|
||||
"""
|
||||
|
||||
for chunk in chunks:
|
||||
chunk_id = chunk.get("chunk_id", "<unknown>")
|
||||
try:
|
||||
cursor.execute(insert_sql, chunk_insert_values(chunk))
|
||||
except pyodbc.Error as exc:
|
||||
print(
|
||||
f"[ERROR] Failed to insert label chunk '{chunk_id}' for product '{product_id}': {exc}",
|
||||
file=sys.stderr,
|
||||
)
|
||||
raise
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Orchestration
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def process_profile_file(
|
||||
path: Path,
|
||||
weaviate_client: weaviate.WeaviateClient,
|
||||
sql_conn: pyodbc.Connection,
|
||||
manifest: Dict[str, str],
|
||||
file_hash: str,
|
||||
) -> bool:
|
||||
"""
|
||||
Process a single product profile JSON file across Weaviate and SQL sinks.
|
||||
|
||||
Returns True on full success, False if any sink failed. On SQL failure the
|
||||
transaction for this file is rolled back so no partial rows are committed.
|
||||
"""
|
||||
try:
|
||||
profile = parse_profile(path)
|
||||
except (json.JSONDecodeError, ValueError, OSError) as exc:
|
||||
print(f"[ERROR] Failed to parse {path}: {exc}", file=sys.stderr)
|
||||
return False
|
||||
|
||||
product_id = profile.get("product_id", "<unknown>")
|
||||
|
||||
weaviate_ok = True
|
||||
try:
|
||||
upsert_weaviate(weaviate_client, profile)
|
||||
except Exception as exc: # noqa: BLE001 - log and continue to SQL sinks
|
||||
weaviate_ok = False
|
||||
print(f"[ERROR] Weaviate upsert failed for '{product_id}' ({path}): {exc}", file=sys.stderr)
|
||||
|
||||
sql_ok = True
|
||||
cursor = sql_conn.cursor()
|
||||
try:
|
||||
upsert_product(cursor, profile)
|
||||
replace_uses(cursor, profile)
|
||||
sql_conn.commit()
|
||||
except pyodbc.Error as exc:
|
||||
sql_ok = False
|
||||
sql_conn.rollback()
|
||||
print(f"[ERROR] SQL upsert failed for '{product_id}' ({path}): {exc}. Transaction rolled back.", file=sys.stderr)
|
||||
finally:
|
||||
cursor.close()
|
||||
|
||||
success = weaviate_ok and sql_ok
|
||||
if success:
|
||||
manifest[str(path.resolve())] = file_hash
|
||||
print(f"[OK] Processed profile '{product_id}' from {path}")
|
||||
else:
|
||||
print(f"[SKIP] Profile '{product_id}' from {path} not fully ingested; manifest not updated.", file=sys.stderr)
|
||||
|
||||
return success
|
||||
|
||||
|
||||
def process_chunks_file(
|
||||
path: Path,
|
||||
sql_conn: pyodbc.Connection,
|
||||
manifest: Dict[str, str],
|
||||
file_hash: str,
|
||||
) -> bool:
|
||||
"""
|
||||
Process a single label-chunk JSONL file into the label_chunks table.
|
||||
|
||||
Returns True on success. On SQL failure the transaction is rolled back.
|
||||
"""
|
||||
try:
|
||||
chunks = parse_chunks_file(path)
|
||||
except OSError as exc:
|
||||
print(f"[ERROR] Failed to read {path}: {exc}", file=sys.stderr)
|
||||
return False
|
||||
|
||||
if not chunks:
|
||||
print(f"[ERROR] No valid chunks found in {path}; manifest not updated.", file=sys.stderr)
|
||||
return False
|
||||
|
||||
chunks_by_product: dict[str, list[Dict[str, Any]]] = defaultdict(list)
|
||||
for chunk in chunks:
|
||||
chunks_by_product[chunk["product_id"]].append(chunk)
|
||||
|
||||
product_ids = ", ".join(sorted(chunks_by_product))
|
||||
cursor = sql_conn.cursor()
|
||||
try:
|
||||
for product_id, product_chunks in sorted(chunks_by_product.items()):
|
||||
replace_label_chunks(cursor, product_id, product_chunks)
|
||||
sql_conn.commit()
|
||||
except pyodbc.Error as exc:
|
||||
sql_conn.rollback()
|
||||
print(
|
||||
f"[ERROR] SQL label_chunks upsert failed for product(s) [{product_ids}] ({path}): {exc}. "
|
||||
"Transaction rolled back.",
|
||||
file=sys.stderr,
|
||||
)
|
||||
return False
|
||||
finally:
|
||||
cursor.close()
|
||||
|
||||
manifest[str(path.resolve())] = file_hash
|
||||
print(f"[OK] Processed {len(chunks)} label chunk(s) for product(s) [{product_ids}] from {path}")
|
||||
return True
|
||||
|
||||
|
||||
def run(
|
||||
profiles_dir: Path,
|
||||
chunks_dir: Path,
|
||||
single_profile: Optional[Path],
|
||||
single_chunk: Optional[Path],
|
||||
force: bool,
|
||||
) -> int:
|
||||
"""Main pipeline execution. Returns a process exit code."""
|
||||
cfg = load_config()
|
||||
manifest = load_manifest()
|
||||
|
||||
if single_profile is not None:
|
||||
profile_candidates = [single_profile]
|
||||
else:
|
||||
profile_candidates = discover_json_files(profiles_dir)
|
||||
|
||||
if single_chunk is not None:
|
||||
chunk_candidates = [single_chunk]
|
||||
elif chunks_dir.exists():
|
||||
chunk_candidates = discover_jsonl_files(chunks_dir)
|
||||
else:
|
||||
chunk_candidates = []
|
||||
if single_profile is None:
|
||||
print(f"[WARN] Chunks directory not found: {chunks_dir}; skipping chunk ingestion.")
|
||||
|
||||
profiles_to_process = collect_files_to_process(profile_candidates, manifest, force)
|
||||
chunks_to_process = collect_files_to_process(chunk_candidates, manifest, force)
|
||||
|
||||
if not profiles_to_process and not chunks_to_process:
|
||||
print("Nothing to process.")
|
||||
return 0
|
||||
|
||||
weaviate_client: Optional[weaviate.WeaviateClient] = None
|
||||
sql_conn: Optional[pyodbc.Connection] = None
|
||||
failures = 0
|
||||
|
||||
try:
|
||||
sql_conn = connect_sql(cfg)
|
||||
|
||||
if profiles_to_process:
|
||||
weaviate_client = connect_weaviate(cfg)
|
||||
ensure_product_profile_collection(weaviate_client)
|
||||
|
||||
for path, file_hash in profiles_to_process:
|
||||
try:
|
||||
success = process_profile_file(path, weaviate_client, sql_conn, manifest, file_hash)
|
||||
except Exception as exc: # noqa: BLE001 - never let one file crash the batch
|
||||
success = False
|
||||
print(f"[ERROR] Unexpected failure processing profile {path}: {exc}", file=sys.stderr)
|
||||
if not success:
|
||||
failures += 1
|
||||
|
||||
for path, file_hash in chunks_to_process:
|
||||
try:
|
||||
success = process_chunks_file(path, sql_conn, manifest, file_hash)
|
||||
except Exception as exc: # noqa: BLE001
|
||||
success = False
|
||||
print(f"[ERROR] Unexpected failure processing chunks {path}: {exc}", file=sys.stderr)
|
||||
if not success:
|
||||
failures += 1
|
||||
|
||||
save_manifest(manifest)
|
||||
finally:
|
||||
if weaviate_client is not None:
|
||||
try:
|
||||
weaviate_client.close()
|
||||
except Exception as exc: # noqa: BLE001
|
||||
print(f"[WARN] Error closing Weaviate client: {exc}", file=sys.stderr)
|
||||
if sql_conn is not None:
|
||||
try:
|
||||
sql_conn.close()
|
||||
except Exception as exc: # noqa: BLE001
|
||||
print(f"[WARN] Error closing SQL connection: {exc}", file=sys.stderr)
|
||||
|
||||
total_files = len(profiles_to_process) + len(chunks_to_process)
|
||||
if failures:
|
||||
print(f"Completed with {failures} failure(s) out of {total_files} file(s).", file=sys.stderr)
|
||||
return 1
|
||||
|
||||
print(f"Completed successfully. {total_files} file(s) processed.")
|
||||
return 0
|
||||
|
||||
|
||||
def parse_args(argv: Optional[list[str]] = None) -> argparse.Namespace:
|
||||
parser = argparse.ArgumentParser(
|
||||
description="Ingest product profile JSON and label-chunk JSONL files into Weaviate and SQL Server."
|
||||
)
|
||||
parser.add_argument(
|
||||
"--profiles-dir",
|
||||
type=Path,
|
||||
default=DEFAULT_PROFILES_DIR,
|
||||
help="Directory to scan recursively for *.json profile files (default: data/productProfiles)",
|
||||
)
|
||||
parser.add_argument(
|
||||
"--chunks-dir",
|
||||
type=Path,
|
||||
default=DEFAULT_CHUNKS_DIR,
|
||||
help="Directory to scan recursively for *.jsonl chunk files (default: data/chunks)",
|
||||
)
|
||||
parser.add_argument(
|
||||
"--file",
|
||||
type=Path,
|
||||
default=None,
|
||||
help="Process a single profile JSON file instead of scanning --profiles-dir.",
|
||||
)
|
||||
parser.add_argument(
|
||||
"--chunk-file",
|
||||
type=Path,
|
||||
default=None,
|
||||
help="Process a single label-chunk JSONL file instead of scanning --chunks-dir.",
|
||||
)
|
||||
parser.add_argument(
|
||||
"--force",
|
||||
action="store_true",
|
||||
help="Reprocess files even if unchanged since the last successful run.",
|
||||
)
|
||||
return parser.parse_args(argv)
|
||||
|
||||
|
||||
def main() -> None:
|
||||
args = parse_args()
|
||||
try:
|
||||
exit_code = run(
|
||||
args.profiles_dir,
|
||||
args.chunks_dir,
|
||||
args.file,
|
||||
args.chunk_file,
|
||||
args.force,
|
||||
)
|
||||
except (EnvironmentError, FileNotFoundError) as exc:
|
||||
print(f"[FATAL] {exc}", file=sys.stderr)
|
||||
sys.exit(1)
|
||||
sys.exit(exit_code)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
3
requirements.txt
Normal file
3
requirements.txt
Normal file
@ -0,0 +1,3 @@
|
||||
weaviate-client>=4.6,<5
|
||||
pyodbc>=5.0
|
||||
python-dotenv>=1.0
|
||||
152
setup_weaviate.py
Normal file
152
setup_weaviate.py
Normal file
@ -0,0 +1,152 @@
|
||||
"""
|
||||
Create the ProductProfile Weaviate collection with Gemini embeddings.
|
||||
|
||||
Uses Google AI Studio (Gemini API) with:
|
||||
- model: gemini-embedding-001
|
||||
- task type: RETRIEVAL_DOCUMENT (optimized for indexing documents)
|
||||
|
||||
Usage:
|
||||
python setup_weaviate.py # create collection if it does not exist
|
||||
python setup_weaviate.py --recreate # delete and recreate (required after embedding config changes)
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import argparse
|
||||
import os
|
||||
import sys
|
||||
from typing import Dict
|
||||
|
||||
try:
|
||||
import weaviate
|
||||
except ModuleNotFoundError:
|
||||
print(
|
||||
"[FATAL] Missing dependency 'weaviate'. Activate the project virtual environment "
|
||||
"and install requirements:\n"
|
||||
" venv\\Scripts\\activate\n"
|
||||
" pip install -r requirements.txt",
|
||||
file=sys.stderr,
|
||||
)
|
||||
sys.exit(1)
|
||||
|
||||
from dotenv import load_dotenv
|
||||
from weaviate.classes.config import Configure, DataType, Property
|
||||
|
||||
COLLECTION_NAME = "ProductProfile"
|
||||
EMBEDDING_MODEL = "gemini-embedding-001"
|
||||
EMBEDDING_TASK_TYPE = "RETRIEVAL_DOCUMENT"
|
||||
|
||||
|
||||
def load_config() -> Dict[str, str]:
|
||||
load_dotenv()
|
||||
gemini_api_key = os.getenv("GEMINI_API_KEY", "")
|
||||
if not gemini_api_key:
|
||||
raise EnvironmentError(
|
||||
"Missing required environment variable: GEMINI_API_KEY. "
|
||||
"Copy .env.example to .env and fill in the values."
|
||||
)
|
||||
return {
|
||||
"GEMINI_API_KEY": gemini_api_key,
|
||||
"WEAVIATE_HOST": os.getenv("WEAVIATE_HOST", "localhost"),
|
||||
"WEAVIATE_HTTP_PORT": os.getenv("WEAVIATE_HTTP_PORT", "8080"),
|
||||
"WEAVIATE_GRPC_PORT": os.getenv("WEAVIATE_GRPC_PORT", "50051"),
|
||||
}
|
||||
|
||||
|
||||
def connect_weaviate(cfg: Dict[str, str]) -> weaviate.WeaviateClient:
|
||||
return weaviate.connect_to_local(
|
||||
host=cfg["WEAVIATE_HOST"],
|
||||
port=int(cfg["WEAVIATE_HTTP_PORT"]),
|
||||
grpc_port=int(cfg["WEAVIATE_GRPC_PORT"]),
|
||||
headers={"X-Goog-Studio-Api-Key": cfg["GEMINI_API_KEY"]},
|
||||
)
|
||||
|
||||
|
||||
def ensure_product_profile_collection(
|
||||
client: weaviate.WeaviateClient,
|
||||
*,
|
||||
recreate: bool = False,
|
||||
) -> bool:
|
||||
"""
|
||||
Ensure the ProductProfile collection exists with the expected embedding config.
|
||||
|
||||
Returns True if a new collection was created, False if an existing one was kept.
|
||||
"""
|
||||
if client.collections.exists(COLLECTION_NAME):
|
||||
if recreate:
|
||||
client.collections.delete(COLLECTION_NAME)
|
||||
else:
|
||||
return False
|
||||
|
||||
client.collections.create(
|
||||
name=COLLECTION_NAME,
|
||||
properties=[
|
||||
Property(
|
||||
name="product_id",
|
||||
data_type=DataType.TEXT,
|
||||
skip_vectorization=True,
|
||||
index_filterable=True,
|
||||
),
|
||||
Property(
|
||||
name="product_name",
|
||||
data_type=DataType.TEXT,
|
||||
skip_vectorization=True,
|
||||
index_filterable=True,
|
||||
),
|
||||
Property(
|
||||
name="retrieval_summary",
|
||||
data_type=DataType.TEXT,
|
||||
),
|
||||
],
|
||||
vector_config=Configure.Vectors.text2vec_google_gemini(
|
||||
source_properties=["retrieval_summary"],
|
||||
model=EMBEDDING_MODEL,
|
||||
task_type=EMBEDDING_TASK_TYPE,
|
||||
vectorize_collection_name=False,
|
||||
),
|
||||
)
|
||||
return True
|
||||
|
||||
|
||||
def parse_args(argv: list[str] | None = None) -> argparse.Namespace:
|
||||
parser = argparse.ArgumentParser(
|
||||
description="Create the ProductProfile Weaviate collection with Gemini embeddings."
|
||||
)
|
||||
parser.add_argument(
|
||||
"--recreate",
|
||||
action="store_true",
|
||||
help="Delete and recreate the collection (use after changing embedding settings).",
|
||||
)
|
||||
return parser.parse_args(argv)
|
||||
|
||||
|
||||
def main() -> None:
|
||||
args = parse_args()
|
||||
cfg = load_config()
|
||||
client = connect_weaviate(cfg)
|
||||
|
||||
try:
|
||||
had_collection = client.collections.exists(COLLECTION_NAME)
|
||||
created = ensure_product_profile_collection(client, recreate=args.recreate)
|
||||
if created and had_collection and args.recreate:
|
||||
print(
|
||||
f"Recreated collection '{COLLECTION_NAME}' "
|
||||
f"(model={EMBEDDING_MODEL}, task_type={EMBEDDING_TASK_TYPE})."
|
||||
)
|
||||
elif created:
|
||||
print(
|
||||
f"Created collection '{COLLECTION_NAME}' "
|
||||
f"(model={EMBEDDING_MODEL}, task_type={EMBEDDING_TASK_TYPE})."
|
||||
)
|
||||
else:
|
||||
print(f"Collection '{COLLECTION_NAME}' already exists; no changes made.")
|
||||
finally:
|
||||
client.close()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
try:
|
||||
main()
|
||||
except EnvironmentError as exc:
|
||||
print(f"[FATAL] {exc}", file=sys.stderr)
|
||||
sys.exit(1)
|
||||
Loading…
Reference in New Issue
Block a user