agripro + nk scrapers — 146 Syngenta varieties added (wheat + corn/soy)
agripro (24 varieties)
- Drupal Views form scrape via /search-agripro-brand-varieties with
explicit GET params (sidesteps the AJAX-only-on-load default that
returns an empty form skeleton).
- Per-variety parse: <h1>, .field--node--variety-type--variety,
.field--node--tag-line--variety, .field--node--body, plus the
three rated sections (Agronomics / Grain / Disease) with their
<div class="row"><div class="label">label</div><div>value</div>
pairs.
- Wheat-class distribution: 12 HRS, 7 SWW, 3 HRW, 1 HWS, 1 Barley
— provides the Northern Plains HRS coverage WestBred lacks.
nk (122 varieties — recon's "29" was outdated; the current NK seed
finder lists 41 corn + 81 soy)
- ASP.NET WebForms endpoint:
POST /NKSeeds/{Corn,Soy}ProductFinder.aspx/GetProducts returns
{"d": "<html>"} where the inner HTML is one <div class="sf-result">
per variety. BeautifulSoup tokenizes the whole blob.
- Per-card: product code (NK8005, NK008-P8XF), RM/MG from the
title <span>, "Brands Available" trait variants, marketing
positioning + bullet strengths, tech-sheet PDF URL.
- pdfplumber text extraction on the tech-sheet PDFs adds:
* corn disease ratings (Gray Leaf Spot, NCLB, Goss's Wilt,
Anthracnose, Tar Spot, Fusarium, etc.) where the PDF prints
"Label N" lines (text-extractable)
* soybean Phytophthora source genes (Rps1c, Rps3a, ...)
* soybean SCN race coverage
* soybean agronomic ratings (Emergence, Standability, Shatter
Tolerance, Green Stem) with text-extractable 1-9 values
* soybean soil-type adaptation (Best/Good/Fair/Poor) for drought
prone / high pH / poorly drained / etc.
- Agronomic rating BARS for corn (Emergence, Stalk Strength,
Drought) are not text-extractable; we record the labels with an
explicit "rated in PDF chart, see tech sheet" value so the agent
can direct the farmer at the source for those numbers.
Scale-direction correction in lessons.md:
- NK and AgriPro both use 1 = best, lower = more resistant — the
REVERSED convention vs Bayer / Golden Harvest. NK's tech-sheet
footer literally prints "1-9 Scale: 1 = Best, 9 = Worst".
AgriPro positioning on stripe-rust-resistant varieties (AP Iliad
with Stripe Rust 1, Eyespot 2) confirms the same direction.
- sources-not-yet-indexed section trimmed to just Beck's PFR +
Beck's products — everything else IS now in the corpus.
Cross-vendor coverage after this PR: 760 varieties.
bayer_seeds 475 (DEKALB 288 / Asgrow 102 / WestBred 85)
golden_harvest 139
nk 122 (41 corn / 81 soy)
agripro 24 (12 HRS / 7 SWW / 3 HRW / 1 HWS / 1 Barley)
Vendors: Bayer, Syngenta. Brands: 6. Crops: corn, soy, wheat (109
wheat now, up from 85).
requirements.txt: pdfplumber>=0.11 for NK tech-sheet parsing.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk0001",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK0001",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK0001",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK0001-DS"
|
||||
],
|
||||
"positioning_statement": "Outstanding Placement Versatility with Exceptional Yield Potential",
|
||||
"strengths": [
|
||||
"Solid emergence allows for early planting flexibility",
|
||||
"Reliable disease package providing very good plant health",
|
||||
"Excellent root and stalk strength for season-long standability"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "-"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK0001_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:15.636234+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
# NK0001
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Brand variants:** NK0001-DS
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK0001_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Outstanding Placement Versatility with Exceptional Yield Potential
|
||||
|
||||
## Strengths
|
||||
|
||||
- Solid emergence allows for early planting flexibility
|
||||
- Reliable disease package providing very good plant health
|
||||
- Excellent root and stalk strength for season-long standability
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 4 |
|
||||
| Tar Spot | 3 |
|
||||
| Fusarium Crown Rot | 4 |
|
||||
| Common Rust | - |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk0007",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK0007",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK0007",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": "100",
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK0007-AA"
|
||||
],
|
||||
"positioning_statement": "Excellent Yield Potential with Strong Roots and Stalks",
|
||||
"strengths": [
|
||||
"Outstanding emergence for an early-planting option",
|
||||
"Leading drought tolerance powered by Artesian technology",
|
||||
"Semi-determinate ear type and strong standability support higher populations for maximum yield potential"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "-"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK0007_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:16.628787+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
# NK0007
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Relative maturity:** 100
|
||||
- **Brand variants:** NK0007-AA
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK0007_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Excellent Yield Potential with Strong Roots and Stalks
|
||||
|
||||
## Strengths
|
||||
|
||||
- Outstanding emergence for an early-planting option
|
||||
- Leading drought tolerance powered by Artesian technology
|
||||
- Semi-determinate ear type and strong standability support higher populations for maximum yield potential
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 3 |
|
||||
| Tar Spot | 4 |
|
||||
| Fusarium Crown Rot | 3 |
|
||||
| Common Rust | - |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk0025",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK0025",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK0025",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": "100",
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK0025-DV"
|
||||
],
|
||||
"positioning_statement": "Broadly Adapted DuracadeViptera Hybrid with Excellent Drought Tolerance",
|
||||
"strengths": [
|
||||
"Outstanding emergence and vigor enable early planting",
|
||||
"Strong performance potential across Northern Cornbelt",
|
||||
"Taller hybrid with strong roots and stalks for season-long standability"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "5"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "-"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK0025_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:17.631401+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
# NK0025
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Relative maturity:** 100
|
||||
- **Brand variants:** NK0025-DV
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK0025_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Broadly Adapted DuracadeViptera Hybrid with Excellent Drought Tolerance
|
||||
|
||||
## Strengths
|
||||
|
||||
- Outstanding emergence and vigor enable early planting
|
||||
- Strong performance potential across Northern Cornbelt
|
||||
- Taller hybrid with strong roots and stalks for season-long standability
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 3 |
|
||||
| Tar Spot | 4 |
|
||||
| Fusarium Crown Rot | 5 |
|
||||
| Common Rust | - |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk008-p8xf",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK008-P8XF",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK008-P8XF",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "0.08",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"XF"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Strong Agronomics with Top-End Yield Potential",
|
||||
"strengths": [
|
||||
"Strong combination of IDC and PRR field tolerance",
|
||||
"Broadly adapted across environments and soil types",
|
||||
"Solid standability and tolerance to Soybean White Mold"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1c, Rps3a"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "S"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "35.4"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "19.0"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Good"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK008-P8XF_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:38.646421+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
# NK008-P8XF
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 0.08
|
||||
- **Traits:** XF
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK008-P8XF_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Strong Agronomics with Top-End Yield Potential
|
||||
|
||||
## Strengths
|
||||
|
||||
- Strong combination of IDC and PRR field tolerance
|
||||
- Broadly adapted across environments and soil types
|
||||
- Solid standability and tolerance to Soybean White Mold
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1c, Rps3a |
|
||||
| SCN Race Coverage | S |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 3 |
|
||||
| Standability | 3 |
|
||||
| Shatter Tolerance | 3 |
|
||||
| Green Stem | 2 |
|
||||
| % Protein at 13% mst. | 35.4 |
|
||||
| % Oil at 13% mst. | 19.0 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Best |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Good |
|
||||
| Wide Rows | Best |
|
||||
| Highly Productive | Best |
|
||||
| Moderate/Variable Environments | Best |
|
||||
| Poorly Drained | Good |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk009-g7e3",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK009-G7E3",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK009-G7E3",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "0.09",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"E3"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Excellent Agronomics with Top-End Yield Potential",
|
||||
"strengths": [
|
||||
"Very good Iron Deficiency Chlorosis tolerance combined with Soybean Cyst Nematode resistance",
|
||||
"Excellent Phytophthora Root Rot field tolerance with Rps1c/3a gene stack",
|
||||
"Good stress tolerance and performance across yield environments"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1c, Rps3a"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "MR3, MR14"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "1"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "36.3"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "18.5"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Best"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK009-G7E3_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:39.635292+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
# NK009-G7E3
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 0.09
|
||||
- **Traits:** E3
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK009-G7E3_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Excellent Agronomics with Top-End Yield Potential
|
||||
|
||||
## Strengths
|
||||
|
||||
- Very good Iron Deficiency Chlorosis tolerance combined with Soybean Cyst Nematode resistance
|
||||
- Excellent Phytophthora Root Rot field tolerance with Rps1c/3a gene stack
|
||||
- Good stress tolerance and performance across yield environments
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1c, Rps3a |
|
||||
| SCN Race Coverage | MR3, MR14 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 2 |
|
||||
| Standability | 2 |
|
||||
| Shatter Tolerance | 3 |
|
||||
| Green Stem | 1 |
|
||||
| % Protein at 13% mst. | 36.3 |
|
||||
| % Oil at 13% mst. | 18.5 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Best |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Good |
|
||||
| Wide Rows | Good |
|
||||
| Highly Productive | Best |
|
||||
| Moderate/Variable Environments | Best |
|
||||
| Poorly Drained | Best |
|
||||
@@ -0,0 +1,108 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk01-b9e3",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK01-B9E3",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK01-B9E3",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"E3"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Peking SCN Resistance With Excellent Yield Potential",
|
||||
"strengths": [
|
||||
"Broadly adapted across soil types, but avoid high pH acres",
|
||||
"Consistent performance across yield environments",
|
||||
"Strong performance on highly productive acres and South of zone"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1c, Rps3a"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "MR1, MR3, MR5"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "1"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Fair"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Poor"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Fair"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Good"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK01-B9E3_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:40.635775+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
# NK01-B9E3
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Traits:** E3
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK01-B9E3_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Peking SCN Resistance With Excellent Yield Potential
|
||||
|
||||
## Strengths
|
||||
|
||||
- Broadly adapted across soil types, but avoid high pH acres
|
||||
- Consistent performance across yield environments
|
||||
- Strong performance on highly productive acres and South of zone
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1c, Rps3a |
|
||||
| SCN Race Coverage | MR1, MR3, MR5 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 3 |
|
||||
| Standability | 3 |
|
||||
| Shatter Tolerance | 4 |
|
||||
| Green Stem | 1 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Fair |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Poor |
|
||||
| Wide Rows | Best |
|
||||
| Highly Productive | Good |
|
||||
| Moderate/Variable Environments | Fair |
|
||||
| Poorly Drained | Good |
|
||||
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk0123",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK0123",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK0123",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": "101",
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK0123-AA"
|
||||
],
|
||||
"positioning_statement": "Excellent Yield Potential and Exceptional Versatility Across Soil Types",
|
||||
"strengths": [
|
||||
"Very strong emergence and great seedling vigor",
|
||||
"Superb roots and strong stalks are a consistent strength of this product",
|
||||
"Above-average drought tolerance delivers dependable results"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "-"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK0123_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:18.636719+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
# NK0123
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Relative maturity:** 101
|
||||
- **Brand variants:** NK0123-AA
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK0123_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Excellent Yield Potential and Exceptional Versatility Across Soil Types
|
||||
|
||||
## Strengths
|
||||
|
||||
- Very strong emergence and great seedling vigor
|
||||
- Superb roots and strong stalks are a consistent strength of this product
|
||||
- Above-average drought tolerance delivers dependable results
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 4 |
|
||||
| Tar Spot | 4 |
|
||||
| Fusarium Crown Rot | 4 |
|
||||
| Common Rust | - |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,108 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk02-d5e3",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK02-D5E3",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK02-D5E3",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"E3"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Outstanding Yield Potential With Broad Acre Adaptability",
|
||||
"strengths": [
|
||||
"Outstanding performance across soil types, excels on medium textures",
|
||||
"Broadly adapted across yield environments including the less productive acre",
|
||||
"Versatile bean that yields everywhere but avoid high pH acres"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1c"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "MR3, MR14"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "2"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Fair"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Good"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK02-D5E3_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:41.657757+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
# NK02-D5E3
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Traits:** E3
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK02-D5E3_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Outstanding Yield Potential With Broad Acre Adaptability
|
||||
|
||||
## Strengths
|
||||
|
||||
- Outstanding performance across soil types, excels on medium textures
|
||||
- Broadly adapted across yield environments including the less productive acre
|
||||
- Versatile bean that yields everywhere but avoid high pH acres
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1c |
|
||||
| SCN Race Coverage | MR3, MR14 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 2 |
|
||||
| Standability | 2 |
|
||||
| Shatter Tolerance | 4 |
|
||||
| Green Stem | 2 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Best |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Fair |
|
||||
| Wide Rows | Best |
|
||||
| Highly Productive | Best |
|
||||
| Moderate/Variable Environments | Best |
|
||||
| Poorly Drained | Good |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk02-y2xf",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK02-Y2XF",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK02-Y2XF",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "0.2",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"XF"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "S14-U9X Brand Genetics with Outstanding Soybean White Mold Tolerance",
|
||||
"strengths": [
|
||||
"Top-end yield potential with excellent standability for the highly productive acre",
|
||||
"Rps1c/3a gene stack with exceptional Phytophthora field tolerance",
|
||||
"Excellent performance South of zone while maintaining plant height"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1c, Rps3a"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "R3"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "34.6"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "19.7"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Poor"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Best"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK02-Y2XF_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:42.675597+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
# NK02-Y2XF
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 0.2
|
||||
- **Traits:** XF
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK02-Y2XF_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
S14-U9X Brand Genetics with Outstanding Soybean White Mold Tolerance
|
||||
|
||||
## Strengths
|
||||
|
||||
- Top-end yield potential with excellent standability for the highly productive acre
|
||||
- Rps1c/3a gene stack with exceptional Phytophthora field tolerance
|
||||
- Excellent performance South of zone while maintaining plant height
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1c, Rps3a |
|
||||
| SCN Race Coverage | R3 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 2 |
|
||||
| Standability | 2 |
|
||||
| Shatter Tolerance | 2 |
|
||||
| Green Stem | 2 |
|
||||
| % Protein at 13% mst. | 34.6 |
|
||||
| % Oil at 13% mst. | 19.7 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Best |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Poor |
|
||||
| Wide Rows | Best |
|
||||
| Highly Productive | Best |
|
||||
| Moderate/Variable Environments | Best |
|
||||
| Poorly Drained | Best |
|
||||
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk0252",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK0252",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK0252",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": "102",
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK0252-D"
|
||||
],
|
||||
"positioning_statement": "Exceptional Yield Potential and Tremendous Adaptation Across Soil Types",
|
||||
"strengths": [
|
||||
"Strong choice for first planting with excellent emergence and seedling vigor",
|
||||
"Outstanding roots and dependable stalks for late-season standability",
|
||||
"This product delivers dependable performance across variable environments"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "-"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK0252_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:19.661650+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
# NK0252
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Relative maturity:** 102
|
||||
- **Brand variants:** NK0252-D
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK0252_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Exceptional Yield Potential and Tremendous Adaptation Across Soil Types
|
||||
|
||||
## Strengths
|
||||
|
||||
- Strong choice for first planting with excellent emergence and seedling vigor
|
||||
- Outstanding roots and dependable stalks for late-season standability
|
||||
- This product delivers dependable performance across variable environments
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 3 |
|
||||
| Tar Spot | 4 |
|
||||
| Fusarium Crown Rot | 4 |
|
||||
| Common Rust | - |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,108 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk03-c7e3",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK03-C7E3",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK03-C7E3",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"E3"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Strong Agronomics and Superior IDC Tolerance",
|
||||
"strengths": [
|
||||
"Broadly adapted with strong performance on heavy textured soils",
|
||||
"Best performance in the Red River Valley and East",
|
||||
"Consistent yield across environments"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1c, Rps3a"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "MR3, MR14"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "1"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Best"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK03-C7E3_260417.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:43.643456+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
# NK03-C7E3
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Traits:** E3
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK03-C7E3_260417.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Strong Agronomics and Superior IDC Tolerance
|
||||
|
||||
## Strengths
|
||||
|
||||
- Broadly adapted with strong performance on heavy textured soils
|
||||
- Best performance in the Red River Valley and East
|
||||
- Consistent yield across environments
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1c, Rps3a |
|
||||
| SCN Race Coverage | MR3, MR14 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 2 |
|
||||
| Standability | 3 |
|
||||
| Shatter Tolerance | 2 |
|
||||
| Green Stem | 1 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Good |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Best |
|
||||
| Wide Rows | Best |
|
||||
| Highly Productive | Good |
|
||||
| Moderate/Variable Environments | Good |
|
||||
| Poorly Drained | Best |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk03-j1xf",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK03-J1XF",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK03-J1XF",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "0.3",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"XF"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Western Adapted Product with Strong Drought Tolerance",
|
||||
"strengths": [
|
||||
"Excellent emergence for acres with tougher seedbeds",
|
||||
"Rps3a gene with very good Phytophthora field tolerance",
|
||||
"Strong Soybean White Mold tolerance"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps3a"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "S"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "1"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "1"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "1"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "35.0"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "19.7"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Fair"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Fair"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Good"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK03-J1XF_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:44.679150+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
# NK03-J1XF
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 0.3
|
||||
- **Traits:** XF
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK03-J1XF_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Western Adapted Product with Strong Drought Tolerance
|
||||
|
||||
## Strengths
|
||||
|
||||
- Excellent emergence for acres with tougher seedbeds
|
||||
- Rps3a gene with very good Phytophthora field tolerance
|
||||
- Strong Soybean White Mold tolerance
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps3a |
|
||||
| SCN Race Coverage | S |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 1 |
|
||||
| Standability | 3 |
|
||||
| Shatter Tolerance | 1 |
|
||||
| Green Stem | 1 |
|
||||
| % Protein at 13% mst. | 35.0 |
|
||||
| % Oil at 13% mst. | 19.7 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Best |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Fair |
|
||||
| Wide Rows | Fair |
|
||||
| Highly Productive | Good |
|
||||
| Moderate/Variable Environments | Best |
|
||||
| Poorly Drained | Good |
|
||||
@@ -0,0 +1,112 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk04-q9xf",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK04-Q9XF",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK04-Q9XF",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "0.4",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"XF"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Broadly Adapted Variety with Big Yield Potential",
|
||||
"strengths": [
|
||||
"Broad adaptation to soil types",
|
||||
"Stacked Rps genes with excellent Phytophthora Root Rot tolerance",
|
||||
"Moderate plant height with dependable standability"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1c, Rps3a"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "MR3"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "34.1"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "20.6"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Best"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK04-Q9XF_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:45.662286+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
# NK04-Q9XF
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 0.4
|
||||
- **Traits:** XF
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK04-Q9XF_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Broadly Adapted Variety with Big Yield Potential
|
||||
|
||||
## Strengths
|
||||
|
||||
- Broad adaptation to soil types
|
||||
- Stacked Rps genes with excellent Phytophthora Root Rot tolerance
|
||||
- Moderate plant height with dependable standability
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1c, Rps3a |
|
||||
| SCN Race Coverage | MR3 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 3 |
|
||||
| Standability | 3 |
|
||||
| Shatter Tolerance | 2 |
|
||||
| % Protein at 13% mst. | 34.1 |
|
||||
| % Oil at 13% mst. | 20.6 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Best |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Good |
|
||||
| Wide Rows | Good |
|
||||
| Highly Productive | Best |
|
||||
| Moderate/Variable Environments | Best |
|
||||
| Poorly Drained | Best |
|
||||
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk0401",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK0401",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK0401",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK0401-DS"
|
||||
],
|
||||
"positioning_statement": "Strong Agronomic Adaptation for Continuous-Corn Environments",
|
||||
"strengths": [
|
||||
"Excellent early-season emergence and vigor for early planting",
|
||||
"Robust plant type with outstanding roots and stalks",
|
||||
"Attractive ear type with population flexibility"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "-"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK0401_260417.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:20.626793+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
# NK0401
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Brand variants:** NK0401-DS
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK0401_260417.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Strong Agronomic Adaptation for Continuous-Corn Environments
|
||||
|
||||
## Strengths
|
||||
|
||||
- Excellent early-season emergence and vigor for early planting
|
||||
- Robust plant type with outstanding roots and stalks
|
||||
- Attractive ear type with population flexibility
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 4 |
|
||||
| Tar Spot | 3 |
|
||||
| Fusarium Crown Rot | 4 |
|
||||
| Common Rust | - |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk0415",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK0415",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK0415",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": "104",
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK0415-AA"
|
||||
],
|
||||
"positioning_statement": "Exciting Genetics with a Distinguishing Ear Type and Grain Quality",
|
||||
"strengths": [
|
||||
"Taller plant type with solid roots and stalks for season-long standability",
|
||||
"Dependable Goss’s Wilt and Tar Spot tolerance for high disease pressure acres",
|
||||
"Outstanding emergence with very good early-season vigor allows for early planting"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "-"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK0415_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:21.639954+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
# NK0415
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Relative maturity:** 104
|
||||
- **Brand variants:** NK0415-AA
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK0415_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Exciting Genetics with a Distinguishing Ear Type and Grain Quality
|
||||
|
||||
## Strengths
|
||||
|
||||
- Taller plant type with solid roots and stalks for season-long standability
|
||||
- Dependable Goss’s Wilt and Tar Spot tolerance for high disease pressure acres
|
||||
- Outstanding emergence with very good early-season vigor allows for early planting
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 4 |
|
||||
| Tar Spot | 3 |
|
||||
| Fusarium Crown Rot | 4 |
|
||||
| Common Rust | - |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk0440",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK0440",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK0440",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": "104",
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK0440-AT"
|
||||
],
|
||||
"positioning_statement": "Tall, Attractive Plant Type that Delivers Yield Potential Through Variable Environments",
|
||||
"strengths": [
|
||||
"Adapted to all soil types for ease of placement",
|
||||
"Strong stalks for harvest flexibility",
|
||||
"Semi-flex ear that enables competitive yield potential across diverse environments"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "-"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK0440_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:22.638429+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
# NK0440
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Relative maturity:** 104
|
||||
- **Brand variants:** NK0440-AT
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK0440_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Tall, Attractive Plant Type that Delivers Yield Potential Through Variable Environments
|
||||
|
||||
## Strengths
|
||||
|
||||
- Adapted to all soil types for ease of placement
|
||||
- Strong stalks for harvest flexibility
|
||||
- Semi-flex ear that enables competitive yield potential across diverse environments
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 2 |
|
||||
| Tar Spot | 4 |
|
||||
| Fusarium Crown Rot | 4 |
|
||||
| Common Rust | - |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,108 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk05-p4e3",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK05-P4E3",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK05-P4E3",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"E3"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "High Yield Potential For Your Best Acre",
|
||||
"strengths": [
|
||||
"Above average tolerance to IDC with the Excluder gene",
|
||||
"Solid Soybean White Mold tolerance helps protect yield on highly productive acres",
|
||||
"Very strong emergence with excellent yield response to early planting"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1c"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "MR3, MR14"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "3"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Fair"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Fair"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Fair"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Good"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK05-P4E3_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:46.632032+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
# NK05-P4E3
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Traits:** E3
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK05-P4E3_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
High Yield Potential For Your Best Acre
|
||||
|
||||
## Strengths
|
||||
|
||||
- Above average tolerance to IDC with the Excluder gene
|
||||
- Solid Soybean White Mold tolerance helps protect yield on highly productive acres
|
||||
- Very strong emergence with excellent yield response to early planting
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1c |
|
||||
| SCN Race Coverage | MR3, MR14 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 2 |
|
||||
| Standability | 4 |
|
||||
| Shatter Tolerance | 3 |
|
||||
| Green Stem | 3 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Fair |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Fair |
|
||||
| Wide Rows | Best |
|
||||
| Highly Productive | Best |
|
||||
| Moderate/Variable Environments | Fair |
|
||||
| Poorly Drained | Good |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk05-w3xf",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK05-W3XF",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK05-W3XF",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "0.5",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"XF"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Excellent Yield Potential with Stress Tolerance",
|
||||
"strengths": [
|
||||
"Rps1c gene with strong field tolerance to Phytophthora Root Rot",
|
||||
"Great performance on poorly drained and drought prone soils",
|
||||
"Good stem dry down and pod height for easy cutting"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1c"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "MR3"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "1"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "1"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "35.4"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "18.7"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Fair"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Fair"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Best"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK05-W3XF_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:47.638406+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
# NK05-W3XF
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 0.5
|
||||
- **Traits:** XF
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK05-W3XF_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Excellent Yield Potential with Stress Tolerance
|
||||
|
||||
## Strengths
|
||||
|
||||
- Rps1c gene with strong field tolerance to Phytophthora Root Rot
|
||||
- Great performance on poorly drained and drought prone soils
|
||||
- Good stem dry down and pod height for easy cutting
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1c |
|
||||
| SCN Race Coverage | MR3 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 3 |
|
||||
| Standability | 4 |
|
||||
| Shatter Tolerance | 1 |
|
||||
| Green Stem | 1 |
|
||||
| % Protein at 13% mst. | 35.4 |
|
||||
| % Oil at 13% mst. | 18.7 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Best |
|
||||
| Narrow Rows | Good |
|
||||
| High pH | Fair |
|
||||
| Wide Rows | Best |
|
||||
| Highly Productive | Fair |
|
||||
| Moderate/Variable Environments | Good |
|
||||
| Poorly Drained | Best |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk06-a1e3",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK06-A1E3",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK06-A1E3",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "0.6",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"E3"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Strong Defensive Traits to Handle Tough Conditions",
|
||||
"strengths": [
|
||||
"Very Good Iron Deficiency Chlorosis tolerance paired with the Chloride Excluder gene",
|
||||
"Exceptional Phytophthora field tolerance with an Rps1c/3a gene stack",
|
||||
"Dependable choice for acres prone to Soybean White Mold"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1c, Rps3a"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "MR3"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "1"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "34.6"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "19.8"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Good"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK06-A1E3_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:48.654829+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
# NK06-A1E3
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 0.6
|
||||
- **Traits:** E3
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK06-A1E3_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Strong Defensive Traits to Handle Tough Conditions
|
||||
|
||||
## Strengths
|
||||
|
||||
- Very Good Iron Deficiency Chlorosis tolerance paired with the Chloride Excluder gene
|
||||
- Exceptional Phytophthora field tolerance with an Rps1c/3a gene stack
|
||||
- Dependable choice for acres prone to Soybean White Mold
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1c, Rps3a |
|
||||
| SCN Race Coverage | MR3 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 3 |
|
||||
| Standability | 3 |
|
||||
| Shatter Tolerance | 3 |
|
||||
| Green Stem | 1 |
|
||||
| % Protein at 13% mst. | 34.6 |
|
||||
| % Oil at 13% mst. | 19.8 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Best |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Good |
|
||||
| Wide Rows | Best |
|
||||
| Highly Productive | Good |
|
||||
| Moderate/Variable Environments | Best |
|
||||
| Poorly Drained | Good |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk06-c4xf",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK06-C4XF",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK06-C4XF",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "0.6",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"XF"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Consistent Performance Across Yield Environments with a Strong Defensive Package",
|
||||
"strengths": [
|
||||
"Very good IDC tolerance",
|
||||
"Solid Soybean White Mold tolerance for the highly productive acre",
|
||||
"Strong performance under drought"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1c"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "R3, MR14"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "1"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "34.2"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "18.8"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Good"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK06-C4XF_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:49.651945+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
# NK06-C4XF
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 0.6
|
||||
- **Traits:** XF
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK06-C4XF_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Consistent Performance Across Yield Environments with a Strong Defensive Package
|
||||
|
||||
## Strengths
|
||||
|
||||
- Very good IDC tolerance
|
||||
- Solid Soybean White Mold tolerance for the highly productive acre
|
||||
- Strong performance under drought
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1c |
|
||||
| SCN Race Coverage | R3, MR14 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 2 |
|
||||
| Standability | 4 |
|
||||
| Shatter Tolerance | 2 |
|
||||
| Green Stem | 1 |
|
||||
| % Protein at 13% mst. | 34.2 |
|
||||
| % Oil at 13% mst. | 18.8 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Best |
|
||||
| Narrow Rows | Good |
|
||||
| High pH | Good |
|
||||
| Wide Rows | Best |
|
||||
| Highly Productive | Best |
|
||||
| Moderate/Variable Environments | Best |
|
||||
| Poorly Drained | Good |
|
||||
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk0604",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK0604",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK0604",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": "106",
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK0604-DV"
|
||||
],
|
||||
"positioning_statement": "Exciting DuracadeViptera Hybrid with Dual-Purpose Silage Characteristics",
|
||||
"strengths": [
|
||||
"Strong performance potential in the Central to Western Cornbelt",
|
||||
"Very good Goss’s Wilt and Fusarium Crown Rot tolerance",
|
||||
"Solid performance across all soil types combined with dependable emergence"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "5"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "-"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK0604_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:23.621420+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
# NK0604
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Relative maturity:** 106
|
||||
- **Brand variants:** NK0604-DV
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK0604_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Exciting DuracadeViptera Hybrid with Dual-Purpose Silage Characteristics
|
||||
|
||||
## Strengths
|
||||
|
||||
- Strong performance potential in the Central to Western Cornbelt
|
||||
- Very good Goss’s Wilt and Fusarium Crown Rot tolerance
|
||||
- Solid performance across all soil types combined with dependable emergence
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 3 |
|
||||
| Tar Spot | 5 |
|
||||
| Fusarium Crown Rot | 3 |
|
||||
| Common Rust | - |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk07-g5e3",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK07-G5E3",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK07-G5E3",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "0.7",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"E3"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Peking Soybean with an Exciting Disease and Agronomic Package",
|
||||
"strengths": [
|
||||
"Consistent yield performance across environments with strong drought tolerance",
|
||||
"Great choice for fields with Iron Deficiency Chlorosis",
|
||||
"Rps1k/3a gene stack with excellent Phytophthora field tolerance"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1k, Rps3a"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "MR1, R3"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "34.1"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "19.4"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Best"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK07-G5E3_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:50.651229+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
# NK07-G5E3
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 0.7
|
||||
- **Traits:** E3
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK07-G5E3_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Peking Soybean with an Exciting Disease and Agronomic Package
|
||||
|
||||
## Strengths
|
||||
|
||||
- Consistent yield performance across environments with strong drought tolerance
|
||||
- Great choice for fields with Iron Deficiency Chlorosis
|
||||
- Rps1k/3a gene stack with excellent Phytophthora field tolerance
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1k, Rps3a |
|
||||
| SCN Race Coverage | MR1, R3 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 3 |
|
||||
| Standability | 2 |
|
||||
| Shatter Tolerance | 3 |
|
||||
| Green Stem | 2 |
|
||||
| % Protein at 13% mst. | 34.1 |
|
||||
| % Oil at 13% mst. | 19.4 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Best |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Good |
|
||||
| Wide Rows | Good |
|
||||
| Highly Productive | Good |
|
||||
| Moderate/Variable Environments | Best |
|
||||
| Poorly Drained | Best |
|
||||
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk0717",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK0717",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK0717",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK0717-V"
|
||||
],
|
||||
"positioning_statement": "Excellent Combination of Yield Potential with Agronomics",
|
||||
"strengths": [
|
||||
"Solid emergence and vigor for an early-season start",
|
||||
"Moderate plant stature with dependable green snap tolerance",
|
||||
"Reliable disease package with great Tar Spot tolerance"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "-"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK0717_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:24.645514+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
# NK0717
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Brand variants:** NK0717-V
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK0717_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Excellent Combination of Yield Potential with Agronomics
|
||||
|
||||
## Strengths
|
||||
|
||||
- Solid emergence and vigor for an early-season start
|
||||
- Moderate plant stature with dependable green snap tolerance
|
||||
- Reliable disease package with great Tar Spot tolerance
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 3 |
|
||||
| Tar Spot | 2 |
|
||||
| Fusarium Crown Rot | 3 |
|
||||
| Common Rust | - |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk08-r3xf",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK08-R3XF",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK08-R3XF",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "0.8",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"XF"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Proven Genetics with Top-End Yield Potential and Strong Agronomics",
|
||||
"strengths": [
|
||||
"Very good Soybean White Mold tolerance",
|
||||
"Strong Iron Deficiency Chlorosis tolerance",
|
||||
"Solid Phytophthora field tolerance with excellent performance on poorly drained soils"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1c"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "R3"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "1"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "35.6"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "19.4"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Best"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK08-R3XF_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:51.671458+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
# NK08-R3XF
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 0.8
|
||||
- **Traits:** XF
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK08-R3XF_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Proven Genetics with Top-End Yield Potential and Strong Agronomics
|
||||
|
||||
## Strengths
|
||||
|
||||
- Very good Soybean White Mold tolerance
|
||||
- Strong Iron Deficiency Chlorosis tolerance
|
||||
- Solid Phytophthora field tolerance with excellent performance on poorly drained soils
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1c |
|
||||
| SCN Race Coverage | R3 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 2 |
|
||||
| Standability | 3 |
|
||||
| Shatter Tolerance | 1 |
|
||||
| Green Stem | 3 |
|
||||
| % Protein at 13% mst. | 35.6 |
|
||||
| % Oil at 13% mst. | 19.4 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Best |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Good |
|
||||
| Wide Rows | Best |
|
||||
| Highly Productive | Best |
|
||||
| Moderate/Variable Environments | Best |
|
||||
| Poorly Drained | Best |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk08-z4e3",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK08-Z4E3",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK08-Z4E3",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "0.8",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"E3"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Proven Enlist E3 Soybean Genetics with Strong Agronomics",
|
||||
"strengths": [
|
||||
"Outstanding Iron Deficiency Chlorosis tolerance with the Chloride Excluder gene",
|
||||
"Great standability with above average tolerance to Soybean White Mold",
|
||||
"Strong tolerance to SDS allows for placement South of zone"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1k"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "R3"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "36.1"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "18.3"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Good"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK08-Z4E3_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:52.660521+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
# NK08-Z4E3
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 0.8
|
||||
- **Traits:** E3
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK08-Z4E3_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Proven Enlist E3 Soybean Genetics with Strong Agronomics
|
||||
|
||||
## Strengths
|
||||
|
||||
- Outstanding Iron Deficiency Chlorosis tolerance with the Chloride Excluder gene
|
||||
- Great standability with above average tolerance to Soybean White Mold
|
||||
- Strong tolerance to SDS allows for placement South of zone
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1k |
|
||||
| SCN Race Coverage | R3 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 2 |
|
||||
| Standability | 2 |
|
||||
| Shatter Tolerance | 3 |
|
||||
| Green Stem | 3 |
|
||||
| % Protein at 13% mst. | 36.1 |
|
||||
| % Oil at 13% mst. | 18.3 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Good |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Best |
|
||||
| Wide Rows | Good |
|
||||
| Highly Productive | Good |
|
||||
| Moderate/Variable Environments | Best |
|
||||
| Poorly Drained | Good |
|
||||
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk0880",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK0880",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK0880",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": "108",
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK0880-V"
|
||||
],
|
||||
"positioning_statement": "Widely Adapted Hybrid Across Soil Types with Very Strong Drought Tolerance",
|
||||
"strengths": [
|
||||
"Dependable emergence with strong seedling vigor for a quick start",
|
||||
"Robust plant type supported by superb roots",
|
||||
"Excellent Tar Spot and Anthracnose Stalk Rot tolerance"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "5"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "-"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK0880_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:25.621264+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
# NK0880
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Relative maturity:** 108
|
||||
- **Brand variants:** NK0880-V
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK0880_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Widely Adapted Hybrid Across Soil Types with Very Strong Drought Tolerance
|
||||
|
||||
## Strengths
|
||||
|
||||
- Dependable emergence with strong seedling vigor for a quick start
|
||||
- Robust plant type supported by superb roots
|
||||
- Excellent Tar Spot and Anthracnose Stalk Rot tolerance
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 3 |
|
||||
| Tar Spot | 2 |
|
||||
| Fusarium Crown Rot | 5 |
|
||||
| Common Rust | - |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk09-v2e3",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK09-V2E3",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK09-V2E3",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "0.9",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"E3"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Strong Standability and Soybean White Mold Tolerance",
|
||||
"strengths": [
|
||||
"Rps1k/3a gene stack and great Phytophthora field tolerance enable performance in saturated soils",
|
||||
"Capable of handling tough yield environments",
|
||||
"Best performance in zone and North"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1k, Rps3a"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "MR3, MR14"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "35.6"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "20.9"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Fair"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Best"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK09-V2E3_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:53.654779+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
# NK09-V2E3
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 0.9
|
||||
- **Traits:** E3
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK09-V2E3_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Strong Standability and Soybean White Mold Tolerance
|
||||
|
||||
## Strengths
|
||||
|
||||
- Rps1k/3a gene stack and great Phytophthora field tolerance enable performance in saturated soils
|
||||
- Capable of handling tough yield environments
|
||||
- Best performance in zone and North
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1k, Rps3a |
|
||||
| SCN Race Coverage | MR3, MR14 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 3 |
|
||||
| Standability | 3 |
|
||||
| Shatter Tolerance | 2 |
|
||||
| Green Stem | 3 |
|
||||
| % Protein at 13% mst. | 35.6 |
|
||||
| % Oil at 13% mst. | 20.9 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Best |
|
||||
| Narrow Rows | Good |
|
||||
| High pH | Fair |
|
||||
| Wide Rows | Best |
|
||||
| Highly Productive | Good |
|
||||
| Moderate/Variable Environments | Best |
|
||||
| Poorly Drained | Best |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk10-p7xf",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK10-P7XF",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK10-P7XF",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "1.0",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"XF"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Trusted Genetics with Top-End Yield Potential",
|
||||
"strengths": [
|
||||
"Solid tolerance to Iron Deficiency Chlorosis",
|
||||
"Great fit for the highly productive acre",
|
||||
"Reliable standability, greenstem rating and pod height allow for easy harvest"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1k, Rps3a"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "MR3"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "1"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "34.9"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "20.4"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Good"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK10-P7XF_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:54.663086+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
# NK10-P7XF
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 1.0
|
||||
- **Traits:** XF
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK10-P7XF_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Trusted Genetics with Top-End Yield Potential
|
||||
|
||||
## Strengths
|
||||
|
||||
- Solid tolerance to Iron Deficiency Chlorosis
|
||||
- Great fit for the highly productive acre
|
||||
- Reliable standability, greenstem rating and pod height allow for easy harvest
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1k, Rps3a |
|
||||
| SCN Race Coverage | MR3 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 2 |
|
||||
| Standability | 3 |
|
||||
| Shatter Tolerance | 2 |
|
||||
| Green Stem | 1 |
|
||||
| % Protein at 13% mst. | 34.9 |
|
||||
| % Oil at 13% mst. | 20.4 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Best |
|
||||
| Narrow Rows | Good |
|
||||
| High pH | Good |
|
||||
| Wide Rows | Best |
|
||||
| Highly Productive | Best |
|
||||
| Moderate/Variable Environments | Good |
|
||||
| Poorly Drained | Good |
|
||||
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk1056",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK1056",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK1056",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": "110",
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK1056-V"
|
||||
],
|
||||
"positioning_statement": "Exceptional Yield Potential Across Soil Types and Environments for Ease of Placement",
|
||||
"strengths": [
|
||||
"Dependable stalk strength with moderate staygreen for good late-season intactness",
|
||||
"Superb green snap tolerance with reliable pH tolerance for the Western Cornbelt",
|
||||
"Outstanding drought tolerance with a dependable disease package"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "-"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK1056_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:26.652889+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
# NK1056
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Relative maturity:** 110
|
||||
- **Brand variants:** NK1056-V
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK1056_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Exceptional Yield Potential Across Soil Types and Environments for Ease of Placement
|
||||
|
||||
## Strengths
|
||||
|
||||
- Dependable stalk strength with moderate staygreen for good late-season intactness
|
||||
- Superb green snap tolerance with reliable pH tolerance for the Western Cornbelt
|
||||
- Outstanding drought tolerance with a dependable disease package
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 4 |
|
||||
| Tar Spot | 4 |
|
||||
| Fusarium Crown Rot | 4 |
|
||||
| Common Rust | - |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk1082",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK1082",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK1082",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": "110",
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK1082-DV"
|
||||
],
|
||||
"positioning_statement": "Excellent Yield Potential Across the Entire Cornbelt with Artesian Technology",
|
||||
"strengths": [
|
||||
"Broadly adapted hybrid for all yield environments",
|
||||
"Moderate plant stature with great emergence for earlier planting window",
|
||||
"Semi-flex ear type enables population flexibility"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "6"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "7"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK1082_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:27.660876+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
# NK1082
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Relative maturity:** 110
|
||||
- **Brand variants:** NK1082-DV
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK1082_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Excellent Yield Potential Across the Entire Cornbelt with Artesian Technology
|
||||
|
||||
## Strengths
|
||||
|
||||
- Broadly adapted hybrid for all yield environments
|
||||
- Moderate plant stature with great emergence for earlier planting window
|
||||
- Semi-flex ear type enables population flexibility
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 4 |
|
||||
| Tar Spot | 4 |
|
||||
| Fusarium Crown Rot | 6 |
|
||||
| Common Rust | 7 |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk11-a4e3",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK11-A4E3",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK11-A4E3",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "1.1",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"E3"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Help Achieve Your Yield Potential with NK11-A4E3 Brand",
|
||||
"strengths": [
|
||||
"Well suited to high yield environments",
|
||||
"Rps1k/3a gene stack for Phytophthora Root Rot protection",
|
||||
"Great emergence and good performance in poorly drained soils"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1k, Rps3a"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "MR3, MR14"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "1"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "33.7"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "20.3"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Fair"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Best"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK11-A4E3_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:55.635587+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
# NK11-A4E3
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 1.1
|
||||
- **Traits:** E3
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK11-A4E3_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Help Achieve Your Yield Potential with NK11-A4E3 Brand
|
||||
|
||||
## Strengths
|
||||
|
||||
- Well suited to high yield environments
|
||||
- Rps1k/3a gene stack for Phytophthora Root Rot protection
|
||||
- Great emergence and good performance in poorly drained soils
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1k, Rps3a |
|
||||
| SCN Race Coverage | MR3, MR14 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 2 |
|
||||
| Standability | 2 |
|
||||
| Shatter Tolerance | 1 |
|
||||
| Green Stem | 4 |
|
||||
| % Protein at 13% mst. | 33.7 |
|
||||
| % Oil at 13% mst. | 20.3 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Good |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Fair |
|
||||
| Wide Rows | Good |
|
||||
| Highly Productive | Best |
|
||||
| Moderate/Variable Environments | Best |
|
||||
| Poorly Drained | Best |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk11-u2xf",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK11-U2XF",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK11-U2XF",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "1.1",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"XF"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "The Next Generation of High-Performing Genetics",
|
||||
"strengths": [
|
||||
"Strong tolerance to IDC paired with the Chloride Excluder gene",
|
||||
"Rps3a with dependable field tolerance to Phytophthora Root Rot",
|
||||
"Medium-tall plant type with very good standability and tolerance to White Mold"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps3a"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "MR3"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "36.1"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "19.0"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Best"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK11-U2XF_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:56.682972+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
# NK11-U2XF
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 1.1
|
||||
- **Traits:** XF
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK11-U2XF_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
The Next Generation of High-Performing Genetics
|
||||
|
||||
## Strengths
|
||||
|
||||
- Strong tolerance to IDC paired with the Chloride Excluder gene
|
||||
- Rps3a with dependable field tolerance to Phytophthora Root Rot
|
||||
- Medium-tall plant type with very good standability and tolerance to White Mold
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps3a |
|
||||
| SCN Race Coverage | MR3 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 2 |
|
||||
| Standability | 3 |
|
||||
| Shatter Tolerance | 2 |
|
||||
| Green Stem | 3 |
|
||||
| % Protein at 13% mst. | 36.1 |
|
||||
| % Oil at 13% mst. | 19.0 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Best |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Good |
|
||||
| Wide Rows | Good |
|
||||
| Highly Productive | Best |
|
||||
| Moderate/Variable Environments | Best |
|
||||
| Poorly Drained | Best |
|
||||
@@ -0,0 +1,103 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk1188",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK1188",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK1188",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": "111",
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK1188-D",
|
||||
"NK1188-AA"
|
||||
],
|
||||
"positioning_statement": "Exciting Yield Potential and Agronomics Across Environments",
|
||||
"strengths": [
|
||||
"Attractive plant height and ear placement",
|
||||
"Solid test weight and grain quality",
|
||||
"Dependable drought tolerance for consistent performance"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "7"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK1188_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:28.631281+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
# NK1188
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Relative maturity:** 111
|
||||
- **Brand variants:** NK1188-D, NK1188-AA
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK1188_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Exciting Yield Potential and Agronomics Across Environments
|
||||
|
||||
## Strengths
|
||||
|
||||
- Attractive plant height and ear placement
|
||||
- Solid test weight and grain quality
|
||||
- Dependable drought tolerance for consistent performance
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 3 |
|
||||
| Tar Spot | 3 |
|
||||
| Fusarium Crown Rot | 4 |
|
||||
| Common Rust | 7 |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk1228",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK1228",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK1228",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": "112",
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK1228-AA"
|
||||
],
|
||||
"positioning_statement": "Excellent Yield Potential Paired with Superb Test Weight",
|
||||
"strengths": [
|
||||
"Broadly adapted across soil types with dependable stalks",
|
||||
"Outstanding emergence with very good early vigor",
|
||||
"Superb Anthracnose Stalk Rot tolerance"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "5"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "5"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "-"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK1228_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:29.642162+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
# NK1228
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Relative maturity:** 112
|
||||
- **Brand variants:** NK1228-AA
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK1228_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Excellent Yield Potential Paired with Superb Test Weight
|
||||
|
||||
## Strengths
|
||||
|
||||
- Broadly adapted across soil types with dependable stalks
|
||||
- Outstanding emergence with very good early vigor
|
||||
- Superb Anthracnose Stalk Rot tolerance
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 2 |
|
||||
| Tar Spot | 5 |
|
||||
| Fusarium Crown Rot | 5 |
|
||||
| Common Rust | - |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk1239",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK1239",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK1239",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": "112",
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK1239-D"
|
||||
],
|
||||
"positioning_statement": "Strong Agronomics with Good Grain Quality",
|
||||
"strengths": [
|
||||
"Solid roots and stalks for ease of harvest",
|
||||
"Good choice for higher managed acres in the Central to Eastern Cornbelt",
|
||||
"Tall and leafy hybrid for dual-purpose silage potential"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "7"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK1239_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:30.661244+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
# NK1239
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Relative maturity:** 112
|
||||
- **Brand variants:** NK1239-D
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK1239_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Strong Agronomics with Good Grain Quality
|
||||
|
||||
## Strengths
|
||||
|
||||
- Solid roots and stalks for ease of harvest
|
||||
- Good choice for higher managed acres in the Central to Eastern Cornbelt
|
||||
- Tall and leafy hybrid for dual-purpose silage potential
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 3 |
|
||||
| Tar Spot | 2 |
|
||||
| Fusarium Crown Rot | 3 |
|
||||
| Common Rust | 7 |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk13-y4xf",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK13-Y4XF",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK13-Y4XF",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "1.3",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"XF"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Trusted Genetics with Impressive Agronomics",
|
||||
"strengths": [
|
||||
"Broadly adapted across soil types to allow for easy placement",
|
||||
"Rps1c/3a gene stack with strong performance in saturated soils",
|
||||
"Very strong Soybean White Mold tolerance with excellent standability"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1c, Rps3a"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "MR3, MR14"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "1"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "35.8"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "18.8"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Best"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK13-Y4XF_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:57.673793+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
# NK13-Y4XF
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 1.3
|
||||
- **Traits:** XF
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK13-Y4XF_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Trusted Genetics with Impressive Agronomics
|
||||
|
||||
## Strengths
|
||||
|
||||
- Broadly adapted across soil types to allow for easy placement
|
||||
- Rps1c/3a gene stack with strong performance in saturated soils
|
||||
- Very strong Soybean White Mold tolerance with excellent standability
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1c, Rps3a |
|
||||
| SCN Race Coverage | MR3, MR14 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 3 |
|
||||
| Standability | 2 |
|
||||
| Shatter Tolerance | 1 |
|
||||
| Green Stem | 3 |
|
||||
| % Protein at 13% mst. | 35.8 |
|
||||
| % Oil at 13% mst. | 18.8 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Best |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Good |
|
||||
| Wide Rows | Good |
|
||||
| Highly Productive | Best |
|
||||
| Moderate/Variable Environments | Best |
|
||||
| Poorly Drained | Best |
|
||||
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk1307",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK1307",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK1307",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": "113",
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK1307-DV"
|
||||
],
|
||||
"positioning_statement": "Strong Performance Across Yield Environments with a Dependable Disease Package",
|
||||
"strengths": [
|
||||
"Strong emergence with very good early vigor",
|
||||
"Moderate plant and ear height with excellent stalks",
|
||||
"Exceptional green snap tolerance"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "-"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK1307_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:31.623395+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
# NK1307
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Relative maturity:** 113
|
||||
- **Brand variants:** NK1307-DV
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK1307_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Strong Performance Across Yield Environments with a Dependable Disease Package
|
||||
|
||||
## Strengths
|
||||
|
||||
- Strong emergence with very good early vigor
|
||||
- Moderate plant and ear height with excellent stalks
|
||||
- Exceptional green snap tolerance
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 3 |
|
||||
| Tar Spot | 4 |
|
||||
| Fusarium Crown Rot | 4 |
|
||||
| Common Rust | - |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk1386",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK1386",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK1386",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": "113",
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK1386-VZ"
|
||||
],
|
||||
"positioning_statement": "Broadly Adapted Hybrid with Excellent Performance Across Yield Levels",
|
||||
"strengths": [
|
||||
"Moderately tall plant and ear height with solid stalk strength",
|
||||
"Excellent disease package allows for flexibility in management",
|
||||
"Dependable performance on drought prone soils with good heat and stress tolerance"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "-"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK1386_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:32.653559+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
# NK1386
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Relative maturity:** 113
|
||||
- **Brand variants:** NK1386-VZ
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK1386_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Broadly Adapted Hybrid with Excellent Performance Across Yield Levels
|
||||
|
||||
## Strengths
|
||||
|
||||
- Moderately tall plant and ear height with solid stalk strength
|
||||
- Excellent disease package allows for flexibility in management
|
||||
- Dependable performance on drought prone soils with good heat and stress tolerance
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 2 |
|
||||
| Tar Spot | 4 |
|
||||
| Fusarium Crown Rot | 3 |
|
||||
| Common Rust | - |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk14-u5e3",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK14-U5E3",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK14-U5E3",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "1.4",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"E3"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Peking SCN with Outstanding Tolerance to IDC",
|
||||
"strengths": [
|
||||
"Rps1c/3a gene stack with excellent Phytophthora field tolerance",
|
||||
"Outstanding emergence allows for early planting",
|
||||
"Medium-tall plant type with excellent performance on tough, coarse textured soils"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1c, Rps3a"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "MR1, MR3, MR5"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "35.1"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "19.1"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Good"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK14-U5E3_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:58.646159+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
# NK14-U5E3
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 1.4
|
||||
- **Traits:** E3
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK14-U5E3_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Peking SCN with Outstanding Tolerance to IDC
|
||||
|
||||
## Strengths
|
||||
|
||||
- Rps1c/3a gene stack with excellent Phytophthora field tolerance
|
||||
- Outstanding emergence allows for early planting
|
||||
- Medium-tall plant type with excellent performance on tough, coarse textured soils
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1c, Rps3a |
|
||||
| SCN Race Coverage | MR1, MR3, MR5 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 2 |
|
||||
| Standability | 4 |
|
||||
| Shatter Tolerance | 3 |
|
||||
| Green Stem | 2 |
|
||||
| % Protein at 13% mst. | 35.1 |
|
||||
| % Oil at 13% mst. | 19.1 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Good |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Best |
|
||||
| Wide Rows | Good |
|
||||
| Highly Productive | Good |
|
||||
| Moderate/Variable Environments | Good |
|
||||
| Poorly Drained | Good |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk14-v3xf",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK14-V3XF",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK14-V3XF",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"XF"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Step Change in Yield Performance with Exceptional Agronomics",
|
||||
"strengths": [
|
||||
"NK17-M2XF type with excellent performance and yield stability",
|
||||
"Great standability and harvest appearance",
|
||||
"Best performance in well drained soils"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1c, Rps3a"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "MR3, MR14"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "36.3"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "20.0"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Best"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK14-V3XF_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:59.673021+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
# NK14-V3XF
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Traits:** XF
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK14-V3XF_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Step Change in Yield Performance with Exceptional Agronomics
|
||||
|
||||
## Strengths
|
||||
|
||||
- NK17-M2XF type with excellent performance and yield stability
|
||||
- Great standability and harvest appearance
|
||||
- Best performance in well drained soils
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1c, Rps3a |
|
||||
| SCN Race Coverage | MR3, MR14 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 2 |
|
||||
| Standability | 2 |
|
||||
| Shatter Tolerance | 3 |
|
||||
| Green Stem | 4 |
|
||||
| % Protein at 13% mst. | 36.3 |
|
||||
| % Oil at 13% mst. | 20.0 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Best |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Good |
|
||||
| Wide Rows | Best |
|
||||
| Highly Productive | Best |
|
||||
| Moderate/Variable Environments | Best |
|
||||
| Poorly Drained | Best |
|
||||
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk1480",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK1480",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK1480",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": "114",
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK1480-DV"
|
||||
],
|
||||
"positioning_statement": "Exciting Genetics for the Eastern Cornbelt",
|
||||
"strengths": [
|
||||
"High performing genetics for the highly productive acre",
|
||||
"Proven emergence with very good seedling vigor for early planting",
|
||||
"Great continuous-corn performance with strong Gray Leaf Spot and Tar Spot tolerance"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "5"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "6"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "-"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK1480_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:33.643259+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
# NK1480
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Relative maturity:** 114
|
||||
- **Brand variants:** NK1480-DV
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK1480_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Exciting Genetics for the Eastern Cornbelt
|
||||
|
||||
## Strengths
|
||||
|
||||
- High performing genetics for the highly productive acre
|
||||
- Proven emergence with very good seedling vigor for early planting
|
||||
- Great continuous-corn performance with strong Gray Leaf Spot and Tar Spot tolerance
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 5 |
|
||||
| Tar Spot | 4 |
|
||||
| Fusarium Crown Rot | 6 |
|
||||
| Common Rust | - |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk15-g9e3s",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK15-G9E3S",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK15-G9E3S",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "1.5",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"E3/STS"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Peking SCN with Excellent Performance Across Geographies",
|
||||
"strengths": [
|
||||
"Strong performance in any yield level",
|
||||
"Excellent standability and very good Soybean White Mold tolerance",
|
||||
"Excellent SDS with strong Brown Stem Rot tolerance"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1k"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "MR1, R3"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "34.5"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "20.0"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Poor"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Best"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK15-G9E3S_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:08:00.657235+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
# NK15-G9E3S
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 1.5
|
||||
- **Traits:** E3/STS
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK15-G9E3S_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Peking SCN with Excellent Performance Across Geographies
|
||||
|
||||
## Strengths
|
||||
|
||||
- Strong performance in any yield level
|
||||
- Excellent standability and very good Soybean White Mold tolerance
|
||||
- Excellent SDS with strong Brown Stem Rot tolerance
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1k |
|
||||
| SCN Race Coverage | MR1, R3 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 3 |
|
||||
| Standability | 2 |
|
||||
| Shatter Tolerance | 3 |
|
||||
| Green Stem | 3 |
|
||||
| % Protein at 13% mst. | 34.5 |
|
||||
| % Oil at 13% mst. | 20.0 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Best |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Poor |
|
||||
| Wide Rows | Good |
|
||||
| Highly Productive | Best |
|
||||
| Moderate/Variable Environments | Good |
|
||||
| Poorly Drained | Best |
|
||||
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk1523",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK1523",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK1523",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": "115",
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK1523-V"
|
||||
],
|
||||
"positioning_statement": "High-End Yield Potential with Agronomic Stability",
|
||||
"strengths": [
|
||||
"Consistent yield potential in a broadly adapted hybrid",
|
||||
"Strong and robust root structure",
|
||||
"Excellent yield potential with increased management"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "7"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK1523_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:34.633961+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
# NK1523
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Relative maturity:** 115
|
||||
- **Brand variants:** NK1523-V
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK1523_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
High-End Yield Potential with Agronomic Stability
|
||||
|
||||
## Strengths
|
||||
|
||||
- Consistent yield potential in a broadly adapted hybrid
|
||||
- Strong and robust root structure
|
||||
- Excellent yield potential with increased management
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 2 |
|
||||
| Tar Spot | 2 |
|
||||
| Fusarium Crown Rot | 4 |
|
||||
| Common Rust | 7 |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,108 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk16-b4e3s",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK16-B4E3S",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK16-B4E3S",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"E3/STS"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Push Your Yield Goals with This Broadly Adapted Variety",
|
||||
"strengths": [
|
||||
"Broadly adapted across soil types, including drought prone and poorly drained",
|
||||
"Excels in high yield environments",
|
||||
"Good response to early planting"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1k"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "MR3"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "2"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Fair"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Best"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK16-B4E3S_260417.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:08:01.693163+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
# NK16-B4E3S
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Traits:** E3/STS
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK16-B4E3S_260417.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Push Your Yield Goals with This Broadly Adapted Variety
|
||||
|
||||
## Strengths
|
||||
|
||||
- Broadly adapted across soil types, including drought prone and poorly drained
|
||||
- Excels in high yield environments
|
||||
- Good response to early planting
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1k |
|
||||
| SCN Race Coverage | MR3 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 3 |
|
||||
| Standability | 2 |
|
||||
| Shatter Tolerance | 4 |
|
||||
| Green Stem | 2 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Best |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Fair |
|
||||
| Wide Rows | Best |
|
||||
| Highly Productive | Best |
|
||||
| Moderate/Variable Environments | Good |
|
||||
| Poorly Drained | Best |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk16-z6e3",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK16-Z6E3",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK16-Z6E3",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "1.6",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"E3"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Peking Source of SCN Resistance with Strong Agronomics",
|
||||
"strengths": [
|
||||
"Well suited to high pH soils with strong tolerance to IDC",
|
||||
"Solid drought stress tolerance",
|
||||
"Rps1c/3a gene stack with great Phytophthora field tolerance"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1c, Rps3a"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "R1, MR3, MR5"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "1"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "35.0"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "19.2"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Fair"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK16-Z6E3_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:08:02.656716+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
# NK16-Z6E3
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 1.6
|
||||
- **Traits:** E3
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK16-Z6E3_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Peking Source of SCN Resistance with Strong Agronomics
|
||||
|
||||
## Strengths
|
||||
|
||||
- Well suited to high pH soils with strong tolerance to IDC
|
||||
- Solid drought stress tolerance
|
||||
- Rps1c/3a gene stack with great Phytophthora field tolerance
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1c, Rps3a |
|
||||
| SCN Race Coverage | R1, MR3, MR5 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 1 |
|
||||
| Standability | 3 |
|
||||
| Shatter Tolerance | 3 |
|
||||
| Green Stem | 2 |
|
||||
| % Protein at 13% mst. | 35.0 |
|
||||
| % Oil at 13% mst. | 19.2 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Best |
|
||||
| Narrow Rows | Good |
|
||||
| High pH | Good |
|
||||
| Wide Rows | Best |
|
||||
| Highly Productive | Good |
|
||||
| Moderate/Variable Environments | Best |
|
||||
| Poorly Drained | Fair |
|
||||
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk1661",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK1661",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK1661",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": "116",
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK1661-DV"
|
||||
],
|
||||
"positioning_statement": "Excellent Yield Potential with Artesian Technology",
|
||||
"strengths": [
|
||||
"Strong disease package and plant health provide crop rotation flexibility",
|
||||
"Dependable stalks and roots that allow for population flexibility across all environments",
|
||||
"Consistent performance across all soil types"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "-"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK1661_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:35.705800+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
# NK1661
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Relative maturity:** 116
|
||||
- **Brand variants:** NK1661-DV
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK1661_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Excellent Yield Potential with Artesian Technology
|
||||
|
||||
## Strengths
|
||||
|
||||
- Strong disease package and plant health provide crop rotation flexibility
|
||||
- Dependable stalks and roots that allow for population flexibility across all environments
|
||||
- Consistent performance across all soil types
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 4 |
|
||||
| Tar Spot | 3 |
|
||||
| Fusarium Crown Rot | 3 |
|
||||
| Common Rust | - |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,103 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk1694",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK1694",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK1694",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": "116",
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK1694-3111",
|
||||
"NK1694-GT"
|
||||
],
|
||||
"positioning_statement": "Superb Yield Potential on Stress Acres",
|
||||
"strengths": [
|
||||
"Well adapted to drought prone soils",
|
||||
"Flex ear type allows for moderate populations under stress conditions",
|
||||
"Stable plant and ear height across rolling stress environments"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "6"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK1694_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:36.634438+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
# NK1694
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Relative maturity:** 116
|
||||
- **Brand variants:** NK1694-3111, NK1694-GT
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK1694_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Superb Yield Potential on Stress Acres
|
||||
|
||||
## Strengths
|
||||
|
||||
- Well adapted to drought prone soils
|
||||
- Flex ear type allows for moderate populations under stress conditions
|
||||
- Stable plant and ear height across rolling stress environments
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 3 |
|
||||
| Tar Spot | 4 |
|
||||
| Fusarium Crown Rot | 4 |
|
||||
| Common Rust | 6 |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk17-h1e3",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK17-H1E3",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK17-H1E3",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "1.7",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"E3"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Great White Mold Tolerance for the Highly Productive Acre",
|
||||
"strengths": [
|
||||
"Good performance on high fertility, high CEC soil types",
|
||||
"Steady performance across yield levels",
|
||||
"Strong response to early planting, paired with solid SDS tolerance"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1c"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "MR3, MR14"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "36.6"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "20.2"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Poor"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Good"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK17-H1E3_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:08:03.648626+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
# NK17-H1E3
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 1.7
|
||||
- **Traits:** E3
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK17-H1E3_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Great White Mold Tolerance for the Highly Productive Acre
|
||||
|
||||
## Strengths
|
||||
|
||||
- Good performance on high fertility, high CEC soil types
|
||||
- Steady performance across yield levels
|
||||
- Strong response to early planting, paired with solid SDS tolerance
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1c |
|
||||
| SCN Race Coverage | MR3, MR14 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 4 |
|
||||
| Standability | 2 |
|
||||
| Shatter Tolerance | 2 |
|
||||
| Green Stem | 2 |
|
||||
| % Protein at 13% mst. | 36.6 |
|
||||
| % Oil at 13% mst. | 20.2 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Best |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Poor |
|
||||
| Wide Rows | Best |
|
||||
| Highly Productive | Good |
|
||||
| Moderate/Variable Environments | Good |
|
||||
| Poorly Drained | Good |
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk17-m2xf",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK17-M2XF",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK17-M2XF",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "soybeans",
|
||||
"release_year": null,
|
||||
"relative_maturity": null,
|
||||
"maturity_group": "1.7",
|
||||
"wheat_class": null,
|
||||
"trait_stack": [
|
||||
"XF"
|
||||
],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [],
|
||||
"positioning_statement": "Trusted Genetics Bring Excellent Yield Potential for Maturity",
|
||||
"strengths": [
|
||||
"Medium-tall plant type with great standability",
|
||||
"Very good tolerance to Sudden Death Syndrome",
|
||||
"Strong performance across yield environments"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE GENETICS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Phytophthora Gene",
|
||||
"value": "Rps1c"
|
||||
},
|
||||
{
|
||||
"characteristic": "SCN Race Coverage",
|
||||
"value": "MR3"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC TRAITS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Standability",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Shatter Tolerance",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Stem",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Protein at 13% mst.",
|
||||
"value": "35.1"
|
||||
},
|
||||
{
|
||||
"characteristic": "% Oil at 13% mst.",
|
||||
"value": "19.6"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "SOIL TYPE ADAPTATION",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Drought Prone",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Narrow Rows",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "High pH",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Wide Rows",
|
||||
"value": "Good"
|
||||
},
|
||||
{
|
||||
"characteristic": "Highly Productive",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Moderate/Variable Environments",
|
||||
"value": "Best"
|
||||
},
|
||||
{
|
||||
"characteristic": "Poorly Drained",
|
||||
"value": "Good"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK17-M2XF_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/soybeans/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:08:04.654369+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
# NK17-M2XF
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Soybeans
|
||||
- **Maturity group:** 1.7
|
||||
- **Traits:** XF
|
||||
- **Catalog page:** https://www.syngenta-us.com/soybeans/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK17-M2XF_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Trusted Genetics Bring Excellent Yield Potential for Maturity
|
||||
|
||||
## Strengths
|
||||
|
||||
- Medium-tall plant type with great standability
|
||||
- Very good tolerance to Sudden Death Syndrome
|
||||
- Strong performance across yield environments
|
||||
|
||||
## Disease Genetics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Phytophthora Gene | Rps1c |
|
||||
| SCN Race Coverage | MR3 |
|
||||
|
||||
## Agronomic Traits
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | 3 |
|
||||
| Standability | 2 |
|
||||
| Shatter Tolerance | 2 |
|
||||
| Green Stem | 3 |
|
||||
| % Protein at 13% mst. | 35.1 |
|
||||
| % Oil at 13% mst. | 19.6 |
|
||||
|
||||
## Soil Type Adaptation
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Drought Prone | Good |
|
||||
| Narrow Rows | Best |
|
||||
| High pH | Good |
|
||||
| Wide Rows | Good |
|
||||
| Highly Productive | Best |
|
||||
| Moderate/Variable Environments | Best |
|
||||
| Poorly Drained | Good |
|
||||
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"source": "nk",
|
||||
"source_key": "nk-nk1732",
|
||||
"vendor": "Syngenta",
|
||||
"brand": "NK",
|
||||
"product_name": "NK1732",
|
||||
"product_id": null,
|
||||
"hybrid_prefix": "NK1732",
|
||||
"hybrid_suffix": null,
|
||||
"crop": "corn",
|
||||
"release_year": null,
|
||||
"relative_maturity": "117",
|
||||
"maturity_group": null,
|
||||
"wheat_class": null,
|
||||
"trait_stack": [],
|
||||
"trait_descriptions": [],
|
||||
"brand_variants": [
|
||||
"NK1732-DVZ"
|
||||
],
|
||||
"positioning_statement": "Broadly Adapted DuracadeVipteraZ3 Hybrid for the Highly Productive Acre",
|
||||
"strengths": [
|
||||
"Season-long standability anchored by strong stalks and roots",
|
||||
"Demonstrated a favorable response to higher management",
|
||||
"Best performance potential in the Western Cornbelt with good Southern movement"
|
||||
],
|
||||
"characteristics_groups": [
|
||||
{
|
||||
"label": "DISEASE RATINGS",
|
||||
"type": "pdf-text",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Anthracnose Stalk Rot",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"characteristic": "Tar Spot",
|
||||
"value": "3"
|
||||
},
|
||||
{
|
||||
"characteristic": "Fusarium Crown Rot",
|
||||
"value": "4"
|
||||
},
|
||||
{
|
||||
"characteristic": "Common Rust",
|
||||
"value": "-"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AGRONOMIC CHARACTERISTICS",
|
||||
"type": "pdf-chart",
|
||||
"items": [
|
||||
{
|
||||
"characteristic": "Emergence",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Seedling Vigor",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Root Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Stalk Strength",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Green Snap",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Staygreen",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drydown",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Test Weight",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
},
|
||||
{
|
||||
"characteristic": "Drought",
|
||||
"value": "rated in tech-sheet PDF chart (not text-extractable)"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_scale_direction": "1-9 (1 = best, lower = more resistant)",
|
||||
"regional_recommendations": [],
|
||||
"image_url": null,
|
||||
"techsheet_url": "https://assets.syngenta-us.com/pdf/techsheets/NK1732_260310.pdf",
|
||||
"source_urls": [
|
||||
"https://www.syngenta-us.com/corn/nk/products"
|
||||
],
|
||||
"sitemap_last_modified": null,
|
||||
"fetched_at": "2026-05-25T18:07:37.626035+00:00",
|
||||
"scraper_version": "0.1.0"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
# NK1732
|
||||
|
||||
- **Vendor:** Syngenta
|
||||
- **Brand:** NK
|
||||
- **Crop:** Corn
|
||||
- **Relative maturity:** 117
|
||||
- **Brand variants:** NK1732-DVZ
|
||||
- **Catalog page:** https://www.syngenta-us.com/corn/nk/products
|
||||
- **Tech sheet (PDF):** https://assets.syngenta-us.com/pdf/techsheets/NK1732_260310.pdf
|
||||
- **Rating scale (NK):** 1-9 (1 = best, lower = more resistant)
|
||||
|
||||
---
|
||||
## Positioning
|
||||
|
||||
Broadly Adapted DuracadeVipteraZ3 Hybrid for the Highly Productive Acre
|
||||
|
||||
## Strengths
|
||||
|
||||
- Season-long standability anchored by strong stalks and roots
|
||||
- Demonstrated a favorable response to higher management
|
||||
- Best performance potential in the Western Cornbelt with good Southern movement
|
||||
|
||||
## Disease Ratings
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Anthracnose Stalk Rot | 2 |
|
||||
| Tar Spot | 3 |
|
||||
| Fusarium Crown Rot | 4 |
|
||||
| Common Rust | - |
|
||||
|
||||
## Agronomic Characteristics
|
||||
|
||||
| Characteristic | Value |
|
||||
|---|---|
|
||||
| Emergence | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Seedling Vigor | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Root Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Stalk Strength | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Green Snap | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Staygreen | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drydown | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Test Weight | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
| Drought | rated in tech-sheet PDF chart (not text-extractable) |
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user