Compare commits

...

27 Commits

Author SHA1 Message Date
justin b98965a68a Two new trial sources: LG Seeds + AgriGold plot reports (+2,307 cross-vendor yield trials)
Adds the **first non-Syngenta trial coverage** to the corpus:

| Source | Docs | Publisher | URL pattern |
|---|---|---|---|
| lg_plot_reports | 1,304 | LG Seeds (AgReliant) | lgseeds.com/performance/{crop} JSON XHR |
| agrigold_plot_reports | 1,003 | AgriGold (AgReliant) | agrigold.com/{crop}/performance/{crop}-yield-results |

Total trial coverage now: gh_plot_reports (4,299) + agripro_trials (14) +
lg_plot_reports (1,304) + agrigold_plot_reports (1,003) = 6,620 trial docs.

**Both scrapers follow the gh_plot_reports template** — same RateLimitedSession
primitive, same TrialResult/PlotReport dataclass shape, same data_type="trial"
sidecar convention. The trial chunker (`rag/chunk.py:_render_trial_chunk`) is
extended to recognize both new sources; they share `_render_gh_plot_chunk`
since their sidecars are structurally identical (just different brand label).

**LG specifics:**
- POST `/performance/{crop}/GetPlots/` returns sparse listing (id, year, lat/lng)
- GET `/performance/{crop}/GetPlotData/?PlotId=X&IsSilage=Y` returns full detail
  with state, cooperator, planting/harvest dates, and **top-5 hybrids** (LG +
  competitors). Top-5 is what LG publishes publicly; not the full ranking.
- 4 crops: corn (963), soybeans (287), sorghum (10), silage (50) — first
  alfalfa absent because LG doesn't run alfalfa plots; that's variety-only data.
- 301 gotcha: www.lgseeds.com redirects to lgseeds.com which drops POST body,
  so the scraper hits the apex host directly.

**AgriGold specifics:**
- Listing: GET `/{crop}/performance/{crop}-yield-results?harvestYear={year}`
  (server-rendered HTML, ~1MB; 408 corn plots in 2025 alone)
- Detail: GET `/{crop_url}/performance/{slug}/{plot_id}` returns the **full
  ranking** (not just top-5) plus rich plot management metadata: tillage,
  previous crop, fungicide, herbicide, insecticide, irrigation, soil type,
  row width, population. Most metadata-rich of the three trial sources.
- Soybean URL slug is singular: `/soybeans/performance/soybean-yield-results/`
- Columns: Rank | Brand | Product | Trait | Ck | H20 (moisture) | Test Wt. |
  Yield | Adj Yield (check-adjusted)
- 2 crops: corn (849) + soybeans (157)

**Indexer needs no changes** — `rag/index.py` auto-discovers any directory
under corpus/ and routes by data_type. Both new sources flow into the
existing trial collection and surface via `search_trials`.

Years scraped: 2024+2025 (matching gh_plot_reports baseline). 2023 is
available via `--include-2023` on either scraper for future backfill.
2026-05-26 22:26:24 -04:00
justin db1567f84a Merge pull request 'Three new brand scrapers: LG Seeds + AgriGold + Ebbert's Seeds (+310 varieties)' (#14) from lg-agrigold-ebberts into main
Image rebuild (skip scrape) / build (push) Successful in 3m10s
2026-05-26 12:42:55 -04:00
justin 30b182e28a Three new brand scrapers: LG Seeds + AgriGold + Ebbert's Seeds (+310 varieties)
User flagged LG, AgriGold, and Ebbert's (local Ohio breeder) are
all active in farmer territory. Built three scrapers — corpus now
covers 5,839 chunks across 11 brands.

Net new varieties: 310
  lg_seeds        170 — corn 78 + soy 63 + alfalfa 16 + sorghum 13
                  → adds FIRST alfalfa coverage (FD 3-5 range)
  agrigold        111 — corn 60 + soy 51
  ebberts_seeds    29 — corn 17 + soy 12 (regional OH/IN breeder)

scrape/sources/lg_seeds.py — embedded-JSON pattern (cleanest):
- /products/<crop> pages have a `var products = [...]` blob with the
  variety summary (Variety, Maturity, Traits[], Bullets[], CropType).
- Per-variety detail page (/products/<crop>/<Variety>) carries the
  ratings as `<span class="bar-N">` where N is 1-9 on the canonical
  scale. Same 9=best direction as Bayer / Golden Harvest.
- Three sections per page: Characteristics / Management / Disease
  Tolerance, plus a few qualitative bars ("Tar Spot Susceptible",
  "Fungicide Response High") preserved as text values.

scrape/sources/agrigold.py — 5-circle scale:
- Listing page has 60+ /corn/explore-corn-hybrids/<CODE> URLs.
- Detail page renders ratings as <div class="scale"> blocks with 5
  child <div class="circle"> elements, of which N have class
  "circle selected" → rating N on a 1-5 scale.
- 7 sections per page incl. Silage Characteristics (Dairy Silage
  Rating, NDFd 30 Hr, Crude Protein), Planting Applications, Soil
  Adaptability, Plant Characteristics, Product Features.
- Distinct rating direction (1-5 vs Bayer's 1-9) — declared in
  _scale_direction so chunker preamble renders correctly.

scrape/sources/ebberts_seeds.py — small regional breeder, verbatim
text approach:
- Single page per crop (corn / soybeans / wheat). Each variety is an
  <h1> + multi-section CSS-grid block where labels and values are in
  separate adjacent cells. Reconstructing perfectly-aligned columns
  for a 29-variety total isn't worth the engineering — chunk body
  carries the verbatim text in document order, LLM can read the
  tabular content.
- Scale: 1-5 (1 = best, lower = more resistant), inferred from
  marketing-vs-rating cross-checks ("Robust tall plants" + STANDABILITY
  1.0 → 1 = best).
- Politeness: robots.txt asks for Crawl-delay: 5; honored.

All three new scrapers smoke-tested:
- LG corn LG5701 RM 116 SmartStax → 3 characteristic groups with
  Disease Tolerance ratings (Northern/Southern Leaf Blight 8-9, etc.)
- AgriGold A616-30 RM 86 VT2RIB → 7 groups incl. silage and soil
  adaptability ratings
- Ebbert's 7000TR RIB RM 100 → 1098-char verbatim body covering
  CHARACTERISTICS, DISEASE RATINGS, herbicide tolerance, etc.

Corpus state after this PR:
- 5,839 chunks (was 5,529)
- 11 brands (was 8)
- 8 crops (corn 3047, soy 2209, silage 359, wheat 123, sorghum 49,
  cotton 30, alfalfa 16, canola 6) — alfalfa is brand-new

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-26 12:42:23 -04:00
justin 06461ade1d Merge pull request 'bayer_seeds: add Channel + DEKALB silage/sorghum/canola + Deltapine cotton (+456 varieties)' (#13) from bayer-expand-channel-deltapine into main
Image rebuild (skip scrape) / build (push) Successful in 3m4s
2026-05-26 11:55:00 -04:00
justin eaa7e0789b bayer_seeds: add Channel + DEKALB silage/sorghum/canola + Deltapine cotton
User flagged that Channel is expanding into their area — re-walked
the cropscience.bayer.us sitemap and found 8 additional brand×crop
paths beyond the original DEKALB/Asgrow/WestBred triple. Patches
the scraper to walk all of them; total Bayer varieties roughly
doubles from 475 to 931 and the corpus picks up first-ever
coverage in sorghum (36), cotton (30), canola (6), and silage as a
distinct crop (was conflated with corn before).

Net new varieties: 456
  Channel    corn=181  soy=67   silage=54  sorghum=18    (320)
  DEKALB     silage=82 sorghum=18  canola=6              (106)
  Deltapine  cotton=30                                    (30)

scrape/sources/bayer_seeds.py
- Replace `BRANDS` (brand → 1 path) and `CROP_SUFFIX` (brand → 1
  suffix) with a flatter `BRAND_PATHS` list of (brand, url_path,
  crop, is_primary_for_brand) entries. Channel and DEKALB are now
  multi-crop brands; the same scraper walks every brand×crop pair.
- source_key derivation: for a brand's PRIMARY crop, strip the
  trailing `-<crop>` suffix (matches the existing deployed source
  keys for DEKALB corn / Asgrow soy / WestBred wheat). For
  SECONDARY crops, KEEP the suffix so DEKALB-the-same-SKU sold as
  both grain corn and silage gets two distinct source_keys
  (collision-safe and unambiguous for `lookup_variety`).
- New `--crop` CLI filter for incremental backfills.
- Log line shows brand + crop alongside source_key for visibility.

rag/chunk.py
- Channel + Deltapine pages use slightly different characteristics
  group labels (DISEASE not DISEASE RATINGS, AGRONOMIC
  CHARACTERISTICS not GROWTH/HARVEST, plus MATURITY / ADAPTATION /
  HERBICIDES / OTHER). Fold them into the DISEASE / AGRONOMIC /
  MANAGEMENT label sets so the chunker buckets them correctly
  into the standard sections.

Smoke-tested cross-brand × cross-crop queries against the rebuilt
index (5,529 chunks total) — all 6 sample queries surface the
right brand+crop at top-3:
  Channel corn 110 RM       → 210-25TRE BRAND
  Channel soy 2.5 MG IA     → 2622RXF BRAND
  Deltapine cotton XF       → DP 1820 B3XF BRAND
  Sorghum dryland Kansas    → 6B95 BRAND (Channel)
  Silage corn WI dairy      → DKC64-44RIB BRAND BLEND (silage variant)
  Canola Northern Plains    → DK401TL BRAND

Watchtower will pull the new image on the next push; deploy is
unchanged otherwise.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-26 11:54:30 -04:00
justin c76df4c44a Merge pull request 'README: reflect deployed state' (#12) from readme-update into main 2026-05-25 17:51:19 -04:00
justin d65c7d0d67 README: reflect deployed state — 5,073 chunks, eval numbers, 6 tools
The scaffold-era README was out of sync with the shipped product:
- Vendor counts stale (recon estimates, not actual deployed counts)
- Trial data sources (gh_plot_reports + agripro_trials) entirely
  unmentioned
- Tool list listed `corpus_status` (doesn't exist) and missed both
  `lookup_variety` and `search_trials`
- Build-phase table showed everything as "pending" / "next" but
  Phases 1-8 + 11 all shipped

Rewrite to reflect the deployed state:
- Corpus inventory: 760 variety records + 4,313 trial documents =
  5,073 chunks across 6 sources
- All 6 MCP tools documented with their purpose
- Eval baseline table (hybrid+rerank wins 100%, P@1 90%, MRR 0.905)
  with the surprising findings (dense alone is noise; hybrid w/o
  rerank is WORSE than BM25 alone)
- Deploy mechanics: Watchtower chain, 4-GPU embedder pool, shared
  llama-rerank sidecar with the network-attach gotcha
- Status table:  on the phases that shipped, deferred work list
  (becks_pfr, 2023 plot backfill, NK trials, Channel Seed brand)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-25 17:50:05 -04:00
justin c5a00afca2 Merge pull request 'CI fix (localhost OLLAMA endpoint) + Drawbar deploy pattern' (#11) from ci-fix-and-deploy-pattern into main 2026-05-25 17:23:20 -04:00
justin cd4a0f3148 CI fix + Drawbar-stack deploy pattern
CI was failing on the "Rebuild indexes from committed corpus" step
with httpx.ConnectError [Errno 111] — `localhost:11434` in the
OLLAMA_URL pool resolves to the Gitea Actions runner CONTAINER's
own localhost (no Ollama there), not the host. Fix: drop localhost
from CI's pool; it stays useful for dev runs from the workstation
where the TITAN X serves Ollama on the host loopback.

Final CI pool — 3 LAN endpoints, weighted to .0.125 (4090):
  .0.125:11434  ×4 (RTX 40-series, 242 embeds/sec)
  .0.2:11436    ×2 (GPU-pinned,    108 embeds/sec)
  .0.2:11435    ×1 (GPU-pinned,     72 embeds/sec)

deploy/docker-compose.yml — rewrite to match Drawbar's actual
parent-stack pattern, learned by inspecting how chem-mcp is
deployed on trashpanda:

  - Service name `seed-mcp` (matches chem-mcp's pattern). Reached
    via docker DNS as `seed-mcp:8080` from drawbar-backend-api.
  - Internal-only (no host port), expose 8080 only.
  - MCP_PORT=8080 inside container (chem-mcp uses 8080 too).
  - OLLAMA_URL via host.docker.internal:11434 (trashpanda's Ollama
    runs on the host). extra_hosts maps host-gateway.
  - RERANK_URL: http://llama-rerank:8080 — but llama-rerank is on
    the default `bridge` network, not drawbar-backend_default,
    so chem-mcp's reranker silently fails! Documented patch:
       docker network connect drawbar-backend_default llama-rerank
    Fixes rerank for BOTH chem-mcp (today: dense-only fallback)
    and the new seed-mcp.
  - Watchtower label set so CI pushes to :latest auto-deploy.

Documented llama-rerank service block as an alternative for
bringing the sidecar fully into the parent compose stack, with the
ubatch-size flag the seed corpus needs.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-25 17:23:03 -04:00
justin 038475e7fd Merge pull request 'Phase 6/7: rerank wiring + eval harness (hybrid+rerank = 100% pass, 90% P@1)' (#10) from eval-and-rerank into main
Image rebuild (skip scrape) / build (push) Failing after 22s
2026-05-25 17:03:38 -04:00
justin bd71f30ca7 Phase 6/7: wire rerank + eval harness — 100% pass on 21 golden queries
Phase 6 — Reranker integration
- New _rerank(query, [(cid, doc), ...]) helper in server.py calls
  llama.cpp's /v1/rerank endpoint, returns reranker-ordered ids
  or None on failure (graceful fallback — search never blocks
  on the sidecar).
- search_docs + search_trials both call _rerank() on the post-
  hybrid pool BEFORE truncating to k. The variety-code prefilter
  still pins exact matches on top.
- Per-doc truncation to 2000 chars to fit jina-reranker-v2-base's
  per-pair token budget. Full chunk text still returned to the
  caller — truncation is rerank-input-only.
- Telemetry adds `reranked: true|false` so usage logs distinguish
  reranked calls.

Phase 7 — Eval harness
- eval/queries.jsonl: 21 golden queries spanning:
    * variety-code lookups (DKC62-08RIB, AG29XF4, WB6430, E085Z5,
      AP Iliad)
    * semantic variety queries (drought-tolerant corn, SCN MG-3
      soy, Rps3a, XtendFlex, HRS stripe rust, SWW PNW, Goss's Wilt)
    * trial queries (IA/IN/MN regional, AP Iliad ID, NK1701 head-
      to-head, silage Ton/Acre, product=DKC65-95)
    * anti-hallucination (Pioneer P1142 fallback, DKC65-20 not-in-
      corpus expected_empty)
- eval/retrievers.py: 4 named retrievers — dense, bm25, hybrid
  (dense+bm25+RRF), hybrid+rerank — all sharing the same filter
  shape as docs_mcp/server.py._build_where.
- eval/run_eval.py: runs each retriever against each query,
  reports Recall / Precision@1 / MRR / avg latency. Markdown
  output in eval/results/baseline.md.

Baseline results (k=5, 21 queries):

  | Retriever       | Pass  | Recall | P@1   | MRR   | Avg ms |
  |-----------------|-------|--------|-------|-------|--------|
  | hybrid+rerank   | 21/21 | 100%   | 90%   | 0.905 | 2064   |
  | bm25            | 20/21 |  95%   | 81%   | 0.833 |    5   |
  | hybrid          | 15/21 |  71%   | 62%   | 0.619 |   73   |
  | dense           | 14/21 |  67%   | 38%   | 0.440 |   79   |

Key findings:
1. hybrid+rerank wins on quality — 100% pass, 90% P@1.
2. BM25 alone is surprisingly competitive (95% pass) at 5 ms —
   excellent fallback when rerank is down. The variety-code
   prefilter in search_docs is doing a lot of work here.
3. Dense embedding alone is the WEAKEST configuration on this
   corpus — variety identity tokens (DKC62-08RIB, AP Iliad,
   Rps3a) have no semantic neighbors, so nomic-embed-text returns
   noise. The hybrid (no rerank) layer actively hurts because
   RRF dilutes the BM25 ranking with dense noise.
4. Anti-hallucination queries (Pioneer fallback, DKC65-20 not-
   in-corpus) pass on ALL retrievers including dense-only —
   the must_not_contain + expected_empty design holds.

Deploy decision: HYBRID_SEARCH=true + RERANK_URL set
(production env already has both — refresh.yml + image-only.yml
+ deploy/docker-compose.yml all configured).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-25 17:02:57 -04:00
justin d60d747858 Merge pull request 'gh_plot_reports corpus (4,299 trials) + concurrency + 4-GPU pool' (#9) from gh-plot-reports-corpus into main
Image rebuild (skip scrape) / build (push) Failing after 22s
2026-05-25 16:47:16 -04:00
justin 0e625553e5 gh_plot_reports corpus (4,299 plots) + concurrency + 4-GPU pool
CORPUS — 4,299 GH plot reports added (3,797 written + 502 from the
earlier slow run + 319 sitemap-listed URLs that 404'd as
discontinued). Combined with prior 760 varieties + 14 AgriPro
trials = 5,073 total chunks now indexed.

scrape/sources/gh_plot_reports.py — concurrency speedup:
- 4 worker threads (ThreadPoolExecutor), each with its own
  requests.Session for connection-pool efficiency.
- Shared class-level rate limiter (0.25 sec between ANY two
  requests across all threads). Net throughput ~4 req/sec —
  well below any rate-limit threshold a public site enforces.
- Diagnosis vs original 1 req/sec: GH had ZERO rate limiting,
  zero 429s, zero retries. The 1 sec self-throttle was just too
  conservative. Bench:
    1 worker  / 1.0 sec throttle:  ~0.4 plots/sec (190 min ETA)
    4 workers / 0.25 sec throttle: ~3 plots/sec  (~25 min actual)

rag/chunk.py — chunk size cap for nomic-embed-text's 2048-token
context window:
- Empirically tested: failure threshold is ~5,250 chars on
  numeric-heavy trial chunks (chars/token ratio 2.4 vs 3.5 for
  prose). Cap at 4,500 chars to be safely under at worst-case
  2.2 chars/token.
- Applied to BOTH variety and trial chunks. Marked truncated
  chunks with metadata.embed_truncated = True; FULL text stays
  in the on-disk .md for get_page to return verbatim.

.gitea/workflows/{refresh,image-only}.yml — OLLAMA_URL pool
restructured for the 4 GPU-pinned endpoints. Bench (50-chunk
batches on nomic-embed-text):

    .0.125:11434  (RTX 40-series)  242 embeds/sec  ← weight ×4
    .0.2:11436    (GPU-pinned)     108 embeds/sec  ← weight ×2
    .0.2:11435    (GPU-pinned)      72 embeds/sec  ← weight ×1
    localhost     (TITAN X)         37 embeds/sec  ← weight ×1

Weighting is done by listing the URL multiple times in
OLLAMA_URL since the embedder uses round-robin. .0.2:11434 is
explicitly EXCLUDED — it isn't pinned to a specific GPU.

Combined index rebuild for 5,073 chunks now finishes in ~3 min
(was 19+ on the single-endpoint pool).

Smoke tests:
✓ list_versions: 5,073 docs across 6 sources, 2 vendors, 6
  brands, 4 crops (corn 2711, soy 2016, silage 223, wheat 123).
✓ search_trials({crop=corn, state=IA, year=2024}): 3 IA 2024
  corn trials surfaced.
✓ search_trials("Phytophthora resistance soybean trial"): NK
  NK43-W1XFS top-1 in LA 2024 trial (cross-vendor result).
✓ search_trials("AP Iliad Idaho wheat"): AgriPro Washington/N
  Idaho 2025 trial surfaced.
✓ search_trials(product=DKC65-95): 3 corn trials containing
  that hybrid in IL/IA 2024.
✓ search_trials(product=NK1701): 3 corn trials in AR/MS 2024.
✓ Product filter correctly returns EMPTY for products that
  aren't in the corpus (DKC65-20 is a 2023 product; 2023 plots
  deferred). Anti-hallucination contract preserved.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-25 16:46:35 -04:00
justin cfa27d0bca Merge pull request 'trial data: workflow scrape steps + lessons.md trial-data guide' (#8) from workflow-and-lessons-for-trials into main
Image rebuild (skip scrape) / build (push) Failing after 10s
2026-05-25 15:22:25 -04:00
justin 84b49d8360 trial data: workflow scrape steps + lessons.md trial-data guide
.gitea/workflows/refresh.yml — add scrape steps for the new trial
sources (agripro_trials, gh_plot_reports) so the monthly cron
refreshes them alongside the variety sources. gh_plot_reports
is the heaviest single source (~4,600 docs @ 1 req/sec ≈ 70 min);
runs late so an earlier failure doesn't waste time before failing.
Commit-message variable count expanded to surface the trial counts.

docs_mcp/lessons.md — new "trial-data" section telling the agent:

- The two surfaces (search_docs = identity, search_trials = perf)
  are complementary; how to route a farmer question to each.
- What's indexed (GH plot reports cross-vendor, AgriPro regional
  PDFs) vs what's not (Bayer per-variety trials, NK yield results,
  Pioneer, university extension trials).
- Recommended workflow: search_trials → identify top performers →
  lookup_variety on each to verify identity → don't fabricate.
- How to read a GH plot report (per-column headers vary by crop:
  corn/soy use Yield/MST/Test Weight, silage uses Ton/Acre +
  Milk + Beef columns).
- Single-data-point caveat: one plot is one cooperator's field;
  look across multiple plots for a robust recommendation.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-25 15:22:08 -04:00
justin 17260c32c8 Merge pull request 'Trial-data scrapers + search_trials MCP tool (cross-vendor yield trials)' (#7) from trial-data-scrapers into main
Image rebuild (skip scrape) / build (push) Failing after 12s
2026-05-25 15:19:43 -04:00
justin c737871c4c Trial-data scrapers: gh_plot_reports + agripro_trials + search_trials tool
This PR introduces TRIAL data — yield-performance results from real
field trials — as a SEPARATE data type alongside variety identity.
The two are complementary:

  search_docs  → "What's the disease resistance of DKC62-08RIB?"
                  (variety identity — what it IS)
  search_trials → "Which corn hybrid won the IA 2024 trials?"
                  (performance data — how it PERFORMED)

scrape/sources/gh_plot_reports.py — Golden Harvest plot reports
- 4,618 expected (2024+2025; 2023 deferred to a backfill pass).
- URL: /<crop>/plot-report/<state>/<year>/<plot_id>
- Cross-vendor: each plot lists products from multiple brands
  (NK / DEKALB / Golden Harvest / Enogen / Pioneer / Channel) side
  by side at one cooperator's field — the kind of independent
  comparison data Bayer doesn't publish itself.
- Generic per-column metrics dict (Yield/MST/Test Weight/$/Ac for
  corn+soy, Ton/Acre + Milk + Beef columns for silage).
- Politeness: 1 req/sec, retries on 429/5xx, no redirect-follow.

scrape/sources/agripro_trials.py — AgriPro regional trial PDFs
- 14 unique PDFs (38 sitemap links deduped) at /trials-data
- pdfplumber text extraction, region/year detection from filename
- Verbatim PDF text preserved in chunk body so variety + yield
  number adjacency drives retrieval (AP Iliad's Aberdeen ID yield
  matches a query about "AP Iliad Idaho yield")

rag/chunk.py — chunks_from_trial() dispatching by source
- Plot reports: identity preamble + Top-5 by primary metric + full
  ranking table. Metric labels chosen from the data (corn/soy use
  "Yield", silage uses "Ton/Acre").
- AgriPro PDFs: identity preamble + verbatim trial body inline so
  per-location yields surface for region+variety queries.
- Variety chunks get data_type="variety" metadata; trial chunks get
  data_type="trial". Single Chroma collection; the tool router
  filters by data_type rather than maintaining two collections.

rag/index.py — dispatch by sidecar's data_type field
rag/bm25.py — new filter columns (data_type, year, state)

docs_mcp/server.py — sixth MCP tool: search_trials(crop?, state?,
year?, product?, k=10)
- Filters trial chunks via where={"data_type": "trial", ...}
- Optional product substring post-filter for "DKC62-08RIB Iowa 2024"
  style searches
- search_docs now defaults to data_type="variety" so trial chunks
  don't bleed into variety identity queries
- Tool docstring routes the agent: "use lookup_variety to verify
  identity details on any trial winner you surface"

NK trial endpoint (/NKSeeds/wsProxy.asmx/GetPlotResult) is documented
as deferred — the ASMX-SOAP shape returned empty XML on initial
probe. Bayer per-variety yield data is not publicly indexed at all
— documented in the trial-scope note (DEKALB/Asgrow trial data flows
through Channel reps, not the web). AgRevival research books exist
as 10 large annual PDFs but are deferred (low ROI per parse).

Initial corpus shipped in this PR: 14 AgriPro trial PDFs. The 4,618
Golden Harvest plot reports are scraping in background and will be
added in a follow-up corpus-snapshot PR (~70 min ETA).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-25 15:19:03 -04:00
justin 7b3da908e0 Merge pull request 'agripro + nk scrapers — 146 Syngenta varieties added (760 total in corpus)' (#6) from agripro-nk-scrapers into main
Image rebuild (skip scrape) / build (push) Failing after 35s
2026-05-25 14:17:18 -04:00
justin 9ce920f622 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>
2026-05-25 14:16:36 -04:00
justin 2588ebafa1 Merge pull request 'Phase 4-5: deployable container + corpus snapshot (614 varieties)' (#5) from phase-4-5-deploy into main
Image rebuild (skip scrape) / build (push) Failing after 29s
2026-05-25 13:40:41 -04:00
justin 75f714b454 Phase 4-5: deployable container + corpus snapshot + CI fixes
deploy/docker-compose.yml — replace <product>/<registry> placeholders
with concrete values for Drawbar's stack:
- image: git.jpaul.io/justin/seed-mcp:latest (CF tunnel for pulls; CI
  pushes via LAN 192.168.0.2:1234 to avoid 100 MB body cap)
- container_name: seed-mcp
- port 8001:8000 (8001 host-side to not collide with crop-chem-docs
  on 8000)
- PRODUCT_NAME=crop_seed, hybrid search enabled, stateless HTTP
- llama-rerank shared with crop-chem-docs (NOT redefined here —
  expected to already be in Drawbar's parent compose network)
- networks.drawbar-mcp external: true so seed-mcp joins the existing
  cross-MCP shared network

.gitignore — corpus/ is now COMMITTED, not ignored. The monthly
refresh workflow scrapes and commits corpus changes; the image-only
workflow rebuilds indexes from the committed corpus. Allowing the
corpus to flow through git means the :corpus-YYYY.MM.DD image tag
pins to a specific seed-catalog snapshot. chroma/ and bm25/ remain
ignored — those are deterministically derived from corpus.

Initial committed snapshot: 614 varieties.
- bayer_seeds: 475 (DEKALB 288 + Asgrow 102 + WestBred 85)
- golden_harvest: 139 (Syngenta corn + soy; 36 sitemap URLs
  302-redirected = discontinued)

rag/chunk.py — normalize brand and crop to uppercase/lowercase in
Chroma metadata so cross-vendor brand-filter lookups don't break on
casing inconsistency (Bayer stores "DEKALB", Golden Harvest stores
"Golden Harvest"; _build_where uppercases user-supplied brand which
matched the former but not the latter pre-fix). Sidecar JSON keeps
original casing for display.

Stub scrapers (nk, agripro, becks_pfr, becks_products) — change
return code from 2 to 0 so the monthly-refresh CI workflow doesn't
fail on deferred sources. Real implementations will return 0 on
success / 1 on failure when they ship.

Smoke-tested cross-vendor retrieval against the 614-chunk index:
- list_versions shows both vendors with correct facet counts
- broad "corn hybrid 100 RM" query returns both DEKALB and Golden
  Harvest hits in top 5
- brand='Golden Harvest' filter returns 3 GH-only varieties
- variety-code prefilter still works (E085Z5 → top hit on GH)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-25 13:40:05 -04:00
justin 9d4a490731 Merge pull request 'golden_harvest: implement scraper (~175 Syngenta corn + soy)' (#4) from golden-harvest-scraper into main
Image rebuild (skip scrape) / build (push) Failing after 6s
2026-05-25 13:31:24 -04:00
justin 1409c2617d golden_harvest: implement scraper (~175 Syngenta corn + soy)
Sitemap-driven scraper for goldenharvestseeds.com. Walks
sitemap-ghs-hybrids.xml to discover product URLs under
/products/corn/ and /products/soybean/ (~89 + 86 = 175 candidates).

Per-variety detail parsed from server-rendered HTML:

- product code (from <h1> / <title>)
- positioning (from <meta name="Description">)
- maturity (from <div class="product-label"><div class="right">):
  integer days for corn, decimal MG for soybeans
- traits derived from product-code suffix (XF, E3, VIP3, GT, Z, etc.)
- 9-row disease tolerance bar chart (#dvDiseaseTolerance) where
  data-percentage / 10 = rating on 1-9 (9 = best) scale
- 9-row agronomic characteristics bar chart (#dvAgronomicChar)
- recommended environment list (.AgronomicMange — upstream typo)
- all 2-column tables (plant description, seed quality, herbicide
  responses, Phytophthora gene, SCN race coverage)
- tech-sheet PDF URL from live HTML (not sitemap — that's stale)

302 redirects to /product-finder treated as "discontinued" and
skipped (Golden Harvest still sitemap-lists some retired SKUs).

Rating scale: 1-9 (9 = best) — same as Bayer despite recon's
"9-to-1" descriptor (that referred to chart-axis direction, not
numeric meaning). _scale_direction is set explicitly so the chunker
stays forward-compatible.

PDFs are NOT downloaded (recon flagged ~14MB each); tech-sheet URLs
are captured in the sidecar for future enrichment.

Smoke-tested all branches: 4 corn varieties (E085Z5, E092W5,
E094Z4, E095D3, E097K6, E100A3) with full 6 characteristics groups
+ tech-sheet URL; 3 soy varieties (GH00864XF MG 0.08, GH00973E3
MG 0.09, GH0225XF MG 0.2) with disease + agronomic bars; 302
redirects skipped cleanly.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-25 13:30:30 -04:00
justin 28d8cb83b3 Merge pull request 'Phase 11: crop_seed_api_lessons tool + Pioneer fallback' (#3) from api-lessons-pioneer-fallback into main
Image rebuild (skip scrape) / build (push) Failing after 7s
2026-05-25 13:19:17 -04:00
justin 4009dc0b78 Phase 11: crop_seed_api_lessons tool + Pioneer fallback
Add the fifth MCP tool — crop_seed_api_lessons(topic?) — backed by
docs_mcp/lessons.md, the ONLY source of opinionated content in the
server. Everything else (search_docs, get_page, lookup_variety)
returns verbatim from vendor catalogs; lessons.md fills the gaps
the corpus can't cover.

The Pioneer fallback is the critical anti-hallucination piece:
Pioneer's ToS bans automation, so the corpus has no Pioneer data.
Without this tool, an agent might surface Bayer/Asgrow chunks as
mediocre matches for a Pioneer query. The tool's docstring tells
the agent to call it on any Pioneer / P-series question; the
'pioneer' section says clearly:

  "I don't have Pioneer's variety data indexed... please consult
  Pioneer or an extension service."

  "Do NOT invent Pioneer hybrid ratings."

Other lesson sections cover knowledge the agent needs to interpret
search_docs / get_page output correctly:

- rating-scales: Bayer 1-9, Golden Harvest 9-to-1, what
  R/MR/S/Rps1c/R3 mean in soybean disease columns
- maturity-semantics: corn RM days vs soybean MG vs wheat class +
  qualitative early/medium/late
- trait-glossary: SSRIB, VT2PRIB, XF, E3, Conkesta, Clearfield, etc.
- scn-resistance: race coverage + Peking vs PI 88788 source
- regional-listings: how to interpret Bayer's "local profiles"
- sources-not-yet-indexed: which vendors aren't in the corpus yet
- checking-your-work: always call lookup_variety before quoting

Lesson lookup prefers slug-match (returns just `rating-scales` for
topic="rating", not every section that mentions ratings); falls
back to body-match only when no slug matches.

Smoke-tested with topic=pioneer, topic=rating, topic=trait,
topic=zzzzzz (no match), and topic=None (full index = 10K chars,
8 sections).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-25 13:18:57 -04:00
justin 3cab941c08 Phase 2/3: chunker + indexer + MCP server tools (#2)
Image rebuild (skip scrape) / build (push) Failing after 6s
2026-05-25 13:14:58 -04:00
justin a766756a05 Phase 2/3: chunker + indexer + MCP server tools
Phase 2 — Chunking and indexing
- rag/chunk.py: replace template chunker with seed-variety-specific
  chunks_from_variety(). One chunk per variety (varieties are small
  and named-rating retrieval signal is best kept together). Output
  is rebuilt deterministically from the sidecar JSON: every value is
  verbatim from the source, only framing language ("Disease ratings
  (1-9, 9=best):") is template glue. Anti-hallucination contract:
  same sidecar in → same chunk out, never a fabricated rating.
  Metadata flattened to Chroma-safe primitives (str/int/float/bool):
  source, source_key, vendor, brand, crop, product_name,
  product_id, source_url, rm (corn), mg (soy), wheat_class,
  release_year, trait_codes_csv, rating_scale.
- rag/index.py: walks corpus/<source>/<source_key>.json sidecars
  via the new chunker. Default PRODUCT_NAME=crop_seed so the
  Chroma collection is crop_seed_docs.
- rag/bm25.py: filterable columns updated to seed-domain facets
  (source/vendor/brand/crop/source_key) instead of the template's
  version/platform/product.

Phase 3 — MCP server tools wired up
- search_docs: hybrid dense (Chroma) + BM25 (FTS5) retrieval with
  RRF fusion. Optional filters: crop, brand, vendor, source.
  Variety-code prefilter pins exact source_key / product_name /
  hybrid_prefix matches at the top — dense embeddings have no
  semantic neighbor for tokens like "DKC62-08RIB" and RRF can let
  noise float to #1 without this pin. Each response carries the
  variety's source URL inline so the agent can cite.
- get_page(source, source_key): emits a structured ratings header
  (verbatim from sidecar, table per characteristics group, vendor
  positioning, regional listings) followed by the raw indexed body.
  This is the canonical fact-check surface.
- list_versions(): facet discovery — distinct sources, vendors,
  brands, crops across the corpus.
- lookup_variety(source_key, source?): returns the raw sidecar JSON
  for one variety. The agent should call this BEFORE quoting any
  specific rating value to a farmer — guaranteed verbatim.

Smoke tests against 475 indexed Bayer varieties:
- list_versions returns 475 varieties, 1 source, 1 vendor, 3 brands,
  3 crops with correct per-brand counts (288/102/85).
- Semantic ag queries find the right candidates: short-season
  drought-tolerant corn → DKC44-97RIB at RM 94 (in 90-95 band);
  SCN+MG3 soybean → Asgrow XF varieties with explicit SCN R3 ratings;
  Phytophthora Rps3a soy → AG07XF4 (right gene); stripe-rust
  wheat → WestBred WB1376CLP (Yellow Rust 2 = best).
- Variety-code lookups work via prefilter: DKC62-08RIB, AG29XF4,
  WB6430 all return as #1 hit. BM25 confirms ranking unambiguously
  (top-1 score -13.2 vs -8.5 for #2 on "DKC62-08RIB ratings").
- Server boots cleanly in stdio AND streamable-http modes.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-25 13:14:16 -04:00
16333 changed files with 2029260 additions and 753 deletions
+5 -1
View File
@@ -32,7 +32,11 @@ env:
REGISTRY_PUSH: 192.168.0.2:1234
REGISTRY_PULL: git.jpaul.io
IMAGE: ${{ github.repository_owner }}/${{ github.event.repository.name }}
OLLAMA_URL: http://192.168.0.2:11434,http://192.168.0.2:11435,http://192.168.0.125:11434
# 3-GPU LAN pool, weighted toward .0.125 (4090). See refresh.yml for
# the bench numbers. .0.2:11434 excluded (not GPU-pinned). localhost
# excluded from CI (runner container has no Ollama on its loopback;
# works in dev but fails in CI with connection refused).
OLLAMA_URL: http://192.168.0.125:11434,http://192.168.0.125:11434,http://192.168.0.125:11434,http://192.168.0.125:11434,http://192.168.0.2:11436,http://192.168.0.2:11436,http://192.168.0.2:11435
EMBED_MODEL: nomic-embed-text
PRODUCT_NAME: crop_seed
+27 -7
View File
@@ -34,10 +34,17 @@ env:
REGISTRY_PULL: git.jpaul.io
IMAGE: ${{ github.repository_owner }}/${{ github.event.repository.name }}
# Embedder pool. Two Ollama instances on the Gitea/runner host
# (one per GPU) + the Windows Ollama. Trashpanda's Ollama is
# production-shared with Drawbar; CI does NOT hit it.
OLLAMA_URL: http://192.168.0.2:11434,http://192.168.0.2:11435,http://192.168.0.125:11434
# Embedder pool — 3 GPU-pinned endpoints reachable from the runner
# container on .0.2. Measured throughput (50-chunk batches on
# nomic-embed-text):
# .0.125:11434 (4090) 242 embeds/sec ← weighted ×4
# .0.2:11436 (GPU-pinned) 108 embeds/sec ← weighted ×2
# .0.2:11435 (GPU-pinned) 72 embeds/sec ← weight 1
# NOTE: .0.2:11434 is NOT GPU-pinned — exclude.
# NOTE: `localhost:11434` works locally during dev but resolves to the
# runner CONTAINER's own localhost in CI (no Ollama there → 111
# connection refused). Use only LAN endpoints from CI.
OLLAMA_URL: http://192.168.0.125:11434,http://192.168.0.125:11434,http://192.168.0.125:11434,http://192.168.0.125:11434,http://192.168.0.2:11436,http://192.168.0.2:11436,http://192.168.0.2:11435
EMBED_MODEL: nomic-embed-text
PRODUCT_NAME: crop_seed
@@ -83,10 +90,21 @@ jobs:
if: ${{ inputs.sources == '' || contains(inputs.sources, 'agripro') }}
run: python -m scrape.runner --source agripro --force
- name: Scrape AgriPro regional trial PDFs
if: ${{ inputs.sources == '' || contains(inputs.sources, 'agripro_trials') }}
run: python -m scrape.runner --source agripro_trials --force
- name: Scrape Golden Harvest plot reports (cross-vendor yield trials)
if: ${{ inputs.sources == '' || contains(inputs.sources, 'gh_plot_reports') }}
# Heaviest single source — ~4,600 docs at 1 req/sec ≈ 70 min.
# Wraps the bulk of CI time; runs late so an earlier failure
# doesn't waste 70 min before failing.
run: python -m scrape.runner --source gh_plot_reports --force
- name: Scrape Beck's PFR research corpus
if: ${{ inputs.sources == '' || contains(inputs.sources, 'becks_pfr') }}
# Heaviest source — ~2,089 docs via public Sanity GROQ.
# No auth, but rate-limit ourselves to be polite.
# Deferred (returns 0 cleanly from a stub) — implementation
# pending. Public Sanity GROQ at mc8v24rf.api.sanity.io.
run: python -m scrape.runner --source becks_pfr --force
# ---- Commit corpus changes + retry-on-race -----------------
@@ -107,8 +125,10 @@ jobs:
n_gh=$(find corpus/golden_harvest -name '*.json' 2>/dev/null | wc -l)
n_nk=$(find corpus/nk -name '*.json' 2>/dev/null | wc -l)
n_ag=$(find corpus/agripro -name '*.json' 2>/dev/null | wc -l)
n_agt=$(find corpus/agripro_trials -name '*.json' 2>/dev/null | wc -l)
n_ghpr=$(find corpus/gh_plot_reports -name '*.json' 2>/dev/null | wc -l)
n_pfr=$(find corpus/becks_pfr -name '*.json' 2>/dev/null | wc -l)
git commit -m "monthly refresh: ${ts} — bayer=${n_bayer} gh=${n_gh} nk=${n_nk} agripro=${n_ag} pfr=${n_pfr}"
git commit -m "monthly refresh: ${ts} — bayer=${n_bayer} gh=${n_gh} nk=${n_nk} agripro=${n_ag} ag_trials=${n_agt} gh_plot_reports=${n_ghpr} pfr=${n_pfr}"
attempt=1
while [ $attempt -le 3 ]; do
if git push; then
+6 -2
View File
@@ -2,8 +2,12 @@
venv/
.venv/
# Regenerable from corpus + CI
corpus/
# Derived indexes — rebuilt deterministically from corpus + CI.
# corpus/ IS committed: the monthly-refresh workflow scrapes, commits
# the corpus diff, and the image-only workflow rebuilds indexes from
# that committed state. Keeping corpus in git lets us pin a Drawbar
# deploy to a specific seed-catalog snapshot via :corpus-YYYY.MM.DD
# image tag.
chroma/
bm25/
+168 -57
View File
@@ -1,27 +1,71 @@
# seed-mcp
MCP server over the public catalogs of major US row-crop seed
vendors — corn, soybeans, wheat. Sibling project to
vendors — **variety identity** (what each hybrid IS) plus **yield-trial data** (how they actually perform in real cooperator fields). Sibling project to
[`crop-chem-docs`](https://git.jpaul.io/justin/crop-chem-docs)
(pesticide labels), feeding the same Drawbar farm-advisor AI.
The server exposes per-variety records with **agronomic ratings**,
**disease tolerance**, **trait stack**, **maturity**, and
**regional notes** — so the advisor can answer questions like
"which corn hybrid for sandy soil, drought-prone, RM ≤105 in
northeast Iowa?" without rummaging through individual brand sites.
**Deployed 2026-05-25** on trashpanda as a sibling sidecar to
`chem-mcp`; the Drawbar advisor calls it via the `seed:` prefix.
## Vendor coverage
## What's in the corpus
| Vendor | Verdict | Varieties | Notes |
**5,073 indexed chunks** across two complementary surfaces:
### Variety identity — 760 records
| Source | Count | Vendor | Brand |
|---|---|---|---|
| Bayer seeds (DEKALB + Asgrow + WestBred) | 🟢 | ~475 | Same `cropscience.bayer.us` Next.js infra as crop-chem-docs |
| Golden Harvest (Syngenta) | 🟢 | ~175 | Sitemap + server-rendered HTML + Syngenta CDN PDFs |
| NK (Syngenta) | 🟢 | 29 | Shares PDF fetcher with Golden Harvest |
| AgriPro (Syngenta wheat) | 🟢 | 24 | Drupal Views, server-rendered |
| Beck's PFR | 🟡 | 2,089 | Public Sanity GROQ API (no auth) |
| Beck's products | 🟡 | 860 | Identity-only until SeedIQ XHR sniffed |
| Pioneer (Corteva) | 🔴 | — | ToS bans automation — curated fallback lesson instead |
| `bayer_seeds` | 475 | Bayer | DEKALB (corn) / Asgrow (soy) / WestBred (wheat) |
| `golden_harvest` | 139 | Syngenta | Golden Harvest (corn / soy) |
| `nk` | 122 | Syngenta | NK (corn / soy) |
| `agripro` | 24 | Syngenta | AgriPro (wheat — HRW / HRS / HWS / SWW) |
### Yield-trial data — 4,313 documents
| Source | Count | Notes |
|---|---|---|
| `gh_plot_reports` | 4,299 | Golden Harvest plot reports 2024+2025. **Cross-vendor head-to-head** — DEKALB / NK / GH / Pioneer / Channel all appear in the same trial rankings. The closest thing to independent comparison data the corpus has. |
| `agripro_trials` | 14 | Regional wheat trial PDF summaries (PNW, Western Plains, Northern Plains, etc.) |
### Not in the corpus (documented in `docs_mcp/lessons.md`)
- **Pioneer / Corteva** — ToS bans automation. Curated fallback lesson points the farmer at pioneer.com / a local dealer.
- **NK yield-results** — fiddly ASMX/SOAP endpoint, needs a dedicated reverse-engineer session.
- **Bayer per-variety trial data** — not publicly indexed (DEKALB / Asgrow trial data flows through Channel reps). Partially covered by the GH plot reports' cross-vendor results.
## MCP tools (6)
| Tool | Purpose |
|---|---|
| `search_docs` | Variety IDENTITY — what a hybrid IS (disease ratings, traits, maturity). Hybrid dense+BM25 + cross-encoder rerank + variety-code prefilter. |
| `search_trials` | Variety PERFORMANCE — head-to-head yield trial results. Filterable by crop, state, year, product. |
| `get_page` | Full canonical record for one variety + structured ratings header sourced from the sidecar JSON. |
| `lookup_variety` | Raw sidecar JSON for one variety — **fact-check tool**; call before quoting any specific rating value. |
| `list_versions` | Discover facets (sources, vendors, brands, crops) currently indexed. |
| `crop_seed_api_lessons` | Curated knowledge: Pioneer fallback policy, scale-direction differences across vendors, trait glossary, SCN race coverage notes. |
`search_docs` defaults to `data_type="variety"`; `search_trials` uses `data_type="trial"` — single Chroma collection, metadata-filtered.
## Retrieval — eval-validated
From `eval/results/baseline.md` (21 golden queries, k=5):
| Retriever | Pass | Recall | P@1 | MRR | Avg ms |
|---|---|---|---|---|---|
| **hybrid+rerank** | **21/21** | **100%** | **90%** | **0.905** | 2064 |
| bm25 | 20/21 | 95% | 81% | 0.833 | 5 |
| hybrid (no rerank) | 15/21 | 71% | 62% | 0.619 | 73 |
| dense | 14/21 | 67% | 38% | 0.440 | 79 |
**Deploy config**: `HYBRID_SEARCH=true` + `RERANK_URL=http://llama-rerank:8080`.
Some surprises worth knowing:
1. **Dense embedding alone is the weakest config**. Variety codes (DKC62-08RIB), gene names (Rps3a), and trait codes (XF) have no semantic neighbors — nomic-embed-text returns noise on them.
2. **Hybrid alone is WORSE than BM25 alone.** RRF dilutes BM25's strong ranking with dense noise. Don't ship without rerank.
3. **BM25-alone (95% recall, 5 ms) is an excellent fallback** when the rerank sidecar is unavailable. The variety-code prefilter in `search_docs` does heavy lifting.
4. **Anti-hallucination queries pass on every retriever** — Pioneer fallback + not-in-corpus product checks hold across all configs.
## Quick start
@@ -31,54 +75,121 @@ cd seed-mcp
python -m venv venv && source venv/bin/activate
pip install -r requirements.txt
# Run one scraper
python -m scrape.runner --source bayer_seeds --force
# Sample-scrape just to verify wiring:
python -m scrape.runner --source bayer_seeds --limit 3
# Rebuild indexes
# Full refresh (all 6 sources; expect ~25 min for gh_plot_reports
# with 4 concurrent workers):
python -m scrape.runner --all --force
# Rebuild Chroma + BM25 from the corpus:
OLLAMA_URL=http://192.168.0.125:11434 PRODUCT_NAME=crop_seed \
python -m rag.index --rebuild
# Local MCP server (stdio for Claude Desktop dev)
python -m docs_mcp.server --transport stdio
# Run the eval harness:
RERANK_URL=http://localhost:18080 python -m eval.run_eval \
--queries eval/queries.jsonl --k 5 \
--output eval/results/baseline.md
# Local MCP server (stdio for Claude Desktop dev):
PRODUCT_NAME=crop_seed python -m docs_mcp.server --transport stdio
# Local HTTP server (matches production transport):
PRODUCT_NAME=crop_seed python -m docs_mcp.server \
--transport streamable-http --port 8000
```
## Tools exposed
## Repo layout
| Tool | Purpose |
|---|---|
| `search_docs` | Hybrid + rerank variety search with crop / RM / trait / region filters |
| `get_page` | Full variety record by `(source, source_key)` |
| `list_versions` | Discover crops, brands, traits, RM/MG ranges, wheat classes |
| `corpus_status` | Counts + freshness; useful for health probes |
| `crop_seed_api_lessons` | Curated agronomy lessons — Pioneer fallback, disease-scale normalization, regional placement heuristics |
## Build phases
This is a clone of [`docs-mcp-template`](https://git.jpaul.io/justin/docs-mcp-template).
The 13 phases in `PLAN.md` apply:
| Phase | Status |
|---|---|
| 0 — scaffold | done |
| 1 — first scraper (bayer_seeds) | next |
| 2 — chunk + index | pending |
| 3 — baseline MCP tools | template defaults |
| 4-5 — Dockerfile + CI | done (placeholders filled) |
| 6 — reranker | shares `llama-rerank` sidecar with crop-chem-docs |
| 7 — eval harness | pending (curate ~25 queries) |
| 8 — hybrid search | done (template) |
| 9 — diff_versions, list_cluster | optional |
| 11 — `crop_seed_api_lessons` curated layer | pending |
See `CLAUDE.md` for the canonical sidecar schema and the
disease-scale-normalization gotcha (Golden Harvest is reversed).
```
.
├── CLAUDE.md # Canonical agent guide. Read first.
├── PLAN.md # Template's 13-phase build guide.
├── README.md
├── requirements.txt
├── Dockerfile
├── sources.json # Source catalog (one entry per scraper)
├── deploy/docker-compose.yml # Drop-in compose snippet for Drawbar
├── .gitea/workflows/
│ ├── refresh.yml # Monthly cron: scrape + index + image push
│ └── image-only.yml # On-demand code-only ship cycle
├── scrape/
│ ├── runner.py # `python -m scrape.runner --source <id>`
│ ├── changelog.py # Reused from template
│ └── sources/
│ ├── bayer_seeds.py # ~475 varieties across 3 brands
│ ├── golden_harvest.py # ~139 varieties (post-discontinued filter)
│ ├── nk.py # 122 varieties (corn + soy)
│ ├── agripro.py # 24 wheat varieties
│ ├── gh_plot_reports.py # 4,299 cross-vendor yield trials
│ ├── agripro_trials.py # 14 regional trial PDFs
│ └── becks_pfr.py # stub — Sanity GROQ research corpus
├── rag/
│ ├── embeddings.py # nomic-embed-text via Ollama
│ ├── chunk.py # one-chunk-per-variety + trial chunker
│ ├── index.py # Chroma + BM25 builder
│ └── bm25.py # FTS5 lexical index w/ seed-domain facets
├── docs_mcp/
│ ├── server.py # FastMCP — 6 tools, hybrid+rerank
│ ├── lessons.md # Curated knowledge layer (Pioneer fallback)
│ └── usage.py # TimedCall + JSONL telemetry
├── eval/
│ ├── queries.jsonl # 21 golden queries
│ ├── retrievers.py # dense / bm25 / hybrid / hybrid+rerank
│ ├── run_eval.py # MRR / Recall@k / Precision@1
│ └── results/baseline.md # Current deploy-config eval numbers
└── corpus/ # Committed scrape output (CI-refreshed)
├── bayer_seeds/
├── golden_harvest/
├── nk/
├── agripro/
├── gh_plot_reports/
└── agripro_trials/
```
## Infrastructure
- **Registry**: `git.jpaul.io/justin/seed-mcp:latest` (Watchtower) /
`:corpus-YYYY.MM.DD` (production pin)
- **Embedder**: shared Ollama pool with crop-chem-docs (Gitea-host
GPUs + Windows Ollama; CI never hits trashpanda's production Ollama)
- **Reranker**: shared `llama-rerank` sidecar on trashpanda's Tesla
P4 (one container, both MCPs use it)
- **PRODUCT_NAME**: `crop_seed` (not `seed_mcp` — used in Chroma
collection, BM25 db filename, and `crop_seed_api_lessons` tool)
- **Registry**: pushes to `192.168.0.2:1234` (LAN, no CF body cap); deploys pull `git.jpaul.io/justin/seed-mcp:latest` (public, CF tunnel). Also tagged `:<sha12>` for rollback pinning and `:corpus-YYYY.MM.DD` for snapshot pinning.
- **Embedder pool (CI)**: 3 GPU-pinned Ollama endpoints, weighted toward `.0.125` (RTX 40-series, 242 embeds/sec):
- `.0.125:11434` ×4 (4090)
- `.0.2:11436` ×2 (GPU-pinned)
- `.0.2:11435` ×1 (GPU-pinned)
- Do NOT use `.0.2:11434` (not GPU-pinned) or `localhost:11434` (works in dev, breaks in CI — runner container has no Ollama on its loopback).
- **Reranker**: shared `llama-rerank` sidecar on trashpanda's Tesla P4 (jina-reranker-v2-base via llama.cpp). One container serves both seed-mcp and crop-chem-docs. **Must be on `drawbar-backend_default` Docker network** — see `deploy/docker-compose.yml` for the network-attach gotcha that caused silent rerank degradation on chem-mcp prior to 2026-05-25.
- **PRODUCT_NAME**: `crop_seed` — used in the Chroma collection name (`crop_seed_docs`), the BM25 db filename (`bm25/crop_seed_docs.db`), and the `crop_seed_api_lessons` tool name. Not `seed_mcp` — that would conflict with the container/service name.
## Deploy mechanics
Watchtower handles auto-deploy. Every push to `seed-mcp/main` that touches `docs_mcp/`, `rag/`, `scrape/`, `requirements.txt`, `Dockerfile`, or `sources.json` triggers `image-only.yml`:
1. Checks out main with full corpus
2. Rebuilds Chroma + BM25 (~3 min on the GPU pool)
3. `docker build` + push three tags to the LAN registry
4. Links the package to the repo via Gitea API
5. Watchtower on trashpanda polls `:latest` every 5 min → pulls + recreates `drawbar-backend-seed-mcp-1`
Corpus refresh runs monthly via `refresh.yml` (1st of each month, 06:00 UTC) — re-scrapes all GREEN sources, commits any corpus diff, rebuilds indexes, ships a new image with `:corpus-YYYY.MM.DD` tagged.
See `CLAUDE.md` for canonical sidecar schemas, the reversed disease-scale gotcha (NK + AgriPro publish 1=best, vs Bayer/GH 9=best), and the scraper conventions.
## Status
| Phase | Status |
|---|---|
| 0 — scaffold | ✅ |
| 1 — scrapers (bayer_seeds / golden_harvest / nk / agripro / gh_plot_reports / agripro_trials) | ✅ |
| 2 — chunk + index | ✅ |
| 3 — MCP tools (6) | ✅ |
| 4-5 — Dockerfile + Gitea CI | ✅ |
| 6 — reranker integration | ✅ (eval-validated; deploy uses hybrid+rerank) |
| 7 — eval harness | ✅ (21 golden queries, baseline committed) |
| 8 — hybrid search | ✅ (default ON) |
| 11 — `crop_seed_api_lessons` curated layer | ✅ (Pioneer fallback + 7 other lessons) |
| 13 — weekly_digest | not planned for seed-mcp |
Remaining work (deferred, not blocking):
- `becks_pfr` scraper (2,089 research docs via public Sanity GROQ)
- 2023 GH plot reports backfill (~3,619 more docs)
- NK yield-results endpoint reverse-engineer
- Channel Seed brand (~320 more Bayer varieties — separate brand under the same sitemap)
+328
View File
@@ -0,0 +1,328 @@
{
"source": "agrigold",
"source_key": "agrigold-a616-30",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A616-30",
"product_id": null,
"hybrid_prefix": "A616-30",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "86",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"VT2RIB"
],
"trait_descriptions": [
"VT2RIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1100"
},
{
"characteristic": "GDU to Black Layer",
"value": "2011"
},
{
"characteristic": "Plant Height",
"value": "Medium"
},
{
"characteristic": "Ear Height",
"value": "Medium Low"
},
{
"characteristic": "Kernel Texture",
"value": "Medium Soft"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "Red"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Flexible"
},
{
"characteristic": "Harvest Timing",
"value": "Normal"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "Moderate"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "Moderate"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "Moderate"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Low"
},
{
"characteristic": "Low Yield Environments",
"value": "Good"
},
{
"characteristic": "High Yield Environments",
"value": "Very Good"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "2"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "3"
},
{
"characteristic": "Stalk Strength",
"value": "3"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "3"
},
{
"characteristic": "Narrow Row",
"value": "3"
},
{
"characteristic": "Corn on Corn",
"value": "3"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "4"
},
{
"characteristic": "Variable Soils",
"value": "3"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "3"
},
{
"characteristic": "Poorly Drained Soils",
"value": "3"
},
{
"characteristic": "High pH Soils",
"value": "NA"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "3"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "4"
},
{
"characteristic": "Silt Loam",
"value": "4"
},
{
"characteristic": "Sandy Loam",
"value": "5"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "3"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "NA"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "NA"
},
{
"characteristic": "SCLB",
"value": "NA"
},
{
"characteristic": "NCLB",
"value": "3"
},
{
"characteristic": "Gray Leaf Spot",
"value": "3"
},
{
"characteristic": "Goss's Wilt",
"value": "4"
},
{
"characteristic": "Common Rust",
"value": "5"
},
{
"characteristic": "Southern Rust",
"value": "NA"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "3"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "Crude Protein %DM",
"value": "2"
},
{
"characteristic": "aNDF %DM",
"value": "4"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "3"
},
{
"characteristic": "uNDF 240",
"value": "4"
},
{
"characteristic": "% Starch",
"value": "4"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "4"
},
{
"characteristic": "TTNDFD",
"value": "2"
},
{
"characteristic": "Milk/Ton",
"value": "3"
},
{
"characteristic": "Milk/Acre",
"value": "4"
},
{
"characteristic": "Beef/Acre",
"value": "3"
},
{
"characteristic": "High Mositure Corn",
"value": "4"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A616-30"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:34:50.450896+00:00",
"scraper_version": "0.1.0"
}
+108
View File
@@ -0,0 +1,108 @@
# A616-30
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 86
- **Traits:** VT2RIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A616-30
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1100 |
| GDU to Black Layer | 2011 |
| Plant Height | Medium |
| Ear Height | Medium Low |
| Kernel Texture | Medium Soft |
| Ear Flex Index | 3 |
| Cob Color | Red |
| Nitrogen Utilization | Flexible |
| Harvest Timing | Normal |
| Foliar Fungicide Response | Moderate |
| Fungicide Response Continuous Corn | Moderate |
| Fungicide Response Corn Soybean Rotation | Moderate |
| Green Snap Vulnerability | Low |
| Low Yield Environments | Good |
| High Yield Environments | Very Good |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 2 |
| Emergence | 4 |
| Drought Tolerance | 4 |
| Drydown | 4 |
| Root Strength | 3 |
| Stalk Strength | 3 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 3 |
| Narrow Row | 3 |
| Corn on Corn | 3 |
| No Till Adaptability | 4 |
| High Yielding Soils | 4 |
| Variable Soils | 3 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 3 |
| Poorly Drained Soils | 3 |
| High pH Soils | NA |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 3 |
| Clay Loam | 5 |
| Silty Clay Loam | 4 |
| Silt Loam | 4 |
| Sandy Loam | 5 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 3 |
| Anthracnose Stalk Rot | NA |
| Physoderma Stalk Rot | NA |
| SCLB | NA |
| NCLB | 3 |
| Gray Leaf Spot | 3 |
| Goss's Wilt | 4 |
| Common Rust | 5 |
| Southern Rust | NA |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 3 |
| Dry Tons/Acre | 4 |
| Crude Protein %DM | 2 |
| aNDF %DM | 4 |
| NDFd 30 Hr %NDF | 3 |
| uNDF 240 | 4 |
| % Starch | 4 |
| in situ Starch 7 Hr | 4 |
| TTNDFD | 2 |
| Milk/Ton | 3 |
| Milk/Acre | 4 |
| Beef/Acre | 3 |
| High Mositure Corn | 4 |
+312
View File
@@ -0,0 +1,312 @@
{
"source": "agrigold",
"source_key": "agrigold-a618-34",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A618-34",
"product_id": null,
"hybrid_prefix": "A618-34",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "88",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"VT2RIB"
],
"trait_descriptions": [
"VT2RIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1134"
},
{
"characteristic": "GDU to Black Layer",
"value": "2245"
},
{
"characteristic": "Plant Height",
"value": "Medium"
},
{
"characteristic": "Ear Height",
"value": "Medium Low"
},
{
"characteristic": "Kernel Texture",
"value": "Medium Soft"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "Crimson"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Flexible"
},
{
"characteristic": "Harvest Timing",
"value": "Late"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "Moderate"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "High"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "Moderate"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Low"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "Kernel"
},
{
"characteristic": "Leaf Orientation",
"value": "Upright"
},
{
"characteristic": "Root Type",
"value": "Modified"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "3"
},
{
"characteristic": "Emergence",
"value": "5"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "5"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "4"
},
{
"characteristic": "No Till Adaptability",
"value": "5"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "5"
},
{
"characteristic": "Poorly Drained Soils",
"value": "5"
},
{
"characteristic": "High pH Soils",
"value": "3"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "5"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "4"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "5"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "3"
},
{
"characteristic": "SCLB",
"value": "NA"
},
{
"characteristic": "NCLB",
"value": "3"
},
{
"characteristic": "Gray Leaf Spot",
"value": "3"
},
{
"characteristic": "Goss's Wilt",
"value": "5"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "NA"
},
{
"characteristic": "Tar Spot",
"value": "4"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "aNDF %DM",
"value": "5"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "3"
},
{
"characteristic": "uNDF 240",
"value": "3"
},
{
"characteristic": "% Starch",
"value": "4"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "4"
},
{
"characteristic": "TTNDFD",
"value": "4"
},
{
"characteristic": "Milk/Acre",
"value": "4"
},
{
"characteristic": "Beef/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "4"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A618-34"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:34:51.430642+00:00",
"scraper_version": "0.1.0"
}
+104
View File
@@ -0,0 +1,104 @@
# A618-34
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 88
- **Traits:** VT2RIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A618-34
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1134 |
| GDU to Black Layer | 2245 |
| Plant Height | Medium |
| Ear Height | Medium Low |
| Kernel Texture | Medium Soft |
| Ear Flex Index | 3 |
| Cob Color | Crimson |
| Nitrogen Utilization | Flexible |
| Harvest Timing | Late |
| Foliar Fungicide Response | Moderate |
| Fungicide Response Continuous Corn | High |
| Fungicide Response Corn Soybean Rotation | Moderate |
| Green Snap Vulnerability | Low |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | Kernel |
| Leaf Orientation | Upright |
| Root Type | Modified |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 3 |
| Emergence | 5 |
| Drought Tolerance | 4 |
| Drydown | 4 |
| Root Strength | 4 |
| Stalk Strength | 5 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 5 |
| Corn on Corn | 4 |
| No Till Adaptability | 5 |
| High Yielding Soils | 5 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 5 |
| Poorly Drained Soils | 5 |
| High pH Soils | 3 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 5 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 4 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 5 |
| Physoderma Stalk Rot | 3 |
| SCLB | NA |
| NCLB | 3 |
| Gray Leaf Spot | 3 |
| Goss's Wilt | 5 |
| Common Rust | 4 |
| Southern Rust | NA |
| Tar Spot | 4 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 4 |
| aNDF %DM | 5 |
| NDFd 30 Hr %NDF | 3 |
| uNDF 240 | 3 |
| % Starch | 4 |
| in situ Starch 7 Hr | 4 |
| TTNDFD | 4 |
| Milk/Acre | 4 |
| Beef/Acre | 4 |
| High Mositure Corn | 4 |
+312
View File
@@ -0,0 +1,312 @@
{
"source": "agrigold",
"source_key": "agrigold-a620-99",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A620-99",
"product_id": null,
"hybrid_prefix": "A620-99",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "90",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"STXRIB VT2RIB"
],
"trait_descriptions": [
"STXRIB VT2RIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1200"
},
{
"characteristic": "GDU to Black Layer",
"value": "2439"
},
{
"characteristic": "Plant Height",
"value": "Medium"
},
{
"characteristic": "Ear Height",
"value": "Medium High"
},
{
"characteristic": "Kernel Texture",
"value": "Medium Hard"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "Red"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Early"
},
{
"characteristic": "Harvest Timing",
"value": "Normal"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "Moderate"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "Moderate"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "Moderate"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Moderate"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "Length"
},
{
"characteristic": "Leaf Orientation",
"value": "Upright"
},
{
"characteristic": "Root Type",
"value": "Modified"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "3"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "3"
},
{
"characteristic": "Drydown",
"value": "3"
},
{
"characteristic": "Root Strength",
"value": "5"
},
{
"characteristic": "Stalk Strength",
"value": "5"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "4"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "5"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "3"
},
{
"characteristic": "Low Yielding Soils",
"value": "3"
},
{
"characteristic": "Poorly Drained Soils",
"value": "5"
},
{
"characteristic": "High pH Soils",
"value": "NA"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "5"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "4"
},
{
"characteristic": "Silt Loam",
"value": "4"
},
{
"characteristic": "Sandy Loam",
"value": "3"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "4"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "NA"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "3"
},
{
"characteristic": "Goss's Wilt",
"value": "3"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "2"
},
{
"characteristic": "Tar Spot",
"value": "2"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "3"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "aNDF %DM",
"value": "NA"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "NA"
},
{
"characteristic": "uNDF 240",
"value": "NA"
},
{
"characteristic": "% Starch",
"value": "NA"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "NA"
},
{
"characteristic": "TTNDFD",
"value": "NA"
},
{
"characteristic": "Milk/Acre",
"value": "NA"
},
{
"characteristic": "Beef/Acre",
"value": "NA"
},
{
"characteristic": "High Mositure Corn",
"value": "3"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A620-99"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:34:52.484468+00:00",
"scraper_version": "0.1.0"
}
+104
View File
@@ -0,0 +1,104 @@
# A620-99
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 90
- **Traits:** STXRIB VT2RIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A620-99
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1200 |
| GDU to Black Layer | 2439 |
| Plant Height | Medium |
| Ear Height | Medium High |
| Kernel Texture | Medium Hard |
| Ear Flex Index | 3 |
| Cob Color | Red |
| Nitrogen Utilization | Early |
| Harvest Timing | Normal |
| Foliar Fungicide Response | Moderate |
| Fungicide Response Continuous Corn | Moderate |
| Fungicide Response Corn Soybean Rotation | Moderate |
| Green Snap Vulnerability | Moderate |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | Length |
| Leaf Orientation | Upright |
| Root Type | Modified |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 3 |
| Emergence | 4 |
| Drought Tolerance | 3 |
| Drydown | 3 |
| Root Strength | 5 |
| Stalk Strength | 5 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 4 |
| Narrow Row | 5 |
| Corn on Corn | 5 |
| No Till Adaptability | 4 |
| High Yielding Soils | 5 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 3 |
| Low Yielding Soils | 3 |
| Poorly Drained Soils | 5 |
| High pH Soils | NA |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 5 |
| Clay Loam | 5 |
| Silty Clay Loam | 4 |
| Silt Loam | 4 |
| Sandy Loam | 3 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 4 |
| Physoderma Stalk Rot | NA |
| SCLB | 4 |
| NCLB | 4 |
| Gray Leaf Spot | 3 |
| Goss's Wilt | 3 |
| Common Rust | 4 |
| Southern Rust | 2 |
| Tar Spot | 2 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 3 |
| Dry Tons/Acre | 4 |
| aNDF %DM | NA |
| NDFd 30 Hr %NDF | NA |
| uNDF 240 | NA |
| % Starch | NA |
| in situ Starch 7 Hr | NA |
| TTNDFD | NA |
| Milk/Acre | NA |
| Beef/Acre | NA |
| High Mositure Corn | 3 |
+328
View File
@@ -0,0 +1,328 @@
{
"source": "agrigold",
"source_key": "agrigold-a621-89",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A621-89",
"product_id": null,
"hybrid_prefix": "A621-89",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "91",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"DV"
],
"trait_descriptions": [
"DV"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1244"
},
{
"characteristic": "GDU to Black Layer",
"value": "2340"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM TALL"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM HIGH"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM"
},
{
"characteristic": "Ear Flex Index",
"value": "5"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "LATE"
},
{
"characteristic": "Harvest Timing",
"value": "EARLY"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "MODERATE"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "MODERATE"
},
{
"characteristic": "Low Yield Environments",
"value": "EXCELLENT"
},
{
"characteristic": "High Yield Environments",
"value": "VERY GOOD"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "5"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "3"
},
{
"characteristic": "Root Strength",
"value": "3"
},
{
"characteristic": "Stalk Strength",
"value": "5"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "4"
},
{
"characteristic": "Narrow Row",
"value": "3"
},
{
"characteristic": "Corn on Corn",
"value": "4"
},
{
"characteristic": "No Till Adaptability",
"value": "5"
},
{
"characteristic": "High Yielding Soils",
"value": "4"
},
{
"characteristic": "Variable Soils",
"value": "5"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "5"
},
{
"characteristic": "Poorly Drained Soils",
"value": "4"
},
{
"characteristic": "High pH Soils",
"value": "5"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "5"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "4"
},
{
"characteristic": "Silt Loam",
"value": "4"
},
{
"characteristic": "Sandy Loam",
"value": "5"
},
{
"characteristic": "Sand",
"value": "5"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "4"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "3"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "5"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "3"
},
{
"characteristic": "Tar Spot",
"value": "4"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "Crude Protein %DM",
"value": "4"
},
{
"characteristic": "aNDF %DM",
"value": "5"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "3"
},
{
"characteristic": "uNDF 240",
"value": "3"
},
{
"characteristic": "% Starch",
"value": "5"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "5"
},
{
"characteristic": "TTNDFD",
"value": "4"
},
{
"characteristic": "Milk/Ton",
"value": "4"
},
{
"characteristic": "Milk/Acre",
"value": "4"
},
{
"characteristic": "Beef/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "3"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A621-89"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:34:53.458232+00:00",
"scraper_version": "0.1.0"
}
+108
View File
@@ -0,0 +1,108 @@
# A621-89
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 91
- **Traits:** DV
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A621-89
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1244 |
| GDU to Black Layer | 2340 |
| Plant Height | MEDIUM TALL |
| Ear Height | MEDIUM HIGH |
| Kernel Texture | MEDIUM |
| Ear Flex Index | 5 |
| Cob Color | RED |
| Nitrogen Utilization | LATE |
| Harvest Timing | EARLY |
| Foliar Fungicide Response | MODERATE |
| Fungicide Response Continuous Corn | HIGH |
| Fungicide Response Corn Soybean Rotation | MODERATE |
| Green Snap Vulnerability | MODERATE |
| Low Yield Environments | EXCELLENT |
| High Yield Environments | VERY GOOD |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 5 |
| Drought Tolerance | 4 |
| Drydown | 3 |
| Root Strength | 3 |
| Stalk Strength | 5 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 4 |
| Narrow Row | 3 |
| Corn on Corn | 4 |
| No Till Adaptability | 5 |
| High Yielding Soils | 4 |
| Variable Soils | 5 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 5 |
| Poorly Drained Soils | 4 |
| High pH Soils | 5 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 5 |
| Clay Loam | 5 |
| Silty Clay Loam | 4 |
| Silt Loam | 4 |
| Sandy Loam | 5 |
| Sand | 5 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 4 |
| Physoderma Stalk Rot | 4 |
| SCLB | 3 |
| NCLB | 4 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 5 |
| Common Rust | 4 |
| Southern Rust | 3 |
| Tar Spot | 4 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 4 |
| Crude Protein %DM | 4 |
| aNDF %DM | 5 |
| NDFd 30 Hr %NDF | 3 |
| uNDF 240 | 3 |
| % Starch | 5 |
| in situ Starch 7 Hr | 5 |
| TTNDFD | 4 |
| Milk/Ton | 4 |
| Milk/Acre | 4 |
| Beef/Acre | 4 |
| High Mositure Corn | 3 |
+320
View File
@@ -0,0 +1,320 @@
{
"source": "agrigold",
"source_key": "agrigold-a623-88",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A623-88",
"product_id": null,
"hybrid_prefix": "A623-88",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "93",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"VT2RIB CONV"
],
"trait_descriptions": [
"VT2RIB CONV"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1129"
},
{
"characteristic": "GDU to Black Layer",
"value": "2370"
},
{
"characteristic": "Plant Height",
"value": "Medium"
},
{
"characteristic": "Ear Height",
"value": "Medium"
},
{
"characteristic": "Kernel Texture",
"value": "Medium"
},
{
"characteristic": "Ear Flex Index",
"value": "5"
},
{
"characteristic": "Cob Color",
"value": "Red"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Flexible"
},
{
"characteristic": "Harvest Timing",
"value": "Normal"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "High"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "High"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "Moderate"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Low"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "LENGTH"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "COARSE"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "3"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "5"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "4"
},
{
"characteristic": "Corn on Corn",
"value": "3"
},
{
"characteristic": "No Till Adaptability",
"value": "5"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "4"
},
{
"characteristic": "Poorly Drained Soils",
"value": "4"
},
{
"characteristic": "High pH Soils",
"value": "3"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "4"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "4"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "3"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "4"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "3"
},
{
"characteristic": "SCLB",
"value": "3"
},
{
"characteristic": "NCLB",
"value": "3"
},
{
"characteristic": "Gray Leaf Spot",
"value": "3"
},
{
"characteristic": "Goss's Wilt",
"value": "3"
},
{
"characteristic": "Common Rust",
"value": "3"
},
{
"characteristic": "Southern Rust",
"value": "2"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "Crude Protein %DM",
"value": "5"
},
{
"characteristic": "aNDF %DM",
"value": "4"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "4"
},
{
"characteristic": "uNDF 240",
"value": "2"
},
{
"characteristic": "% Starch",
"value": "4"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "3"
},
{
"characteristic": "TTNDFD",
"value": "5"
},
{
"characteristic": "Milk/Ton",
"value": "4"
},
{
"characteristic": "Milk/Acre",
"value": "5"
},
{
"characteristic": "Beef/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "4"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A623-88"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:34:54.495089+00:00",
"scraper_version": "0.1.0"
}
+106
View File
@@ -0,0 +1,106 @@
# A623-88
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 93
- **Traits:** VT2RIB CONV
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A623-88
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1129 |
| GDU to Black Layer | 2370 |
| Plant Height | Medium |
| Ear Height | Medium |
| Kernel Texture | Medium |
| Ear Flex Index | 5 |
| Cob Color | Red |
| Nitrogen Utilization | Flexible |
| Harvest Timing | Normal |
| Foliar Fungicide Response | High |
| Fungicide Response Continuous Corn | High |
| Fungicide Response Corn Soybean Rotation | Moderate |
| Green Snap Vulnerability | Low |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | LENGTH |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | COARSE |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 4 |
| Drought Tolerance | 4 |
| Drydown | 3 |
| Root Strength | 4 |
| Stalk Strength | 5 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 4 |
| Corn on Corn | 3 |
| No Till Adaptability | 5 |
| High Yielding Soils | 5 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 4 |
| Poorly Drained Soils | 4 |
| High pH Soils | 3 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 4 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 4 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 3 |
| Anthracnose Stalk Rot | 4 |
| Physoderma Stalk Rot | 3 |
| SCLB | 3 |
| NCLB | 3 |
| Gray Leaf Spot | 3 |
| Goss's Wilt | 3 |
| Common Rust | 3 |
| Southern Rust | 2 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 4 |
| Crude Protein %DM | 5 |
| aNDF %DM | 4 |
| NDFd 30 Hr %NDF | 4 |
| uNDF 240 | 2 |
| % Starch | 4 |
| in situ Starch 7 Hr | 3 |
| TTNDFD | 5 |
| Milk/Ton | 4 |
| Milk/Acre | 5 |
| Beef/Acre | 4 |
| High Mositure Corn | 4 |
+320
View File
@@ -0,0 +1,320 @@
{
"source": "agrigold",
"source_key": "agrigold-a625-78",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A625-78",
"product_id": null,
"hybrid_prefix": "A625-78",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "95",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"STXRIB VT2RIB"
],
"trait_descriptions": [
"STXRIB VT2RIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1254"
},
{
"characteristic": "GDU to Black Layer",
"value": "2395"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM TALL"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM HIGH"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "FLEXIBLE"
},
{
"characteristic": "Harvest Timing",
"value": "NORMAL"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "MODERATE"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "LOW"
},
{
"characteristic": "Low Yield Environments",
"value": "EXCELLENT"
},
{
"characteristic": "High Yield Environments",
"value": "GOOD"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "LENGTH"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "5"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "4"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "3"
},
{
"characteristic": "Narrow Row",
"value": "4"
},
{
"characteristic": "Corn on Corn",
"value": "5"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "3"
},
{
"characteristic": "Variable Soils",
"value": "5"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "5"
},
{
"characteristic": "Poorly Drained Soils",
"value": "4"
},
{
"characteristic": "High pH Soils",
"value": "4"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "3"
},
{
"characteristic": "Clay Loam",
"value": "4"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "5"
},
{
"characteristic": "Sand",
"value": "5"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "3"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "3"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "3"
},
{
"characteristic": "NCLB",
"value": "5"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "2"
},
{
"characteristic": "Common Rust",
"value": "3"
},
{
"characteristic": "Southern Rust",
"value": "3"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "aNDF %DM",
"value": "3"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "5"
},
{
"characteristic": "uNDF 240",
"value": "5"
},
{
"characteristic": "% Starch",
"value": "3"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "4"
},
{
"characteristic": "TTNDFD",
"value": "3"
},
{
"characteristic": "Milk/Acre",
"value": "4"
},
{
"characteristic": "Beef/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "3"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A625-78"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:34:55.492371+00:00",
"scraper_version": "0.1.0"
}
+106
View File
@@ -0,0 +1,106 @@
# A625-78
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 95
- **Traits:** STXRIB VT2RIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A625-78
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1254 |
| GDU to Black Layer | 2395 |
| Plant Height | MEDIUM TALL |
| Ear Height | MEDIUM HIGH |
| Kernel Texture | MEDIUM |
| Ear Flex Index | 3 |
| Cob Color | RED |
| Nitrogen Utilization | FLEXIBLE |
| Harvest Timing | NORMAL |
| Foliar Fungicide Response | MODERATE |
| Fungicide Response Continuous Corn | MODERATE |
| Fungicide Response Corn Soybean Rotation | MODERATE |
| Green Snap Vulnerability | LOW |
| Low Yield Environments | EXCELLENT |
| High Yield Environments | GOOD |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | LENGTH |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 4 |
| Drought Tolerance | 4 |
| Drydown | 5 |
| Root Strength | 4 |
| Stalk Strength | 4 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 3 |
| Narrow Row | 4 |
| Corn on Corn | 5 |
| No Till Adaptability | 4 |
| High Yielding Soils | 3 |
| Variable Soils | 5 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 5 |
| Poorly Drained Soils | 4 |
| High pH Soils | 4 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 3 |
| Clay Loam | 4 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 5 |
| Sand | 5 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 3 |
| Anthracnose Stalk Rot | 3 |
| Physoderma Stalk Rot | 4 |
| SCLB | 3 |
| NCLB | 5 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 2 |
| Common Rust | 3 |
| Southern Rust | 3 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 4 |
| aNDF %DM | 3 |
| NDFd 30 Hr %NDF | 5 |
| uNDF 240 | 5 |
| % Starch | 3 |
| in situ Starch 7 Hr | 4 |
| TTNDFD | 3 |
| Milk/Acre | 4 |
| Beef/Acre | 4 |
| High Mositure Corn | 3 |
+308
View File
@@ -0,0 +1,308 @@
{
"source": "agrigold",
"source_key": "agrigold-a626-39",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A626-39",
"product_id": null,
"hybrid_prefix": "A626-39",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "96",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"VT2RIB"
],
"trait_descriptions": [
"VT2RIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1163"
},
{
"characteristic": "GDU to Black Layer",
"value": "2452"
},
{
"characteristic": "Plant Height",
"value": "Medium"
},
{
"characteristic": "Ear Height",
"value": "Medium"
},
{
"characteristic": "Kernel Texture",
"value": "Medium"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "Crimson"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Flexible"
},
{
"characteristic": "Harvest Timing",
"value": "Early"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "High"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "High"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "High"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Low"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "Horizontal"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "3"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "3"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "4"
},
{
"characteristic": "Narrow Row",
"value": "3"
},
{
"characteristic": "Corn on Corn",
"value": "2"
},
{
"characteristic": "No Till Adaptability",
"value": "5"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "5"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "5"
},
{
"characteristic": "Poorly Drained Soils",
"value": "5"
},
{
"characteristic": "High pH Soils",
"value": "NA"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "5"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "3"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "3"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "3"
},
{
"characteristic": "NCLB",
"value": "3"
},
{
"characteristic": "Gray Leaf Spot",
"value": "2"
},
{
"characteristic": "Goss's Wilt",
"value": "3"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "2"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "3"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "aNDF %DM",
"value": "5"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "3"
},
{
"characteristic": "uNDF 240",
"value": "3"
},
{
"characteristic": "% Starch",
"value": "4"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "1"
},
{
"characteristic": "TTNDFD",
"value": "3"
},
{
"characteristic": "Milk/Acre",
"value": "3"
},
{
"characteristic": "High Mositure Corn",
"value": "2"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A626-39"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:34:56.436894+00:00",
"scraper_version": "0.1.0"
}
+103
View File
@@ -0,0 +1,103 @@
# A626-39
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 96
- **Traits:** VT2RIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A626-39
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1163 |
| GDU to Black Layer | 2452 |
| Plant Height | Medium |
| Ear Height | Medium |
| Kernel Texture | Medium |
| Ear Flex Index | 3 |
| Cob Color | Crimson |
| Nitrogen Utilization | Flexible |
| Harvest Timing | Early |
| Foliar Fungicide Response | High |
| Fungicide Response Continuous Corn | High |
| Fungicide Response Corn Soybean Rotation | High |
| Green Snap Vulnerability | Low |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | Horizontal |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 3 |
| Emergence | 4 |
| Drought Tolerance | 4 |
| Drydown | 4 |
| Root Strength | 4 |
| Stalk Strength | 3 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 4 |
| Narrow Row | 3 |
| Corn on Corn | 2 |
| No Till Adaptability | 5 |
| High Yielding Soils | 5 |
| Variable Soils | 5 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 5 |
| Poorly Drained Soils | 5 |
| High pH Soils | NA |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 5 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 3 |
| Anthracnose Stalk Rot | 3 |
| Physoderma Stalk Rot | 4 |
| SCLB | 3 |
| NCLB | 3 |
| Gray Leaf Spot | 2 |
| Goss's Wilt | 3 |
| Common Rust | 4 |
| Southern Rust | 2 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 3 |
| Dry Tons/Acre | 4 |
| aNDF %DM | 5 |
| NDFd 30 Hr %NDF | 3 |
| uNDF 240 | 3 |
| % Starch | 4 |
| in situ Starch 7 Hr | 1 |
| TTNDFD | 3 |
| Milk/Acre | 3 |
| High Mositure Corn | 2 |
+332
View File
@@ -0,0 +1,332 @@
{
"source": "agrigold",
"source_key": "agrigold-a627-45",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A627-45",
"product_id": null,
"hybrid_prefix": "A627-45",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "97",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"VT2RIB"
],
"trait_descriptions": [
"VT2RIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1242"
},
{
"characteristic": "GDU to Black Layer",
"value": "2400"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM TALL"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM"
},
{
"characteristic": "Ear Flex Index",
"value": "5"
},
{
"characteristic": "Cob Color",
"value": "PINK"
},
{
"characteristic": "Nitrogen Utilization",
"value": "LATE"
},
{
"characteristic": "Harvest Timing",
"value": "EARLY"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "HIGH"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "LOW"
},
{
"characteristic": "Low Yield Environments",
"value": "VERY GOOD"
},
{
"characteristic": "High Yield Environments",
"value": "EXCELLENT"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "GIRTH"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "3"
},
{
"characteristic": "Stalk Strength",
"value": "4"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "4"
},
{
"characteristic": "Corn on Corn",
"value": "4"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "4"
},
{
"characteristic": "Poorly Drained Soils",
"value": "3"
},
{
"characteristic": "High pH Soils",
"value": "NA"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "3"
},
{
"characteristic": "Clay Loam",
"value": "4"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "3"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "3"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "3"
},
{
"characteristic": "SCLB",
"value": "3"
},
{
"characteristic": "NCLB",
"value": "3"
},
{
"characteristic": "Gray Leaf Spot",
"value": "2"
},
{
"characteristic": "Goss's Wilt",
"value": "2"
},
{
"characteristic": "Common Rust",
"value": "3"
},
{
"characteristic": "Southern Rust",
"value": "2"
},
{
"characteristic": "Tar Spot",
"value": "2"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "YES"
},
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "Crude Protein %DM",
"value": "1"
},
{
"characteristic": "aNDF %DM",
"value": "4"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "4"
},
{
"characteristic": "uNDF 240",
"value": "3"
},
{
"characteristic": "% Starch",
"value": "5"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "4"
},
{
"characteristic": "TTNDFD",
"value": "3"
},
{
"characteristic": "Milk/Ton",
"value": "4"
},
{
"characteristic": "Milk/Acre",
"value": "4"
},
{
"characteristic": "Beef/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "3"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A627-45"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:34:57.491263+00:00",
"scraper_version": "0.1.0"
}
+109
View File
@@ -0,0 +1,109 @@
# A627-45
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 97
- **Traits:** VT2RIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A627-45
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1242 |
| GDU to Black Layer | 2400 |
| Plant Height | MEDIUM TALL |
| Ear Height | MEDIUM |
| Kernel Texture | MEDIUM |
| Ear Flex Index | 5 |
| Cob Color | PINK |
| Nitrogen Utilization | LATE |
| Harvest Timing | EARLY |
| Foliar Fungicide Response | HIGH |
| Fungicide Response Continuous Corn | HIGH |
| Fungicide Response Corn Soybean Rotation | HIGH |
| Green Snap Vulnerability | LOW |
| Low Yield Environments | VERY GOOD |
| High Yield Environments | EXCELLENT |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | GIRTH |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 4 |
| Drought Tolerance | 4 |
| Drydown | 4 |
| Root Strength | 3 |
| Stalk Strength | 4 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 4 |
| Corn on Corn | 4 |
| No Till Adaptability | 4 |
| High Yielding Soils | 5 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 4 |
| Poorly Drained Soils | 3 |
| High pH Soils | NA |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 3 |
| Clay Loam | 4 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 3 |
| Anthracnose Stalk Rot | 3 |
| Physoderma Stalk Rot | 3 |
| SCLB | 3 |
| NCLB | 3 |
| Gray Leaf Spot | 2 |
| Goss's Wilt | 2 |
| Common Rust | 3 |
| Southern Rust | 2 |
| Tar Spot | 2 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | YES |
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 4 |
| Crude Protein %DM | 1 |
| aNDF %DM | 4 |
| NDFd 30 Hr %NDF | 4 |
| uNDF 240 | 3 |
| % Starch | 5 |
| in situ Starch 7 Hr | 4 |
| TTNDFD | 3 |
| Milk/Ton | 4 |
| Milk/Acre | 4 |
| Beef/Acre | 4 |
| High Mositure Corn | 3 |
+312
View File
@@ -0,0 +1,312 @@
{
"source": "agrigold",
"source_key": "agrigold-a627-69",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A627-69",
"product_id": null,
"hybrid_prefix": "A627-69",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "97",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"VT2RIB"
],
"trait_descriptions": [
"VT2RIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1230"
},
{
"characteristic": "GDU to Black Layer",
"value": "2480"
},
{
"characteristic": "Plant Height",
"value": "Medium"
},
{
"characteristic": "Ear Height",
"value": "Medium"
},
{
"characteristic": "Kernel Texture",
"value": "Medium"
},
{
"characteristic": "Ear Flex Index",
"value": "5"
},
{
"characteristic": "Cob Color",
"value": "Pink"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Flexible"
},
{
"characteristic": "Harvest Timing",
"value": "Eearly"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "High"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "High"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "High"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Low"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "Kernel"
},
{
"characteristic": "Leaf Orientation",
"value": "Semi Upright"
},
{
"characteristic": "Root Type",
"value": "Modified"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "3"
},
{
"characteristic": "Emergence",
"value": "3"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "5"
},
{
"characteristic": "Root Strength",
"value": "3"
},
{
"characteristic": "Stalk Strength",
"value": "3"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "4"
},
{
"characteristic": "Narrow Row",
"value": "3"
},
{
"characteristic": "Corn on Corn",
"value": "2"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "3"
},
{
"characteristic": "Variable Soils",
"value": "5"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "5"
},
{
"characteristic": "Poorly Drained Soils",
"value": "5"
},
{
"characteristic": "High pH Soils",
"value": "NA"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "5"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "4"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "2"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "2"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "3"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "3"
},
{
"characteristic": "Gray Leaf Spot",
"value": "2"
},
{
"characteristic": "Goss's Wilt",
"value": "2"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "2"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "3"
},
{
"characteristic": "Dry Tons/Acre",
"value": "3"
},
{
"characteristic": "aNDF %DM",
"value": "NA"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "NA"
},
{
"characteristic": "uNDF 240",
"value": "NA"
},
{
"characteristic": "% Starch",
"value": "NA"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "NA"
},
{
"characteristic": "TTNDFD",
"value": "NA"
},
{
"characteristic": "Milk/Acre",
"value": "NA"
},
{
"characteristic": "Beef/Acre",
"value": "NA"
},
{
"characteristic": "High Mositure Corn",
"value": "4"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A627-69"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:34:58.469982+00:00",
"scraper_version": "0.1.0"
}
+104
View File
@@ -0,0 +1,104 @@
# A627-69
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 97
- **Traits:** VT2RIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A627-69
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1230 |
| GDU to Black Layer | 2480 |
| Plant Height | Medium |
| Ear Height | Medium |
| Kernel Texture | Medium |
| Ear Flex Index | 5 |
| Cob Color | Pink |
| Nitrogen Utilization | Flexible |
| Harvest Timing | Eearly |
| Foliar Fungicide Response | High |
| Fungicide Response Continuous Corn | High |
| Fungicide Response Corn Soybean Rotation | High |
| Green Snap Vulnerability | Low |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | Kernel |
| Leaf Orientation | Semi Upright |
| Root Type | Modified |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 3 |
| Emergence | 3 |
| Drought Tolerance | 4 |
| Drydown | 5 |
| Root Strength | 3 |
| Stalk Strength | 3 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 4 |
| Narrow Row | 3 |
| Corn on Corn | 2 |
| No Till Adaptability | 4 |
| High Yielding Soils | 3 |
| Variable Soils | 5 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 5 |
| Poorly Drained Soils | 5 |
| High pH Soils | NA |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 5 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 4 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 2 |
| Anthracnose Stalk Rot | 2 |
| Physoderma Stalk Rot | 3 |
| SCLB | 4 |
| NCLB | 3 |
| Gray Leaf Spot | 2 |
| Goss's Wilt | 2 |
| Common Rust | 4 |
| Southern Rust | 2 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 3 |
| Dry Tons/Acre | 3 |
| aNDF %DM | NA |
| NDFd 30 Hr %NDF | NA |
| uNDF 240 | NA |
| % Starch | NA |
| in situ Starch 7 Hr | NA |
| TTNDFD | NA |
| Milk/Acre | NA |
| Beef/Acre | NA |
| High Mositure Corn | 4 |
+312
View File
@@ -0,0 +1,312 @@
{
"source": "agrigold",
"source_key": "agrigold-a628-22",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A628-22",
"product_id": null,
"hybrid_prefix": "A628-22",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "98",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"DV CONV"
],
"trait_descriptions": [
"DV CONV"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1244"
},
{
"characteristic": "GDU to Black Layer",
"value": "2532"
},
{
"characteristic": "Plant Height",
"value": "Medium"
},
{
"characteristic": "Ear Height",
"value": "Medium"
},
{
"characteristic": "Kernel Texture",
"value": "Medium"
},
{
"characteristic": "Ear Flex Index",
"value": "1"
},
{
"characteristic": "Cob Color",
"value": "Crimson"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Late"
},
{
"characteristic": "Harvest Timing",
"value": "Normal"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "Low"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "Low"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "Low"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Low"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "LENGTH"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "3"
},
{
"characteristic": "Root Strength",
"value": "5"
},
{
"characteristic": "Stalk Strength",
"value": "5"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "5"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "3"
},
{
"characteristic": "Poorly Drained Soils",
"value": "3"
},
{
"characteristic": "High pH Soils",
"value": "NA"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "3"
},
{
"characteristic": "Clay Loam",
"value": "4"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "4"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "5"
},
{
"characteristic": "Gray Leaf Spot",
"value": "5"
},
{
"characteristic": "Goss's Wilt",
"value": "3"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "4"
},
{
"characteristic": "Tar Spot",
"value": "4"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "5"
},
{
"characteristic": "aNDF %DM",
"value": "3"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "1"
},
{
"characteristic": "uNDF 240",
"value": "5"
},
{
"characteristic": "% Starch",
"value": "2"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "1"
},
{
"characteristic": "TTNDFD",
"value": "4"
},
{
"characteristic": "Milk/Acre",
"value": "3"
},
{
"characteristic": "Beef/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "4"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A628-22"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:34:59.504322+00:00",
"scraper_version": "0.1.0"
}
+104
View File
@@ -0,0 +1,104 @@
# A628-22
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 98
- **Traits:** DV CONV
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A628-22
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1244 |
| GDU to Black Layer | 2532 |
| Plant Height | Medium |
| Ear Height | Medium |
| Kernel Texture | Medium |
| Ear Flex Index | 1 |
| Cob Color | Crimson |
| Nitrogen Utilization | Late |
| Harvest Timing | Normal |
| Foliar Fungicide Response | Low |
| Fungicide Response Continuous Corn | Low |
| Fungicide Response Corn Soybean Rotation | Low |
| Green Snap Vulnerability | Low |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | LENGTH |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 4 |
| Drought Tolerance | 4 |
| Drydown | 3 |
| Root Strength | 5 |
| Stalk Strength | 5 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 5 |
| Corn on Corn | 5 |
| No Till Adaptability | 4 |
| High Yielding Soils | 5 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 3 |
| Poorly Drained Soils | 3 |
| High pH Soils | NA |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 3 |
| Clay Loam | 4 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 4 |
| Physoderma Stalk Rot | 4 |
| SCLB | 4 |
| NCLB | 5 |
| Gray Leaf Spot | 5 |
| Goss's Wilt | 3 |
| Common Rust | 4 |
| Southern Rust | 4 |
| Tar Spot | 4 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 5 |
| aNDF %DM | 3 |
| NDFd 30 Hr %NDF | 1 |
| uNDF 240 | 5 |
| % Starch | 2 |
| in situ Starch 7 Hr | 1 |
| TTNDFD | 4 |
| Milk/Acre | 3 |
| Beef/Acre | 4 |
| High Mositure Corn | 4 |
+320
View File
@@ -0,0 +1,320 @@
{
"source": "agrigold",
"source_key": "agrigold-a628-51",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A628-51",
"product_id": null,
"hybrid_prefix": "A628-51",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "98",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"SSPRIB"
],
"trait_descriptions": [
"SSPRIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1241"
},
{
"characteristic": "GDU to Black Layer",
"value": "2520"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM TALL"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM HIGH"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "LATE"
},
{
"characteristic": "Harvest Timing",
"value": "NORMAL"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "HIGH"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "MODERATE"
},
{
"characteristic": "Low Yield Environments",
"value": "EXCELLENT"
},
{
"characteristic": "High Yield Environments",
"value": "VERY GOOD"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "GIRTH"
},
{
"characteristic": "Leaf Orientation",
"value": "UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "3"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "3"
},
{
"characteristic": "Drydown",
"value": "5"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "4"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "4"
},
{
"characteristic": "Narrow Row",
"value": "4"
},
{
"characteristic": "Corn on Corn",
"value": "5"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "4"
},
{
"characteristic": "Variable Soils",
"value": "5"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "3"
},
{
"characteristic": "Low Yielding Soils",
"value": "5"
},
{
"characteristic": "Poorly Drained Soils",
"value": "3"
},
{
"characteristic": "High pH Soils",
"value": "5"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "3"
},
{
"characteristic": "Clay Loam",
"value": "4"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "4"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "3"
},
{
"characteristic": "Gray Leaf Spot",
"value": "2"
},
{
"characteristic": "Goss's Wilt",
"value": "3"
},
{
"characteristic": "Common Rust",
"value": "2"
},
{
"characteristic": "Southern Rust",
"value": "3"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "5"
},
{
"characteristic": "aNDF %DM",
"value": "2"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "3"
},
{
"characteristic": "uNDF 240",
"value": "3"
},
{
"characteristic": "% Starch",
"value": "4"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "5"
},
{
"characteristic": "TTNDFD",
"value": "3"
},
{
"characteristic": "Milk/Acre",
"value": "3"
},
{
"characteristic": "Beef/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "4"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A628-51"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:00.482836+00:00",
"scraper_version": "0.1.0"
}
+106
View File
@@ -0,0 +1,106 @@
# A628-51
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 98
- **Traits:** SSPRIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A628-51
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1241 |
| GDU to Black Layer | 2520 |
| Plant Height | MEDIUM TALL |
| Ear Height | MEDIUM HIGH |
| Kernel Texture | MEDIUM |
| Ear Flex Index | 3 |
| Cob Color | RED |
| Nitrogen Utilization | LATE |
| Harvest Timing | NORMAL |
| Foliar Fungicide Response | HIGH |
| Fungicide Response Continuous Corn | HIGH |
| Fungicide Response Corn Soybean Rotation | HIGH |
| Green Snap Vulnerability | MODERATE |
| Low Yield Environments | EXCELLENT |
| High Yield Environments | VERY GOOD |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | GIRTH |
| Leaf Orientation | UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 3 |
| Emergence | 4 |
| Drought Tolerance | 3 |
| Drydown | 5 |
| Root Strength | 4 |
| Stalk Strength | 4 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 4 |
| Narrow Row | 4 |
| Corn on Corn | 5 |
| No Till Adaptability | 4 |
| High Yielding Soils | 4 |
| Variable Soils | 5 |
| Drought Prone/Sandy Soils | 3 |
| Low Yielding Soils | 5 |
| Poorly Drained Soils | 3 |
| High pH Soils | 5 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 3 |
| Clay Loam | 4 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 4 |
| Physoderma Stalk Rot | 4 |
| SCLB | 4 |
| NCLB | 3 |
| Gray Leaf Spot | 2 |
| Goss's Wilt | 3 |
| Common Rust | 2 |
| Southern Rust | 3 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 5 |
| aNDF %DM | 2 |
| NDFd 30 Hr %NDF | 3 |
| uNDF 240 | 3 |
| % Starch | 4 |
| in situ Starch 7 Hr | 5 |
| TTNDFD | 3 |
| Milk/Acre | 3 |
| Beef/Acre | 4 |
| High Mositure Corn | 4 |
+324
View File
@@ -0,0 +1,324 @@
{
"source": "agrigold",
"source_key": "agrigold-a629-55",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A629-55",
"product_id": null,
"hybrid_prefix": "A629-55",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "99",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"VT2RIB"
],
"trait_descriptions": [
"VT2RIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1261"
},
{
"characteristic": "GDU to Black Layer",
"value": "2398"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM HARD"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "FLEXIBLE"
},
{
"characteristic": "Harvest Timing",
"value": "NORMAL"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "MODERATE"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "LOW"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "LENGTH"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "3"
},
{
"characteristic": "Stalk Strength",
"value": "4"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "4"
},
{
"characteristic": "Corn on Corn",
"value": "4"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "3"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "3"
},
{
"characteristic": "Low Yielding Soils",
"value": "3"
},
{
"characteristic": "Poorly Drained Soils",
"value": "3"
},
{
"characteristic": "High pH Soils",
"value": "4"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "3"
},
{
"characteristic": "Clay Loam",
"value": "4"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "4"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "3"
},
{
"characteristic": "SCLB",
"value": "3"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "4"
},
{
"characteristic": "Common Rust",
"value": "3"
},
{
"characteristic": "Southern Rust",
"value": "2"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "YES"
},
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "5"
},
{
"characteristic": "Crude Protein %DM",
"value": "4"
},
{
"characteristic": "aNDF %DM",
"value": "3"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "2"
},
{
"characteristic": "uNDF 240",
"value": "5"
},
{
"characteristic": "% Starch",
"value": "3"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "5"
},
{
"characteristic": "TTNDFD",
"value": "3"
},
{
"characteristic": "Milk/Ton",
"value": "4"
},
{
"characteristic": "Milk/Acre",
"value": "4"
},
{
"characteristic": "Beef/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "2"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A629-55"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:01.449740+00:00",
"scraper_version": "0.1.0"
}
+107
View File
@@ -0,0 +1,107 @@
# A629-55
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 99
- **Traits:** VT2RIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A629-55
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1261 |
| GDU to Black Layer | 2398 |
| Plant Height | MEDIUM |
| Ear Height | MEDIUM |
| Kernel Texture | MEDIUM HARD |
| Ear Flex Index | 3 |
| Cob Color | RED |
| Nitrogen Utilization | FLEXIBLE |
| Harvest Timing | NORMAL |
| Foliar Fungicide Response | MODERATE |
| Fungicide Response Continuous Corn | HIGH |
| Fungicide Response Corn Soybean Rotation | MODERATE |
| Green Snap Vulnerability | LOW |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | LENGTH |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 4 |
| Drought Tolerance | 4 |
| Drydown | 4 |
| Root Strength | 3 |
| Stalk Strength | 4 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 4 |
| Corn on Corn | 4 |
| No Till Adaptability | 4 |
| High Yielding Soils | 5 |
| Variable Soils | 3 |
| Drought Prone/Sandy Soils | 3 |
| Low Yielding Soils | 3 |
| Poorly Drained Soils | 3 |
| High pH Soils | 4 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 3 |
| Clay Loam | 4 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 4 |
| Physoderma Stalk Rot | 3 |
| SCLB | 3 |
| NCLB | 4 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 4 |
| Common Rust | 3 |
| Southern Rust | 2 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | YES |
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 5 |
| Crude Protein %DM | 4 |
| aNDF %DM | 3 |
| NDFd 30 Hr %NDF | 2 |
| uNDF 240 | 5 |
| % Starch | 3 |
| in situ Starch 7 Hr | 5 |
| TTNDFD | 3 |
| Milk/Ton | 4 |
| Milk/Acre | 4 |
| Beef/Acre | 4 |
| High Mositure Corn | 2 |
+312
View File
@@ -0,0 +1,312 @@
{
"source": "agrigold",
"source_key": "agrigold-a630-04",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A630-04",
"product_id": null,
"hybrid_prefix": "A630-04",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "100",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"AA D CONV"
],
"trait_descriptions": [
"AA D CONV"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1250"
},
{
"characteristic": "GDU to Black Layer",
"value": "2507"
},
{
"characteristic": "Plant Height",
"value": "Medium"
},
{
"characteristic": "Ear Height",
"value": "Medium"
},
{
"characteristic": "Kernel Texture",
"value": "Medium Hard"
},
{
"characteristic": "Ear Flex Index",
"value": "5"
},
{
"characteristic": "Cob Color",
"value": "Red"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Flexible"
},
{
"characteristic": "Harvest Timing",
"value": "Early"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "High"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "High"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "High"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Low"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "LENGTH"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "COARSE"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "3"
},
{
"characteristic": "Root Strength",
"value": "2"
},
{
"characteristic": "Stalk Strength",
"value": "5"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "4"
},
{
"characteristic": "Corn on Corn",
"value": "3"
},
{
"characteristic": "No Till Adaptability",
"value": "5"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "4"
},
{
"characteristic": "Poorly Drained Soils",
"value": "4"
},
{
"characteristic": "High pH Soils",
"value": "4"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "3"
},
{
"characteristic": "Clay Loam",
"value": "4"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "2"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "3"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "3"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "2"
},
{
"characteristic": "SCLB",
"value": "3"
},
{
"characteristic": "NCLB",
"value": "2"
},
{
"characteristic": "Gray Leaf Spot",
"value": "2"
},
{
"characteristic": "Goss's Wilt",
"value": "4"
},
{
"characteristic": "Common Rust",
"value": "3"
},
{
"characteristic": "Southern Rust",
"value": "2"
},
{
"characteristic": "Tar Spot",
"value": "4"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "aNDF %DM",
"value": "5"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "2"
},
{
"characteristic": "uNDF 240",
"value": "4"
},
{
"characteristic": "% Starch",
"value": "4"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "4"
},
{
"characteristic": "TTNDFD",
"value": "3"
},
{
"characteristic": "Milk/Acre",
"value": "3"
},
{
"characteristic": "Beef/Acre",
"value": "5"
},
{
"characteristic": "High Mositure Corn",
"value": "4"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A630-04"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:02.480387+00:00",
"scraper_version": "0.1.0"
}
+104
View File
@@ -0,0 +1,104 @@
# A630-04
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 100
- **Traits:** AA D CONV
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A630-04
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1250 |
| GDU to Black Layer | 2507 |
| Plant Height | Medium |
| Ear Height | Medium |
| Kernel Texture | Medium Hard |
| Ear Flex Index | 5 |
| Cob Color | Red |
| Nitrogen Utilization | Flexible |
| Harvest Timing | Early |
| Foliar Fungicide Response | High |
| Fungicide Response Continuous Corn | High |
| Fungicide Response Corn Soybean Rotation | High |
| Green Snap Vulnerability | Low |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | LENGTH |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | COARSE |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 4 |
| Drought Tolerance | 4 |
| Drydown | 3 |
| Root Strength | 2 |
| Stalk Strength | 5 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 4 |
| Corn on Corn | 3 |
| No Till Adaptability | 5 |
| High Yielding Soils | 5 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 4 |
| Poorly Drained Soils | 4 |
| High pH Soils | 4 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 3 |
| Clay Loam | 4 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 2 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 3 |
| Anthracnose Stalk Rot | 3 |
| Physoderma Stalk Rot | 2 |
| SCLB | 3 |
| NCLB | 2 |
| Gray Leaf Spot | 2 |
| Goss's Wilt | 4 |
| Common Rust | 3 |
| Southern Rust | 2 |
| Tar Spot | 4 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 4 |
| aNDF %DM | 5 |
| NDFd 30 Hr %NDF | 2 |
| uNDF 240 | 4 |
| % Starch | 4 |
| in situ Starch 7 Hr | 4 |
| TTNDFD | 3 |
| Milk/Acre | 3 |
| Beef/Acre | 5 |
| High Mositure Corn | 4 |
+312
View File
@@ -0,0 +1,312 @@
{
"source": "agrigold",
"source_key": "agrigold-a631-08",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A631-08",
"product_id": null,
"hybrid_prefix": "A631-08",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "101",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"DV VT2RIB"
],
"trait_descriptions": [
"DV VT2RIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1230"
},
{
"characteristic": "GDU to Black Layer",
"value": "2522"
},
{
"characteristic": "Plant Height",
"value": "Medium Short"
},
{
"characteristic": "Ear Height",
"value": "Medium Low"
},
{
"characteristic": "Kernel Texture",
"value": "Medium Hard"
},
{
"characteristic": "Ear Flex Index",
"value": "5"
},
{
"characteristic": "Cob Color",
"value": "Pink"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Flexible"
},
{
"characteristic": "Harvest Timing",
"value": "Normal"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "High"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "High"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "High"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Low"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "3"
},
{
"characteristic": "Emergence",
"value": "5"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "5"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "4"
},
{
"characteristic": "No Till Adaptability",
"value": "5"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "5"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "5"
},
{
"characteristic": "Poorly Drained Soils",
"value": "5"
},
{
"characteristic": "High pH Soils",
"value": "4"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "5"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "4"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "3"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "5"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "3"
},
{
"characteristic": "SCLB",
"value": "3"
},
{
"characteristic": "NCLB",
"value": "3"
},
{
"characteristic": "Gray Leaf Spot",
"value": "3"
},
{
"characteristic": "Goss's Wilt",
"value": "3"
},
{
"characteristic": "Common Rust",
"value": "3"
},
{
"characteristic": "Southern Rust",
"value": "2"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "3"
},
{
"characteristic": "Dry Tons/Acre",
"value": "3"
},
{
"characteristic": "aNDF %DM",
"value": "4"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "2"
},
{
"characteristic": "uNDF 240",
"value": "5"
},
{
"characteristic": "% Starch",
"value": "3"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "3"
},
{
"characteristic": "TTNDFD",
"value": "3"
},
{
"characteristic": "Milk/Acre",
"value": "4"
},
{
"characteristic": "Beef/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "4"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A631-08"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:03.496618+00:00",
"scraper_version": "0.1.0"
}
+104
View File
@@ -0,0 +1,104 @@
# A631-08
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 101
- **Traits:** DV VT2RIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A631-08
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1230 |
| GDU to Black Layer | 2522 |
| Plant Height | Medium Short |
| Ear Height | Medium Low |
| Kernel Texture | Medium Hard |
| Ear Flex Index | 5 |
| Cob Color | Pink |
| Nitrogen Utilization | Flexible |
| Harvest Timing | Normal |
| Foliar Fungicide Response | High |
| Fungicide Response Continuous Corn | High |
| Fungicide Response Corn Soybean Rotation | High |
| Green Snap Vulnerability | Low |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 3 |
| Emergence | 5 |
| Drought Tolerance | 4 |
| Drydown | 4 |
| Root Strength | 4 |
| Stalk Strength | 5 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 5 |
| Corn on Corn | 4 |
| No Till Adaptability | 5 |
| High Yielding Soils | 5 |
| Variable Soils | 5 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 5 |
| Poorly Drained Soils | 5 |
| High pH Soils | 4 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 5 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 4 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 3 |
| Anthracnose Stalk Rot | 5 |
| Physoderma Stalk Rot | 3 |
| SCLB | 3 |
| NCLB | 3 |
| Gray Leaf Spot | 3 |
| Goss's Wilt | 3 |
| Common Rust | 3 |
| Southern Rust | 2 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 3 |
| Dry Tons/Acre | 3 |
| aNDF %DM | 4 |
| NDFd 30 Hr %NDF | 2 |
| uNDF 240 | 5 |
| % Starch | 3 |
| in situ Starch 7 Hr | 3 |
| TTNDFD | 3 |
| Milk/Acre | 4 |
| Beef/Acre | 4 |
| High Mositure Corn | 4 |
+332
View File
@@ -0,0 +1,332 @@
{
"source": "agrigold",
"source_key": "agrigold-a631-12",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A631-12",
"product_id": null,
"hybrid_prefix": "A631-12",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "101",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"SSPRIB"
],
"trait_descriptions": [
"SSPRIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1255"
},
{
"characteristic": "GDU to Black Layer",
"value": "2500"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM LOW"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM"
},
{
"characteristic": "Ear Flex Index",
"value": "1"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "FLEXIBLE"
},
{
"characteristic": "Harvest Timing",
"value": "EARLY"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "LOW"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "LOW"
},
{
"characteristic": "Low Yield Environments",
"value": "EXCELLENT"
},
{
"characteristic": "High Yield Environments",
"value": "VERY GOOD"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "GIRTH"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "3"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "5"
},
{
"characteristic": "Drydown",
"value": "5"
},
{
"characteristic": "Root Strength",
"value": "5"
},
{
"characteristic": "Stalk Strength",
"value": "4"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "3"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "5"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "4"
},
{
"characteristic": "Variable Soils",
"value": "5"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "5"
},
{
"characteristic": "Poorly Drained Soils",
"value": "3"
},
{
"characteristic": "High pH Soils",
"value": "NA"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "4"
},
{
"characteristic": "Clay Loam",
"value": "4"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "4"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "3"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "3"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "2"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "3"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "NO"
},
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "Crude Protein %DM",
"value": "4"
},
{
"characteristic": "aNDF %DM",
"value": "2"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "3"
},
{
"characteristic": "uNDF 240",
"value": "4"
},
{
"characteristic": "% Starch",
"value": "3"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "4"
},
{
"characteristic": "TTNDFD",
"value": "5"
},
{
"characteristic": "Milk/Ton",
"value": "4"
},
{
"characteristic": "Milk/Acre",
"value": "3"
},
{
"characteristic": "Beef/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "4"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A631-12"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:04.511409+00:00",
"scraper_version": "0.1.0"
}
+109
View File
@@ -0,0 +1,109 @@
# A631-12
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 101
- **Traits:** SSPRIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A631-12
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1255 |
| GDU to Black Layer | 2500 |
| Plant Height | MEDIUM |
| Ear Height | MEDIUM LOW |
| Kernel Texture | MEDIUM |
| Ear Flex Index | 1 |
| Cob Color | RED |
| Nitrogen Utilization | FLEXIBLE |
| Harvest Timing | EARLY |
| Foliar Fungicide Response | MODERATE |
| Fungicide Response Continuous Corn | MODERATE |
| Fungicide Response Corn Soybean Rotation | LOW |
| Green Snap Vulnerability | LOW |
| Low Yield Environments | EXCELLENT |
| High Yield Environments | VERY GOOD |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | GIRTH |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 3 |
| Emergence | 4 |
| Drought Tolerance | 5 |
| Drydown | 5 |
| Root Strength | 5 |
| Stalk Strength | 4 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 3 |
| Narrow Row | 5 |
| Corn on Corn | 5 |
| No Till Adaptability | 4 |
| High Yielding Soils | 4 |
| Variable Soils | 5 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 5 |
| Poorly Drained Soils | 3 |
| High pH Soils | NA |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 4 |
| Clay Loam | 4 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 4 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 3 |
| Physoderma Stalk Rot | 4 |
| SCLB | 3 |
| NCLB | 4 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 2 |
| Common Rust | 4 |
| Southern Rust | 3 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | NO |
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 4 |
| Crude Protein %DM | 4 |
| aNDF %DM | 2 |
| NDFd 30 Hr %NDF | 3 |
| uNDF 240 | 4 |
| % Starch | 3 |
| in situ Starch 7 Hr | 4 |
| TTNDFD | 5 |
| Milk/Ton | 4 |
| Milk/Acre | 3 |
| Beef/Acre | 4 |
| High Mositure Corn | 4 |
+324
View File
@@ -0,0 +1,324 @@
{
"source": "agrigold",
"source_key": "agrigold-a632-68",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A632-68",
"product_id": null,
"hybrid_prefix": "A632-68",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "102",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"VT2RIB CONV"
],
"trait_descriptions": [
"VT2RIB CONV"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1299"
},
{
"characteristic": "GDU to Black Layer",
"value": "2538"
},
{
"characteristic": "Plant Height",
"value": "Medium Tall"
},
{
"characteristic": "Ear Height",
"value": "Medium High"
},
{
"characteristic": "Kernel Texture",
"value": "Medium Hard"
},
{
"characteristic": "Ear Flex Index",
"value": "5"
},
{
"characteristic": "Cob Color",
"value": "Red"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Flexible"
},
{
"characteristic": "Harvest Timing",
"value": "Normal"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "Moderate"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "High"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "Moderate"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Low"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "LENGTH"
},
{
"characteristic": "Leaf Orientation",
"value": "UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "3"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "3"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "4"
},
{
"characteristic": "Narrow Row",
"value": "4"
},
{
"characteristic": "Corn on Corn",
"value": "4"
},
{
"characteristic": "No Till Adaptability",
"value": "3"
},
{
"characteristic": "High Yielding Soils",
"value": "4"
},
{
"characteristic": "Variable Soils",
"value": "5"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "5"
},
{
"characteristic": "Poorly Drained Soils",
"value": "3"
},
{
"characteristic": "High pH Soils",
"value": "4"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "5"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "4"
},
{
"characteristic": "Silt Loam",
"value": "4"
},
{
"characteristic": "Sandy Loam",
"value": "5"
},
{
"characteristic": "Sand",
"value": "5"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "5"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "3"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "4"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "2"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "NO"
},
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "3"
},
{
"characteristic": "Crude Protein %DM",
"value": "4"
},
{
"characteristic": "aNDF %DM",
"value": "4"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "3"
},
{
"characteristic": "uNDF 240",
"value": "4"
},
{
"characteristic": "% Starch",
"value": "4"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "3"
},
{
"characteristic": "TTNDFD",
"value": "4"
},
{
"characteristic": "Milk/Ton",
"value": "5"
},
{
"characteristic": "Milk/Acre",
"value": "3"
},
{
"characteristic": "Beef/Acre",
"value": "5"
},
{
"characteristic": "High Mositure Corn",
"value": "2"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A632-68"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:05.515247+00:00",
"scraper_version": "0.1.0"
}
+107
View File
@@ -0,0 +1,107 @@
# A632-68
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 102
- **Traits:** VT2RIB CONV
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A632-68
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1299 |
| GDU to Black Layer | 2538 |
| Plant Height | Medium Tall |
| Ear Height | Medium High |
| Kernel Texture | Medium Hard |
| Ear Flex Index | 5 |
| Cob Color | Red |
| Nitrogen Utilization | Flexible |
| Harvest Timing | Normal |
| Foliar Fungicide Response | Moderate |
| Fungicide Response Continuous Corn | High |
| Fungicide Response Corn Soybean Rotation | Moderate |
| Green Snap Vulnerability | Low |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | LENGTH |
| Leaf Orientation | UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 3 |
| Drought Tolerance | 4 |
| Drydown | 4 |
| Root Strength | 4 |
| Stalk Strength | 3 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 4 |
| Narrow Row | 4 |
| Corn on Corn | 4 |
| No Till Adaptability | 3 |
| High Yielding Soils | 4 |
| Variable Soils | 5 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 5 |
| Poorly Drained Soils | 3 |
| High pH Soils | 4 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 5 |
| Clay Loam | 5 |
| Silty Clay Loam | 4 |
| Silt Loam | 4 |
| Sandy Loam | 5 |
| Sand | 5 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 5 |
| Anthracnose Stalk Rot | 3 |
| Physoderma Stalk Rot | 4 |
| SCLB | 4 |
| NCLB | 4 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 4 |
| Common Rust | 4 |
| Southern Rust | 2 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | NO |
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 3 |
| Crude Protein %DM | 4 |
| aNDF %DM | 4 |
| NDFd 30 Hr %NDF | 3 |
| uNDF 240 | 4 |
| % Starch | 4 |
| in situ Starch 7 Hr | 3 |
| TTNDFD | 4 |
| Milk/Ton | 5 |
| Milk/Acre | 3 |
| Beef/Acre | 5 |
| High Mositure Corn | 2 |
+324
View File
@@ -0,0 +1,324 @@
{
"source": "agrigold",
"source_key": "agrigold-a634-11",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A634-11",
"product_id": null,
"hybrid_prefix": "A634-11",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "104",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"SSPRIB"
],
"trait_descriptions": [
"SSPRIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1288"
},
{
"characteristic": "GDU to Black Layer",
"value": "2538"
},
{
"characteristic": "Plant Height",
"value": "Medium Tall"
},
{
"characteristic": "Ear Height",
"value": "Medium High"
},
{
"characteristic": "Kernel Texture",
"value": "Medium Hard"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "Red"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Flexible"
},
{
"characteristic": "Harvest Timing",
"value": "Normal"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "High"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "High"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "High"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Low"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "LENGTH"
},
{
"characteristic": "Leaf Orientation",
"value": "UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "5"
},
{
"characteristic": "Drought Tolerance",
"value": "3"
},
{
"characteristic": "Drydown",
"value": "5"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "4"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "3"
},
{
"characteristic": "Narrow Row",
"value": "4"
},
{
"characteristic": "Corn on Corn",
"value": "5"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "3"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "3"
},
{
"characteristic": "Low Yielding Soils",
"value": "3"
},
{
"characteristic": "Poorly Drained Soils",
"value": "4"
},
{
"characteristic": "High pH Soils",
"value": "4"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "4"
},
{
"characteristic": "Clay Loam",
"value": "4"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "3"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "3"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "4"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "3"
},
{
"characteristic": "Gray Leaf Spot",
"value": "2"
},
{
"characteristic": "Goss's Wilt",
"value": "3"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "2"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "YES"
},
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "5"
},
{
"characteristic": "Crude Protein %DM",
"value": "4"
},
{
"characteristic": "aNDF %DM",
"value": "4"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "3"
},
{
"characteristic": "uNDF 240",
"value": "5"
},
{
"characteristic": "% Starch",
"value": "5"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "4"
},
{
"characteristic": "TTNDFD",
"value": "2"
},
{
"characteristic": "Milk/Ton",
"value": "4"
},
{
"characteristic": "Milk/Acre",
"value": "4"
},
{
"characteristic": "Beef/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "3"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A634-11"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:06.467444+00:00",
"scraper_version": "0.1.0"
}
+107
View File
@@ -0,0 +1,107 @@
# A634-11
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 104
- **Traits:** SSPRIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A634-11
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1288 |
| GDU to Black Layer | 2538 |
| Plant Height | Medium Tall |
| Ear Height | Medium High |
| Kernel Texture | Medium Hard |
| Ear Flex Index | 3 |
| Cob Color | Red |
| Nitrogen Utilization | Flexible |
| Harvest Timing | Normal |
| Foliar Fungicide Response | High |
| Fungicide Response Continuous Corn | High |
| Fungicide Response Corn Soybean Rotation | High |
| Green Snap Vulnerability | Low |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | LENGTH |
| Leaf Orientation | UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 5 |
| Drought Tolerance | 3 |
| Drydown | 5 |
| Root Strength | 4 |
| Stalk Strength | 4 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 3 |
| Narrow Row | 4 |
| Corn on Corn | 5 |
| No Till Adaptability | 4 |
| High Yielding Soils | 5 |
| Variable Soils | 3 |
| Drought Prone/Sandy Soils | 3 |
| Low Yielding Soils | 3 |
| Poorly Drained Soils | 4 |
| High pH Soils | 4 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 4 |
| Clay Loam | 4 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 3 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 3 |
| Anthracnose Stalk Rot | 4 |
| Physoderma Stalk Rot | 4 |
| SCLB | 4 |
| NCLB | 3 |
| Gray Leaf Spot | 2 |
| Goss's Wilt | 3 |
| Common Rust | 4 |
| Southern Rust | 2 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | YES |
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 5 |
| Crude Protein %DM | 4 |
| aNDF %DM | 4 |
| NDFd 30 Hr %NDF | 3 |
| uNDF 240 | 5 |
| % Starch | 5 |
| in situ Starch 7 Hr | 4 |
| TTNDFD | 2 |
| Milk/Ton | 4 |
| Milk/Acre | 4 |
| Beef/Acre | 4 |
| High Mositure Corn | 3 |
+272
View File
@@ -0,0 +1,272 @@
{
"source": "agrigold",
"source_key": "agrigold-a634-65",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A634-65",
"product_id": null,
"hybrid_prefix": "A634-65",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "104",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"TRCRIB"
],
"trait_descriptions": [
"TRCRIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1304"
},
{
"characteristic": "GDU to Black Layer",
"value": "2505"
},
{
"characteristic": "Plant Height",
"value": "Medium"
},
{
"characteristic": "Ear Height",
"value": "Medium"
},
{
"characteristic": "Kernel Texture",
"value": "Hard"
},
{
"characteristic": "Ear Flex Index",
"value": "5"
},
{
"characteristic": "Cob Color",
"value": "Red"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Flexible"
},
{
"characteristic": "Harvest Timing",
"value": "Normal"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "Moderate"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Low"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "Length"
},
{
"characteristic": "Leaf Orientation",
"value": "Semi Upright"
},
{
"characteristic": "Root Type",
"value": "Modified"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "5"
},
{
"characteristic": "Emergence",
"value": "3"
},
{
"characteristic": "Drought Tolerance",
"value": "3"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "5"
},
{
"characteristic": "Stalk Strength",
"value": "5"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "5"
},
{
"characteristic": "No Till Adaptability",
"value": "3"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "2"
},
{
"characteristic": "Low Yielding Soils",
"value": "3"
},
{
"characteristic": "Poorly Drained Soils",
"value": "5"
},
{
"characteristic": "High pH Soils",
"value": "5"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "5"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "5"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "5"
},
{
"characteristic": "NCLB",
"value": "3"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "5"
},
{
"characteristic": "Common Rust",
"value": "5"
},
{
"characteristic": "Southern Rust",
"value": "3"
},
{
"characteristic": "Tar Spot",
"value": "4"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "3"
},
{
"characteristic": "Dry Tons/Acre",
"value": "2"
},
{
"characteristic": "High Mositure Corn",
"value": "4"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A634-65"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:07.479983+00:00",
"scraper_version": "0.1.0"
}
+94
View File
@@ -0,0 +1,94 @@
# A634-65
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 104
- **Traits:** TRCRIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A634-65
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1304 |
| GDU to Black Layer | 2505 |
| Plant Height | Medium |
| Ear Height | Medium |
| Kernel Texture | Hard |
| Ear Flex Index | 5 |
| Cob Color | Red |
| Nitrogen Utilization | Flexible |
| Harvest Timing | Normal |
| Foliar Fungicide Response | Moderate |
| Green Snap Vulnerability | Low |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | Length |
| Leaf Orientation | Semi Upright |
| Root Type | Modified |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 5 |
| Emergence | 3 |
| Drought Tolerance | 3 |
| Drydown | 4 |
| Root Strength | 5 |
| Stalk Strength | 5 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 5 |
| Corn on Corn | 5 |
| No Till Adaptability | 3 |
| High Yielding Soils | 5 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 2 |
| Low Yielding Soils | 3 |
| Poorly Drained Soils | 5 |
| High pH Soils | 5 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 5 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 5 |
| Physoderma Stalk Rot | 4 |
| SCLB | 5 |
| NCLB | 3 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 5 |
| Common Rust | 5 |
| Southern Rust | 3 |
| Tar Spot | 4 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 3 |
| Dry Tons/Acre | 2 |
| High Mositure Corn | 4 |
+332
View File
@@ -0,0 +1,332 @@
{
"source": "agrigold",
"source_key": "agrigold-a636-11",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A636-11",
"product_id": null,
"hybrid_prefix": "A636-11",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "106",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"STXRIB VT2RIB"
],
"trait_descriptions": [
"STXRIB VT2RIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1350"
},
{
"characteristic": "GDU to Black Layer",
"value": "2650"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM TALL"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM HIGH"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM SOFT"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "LATE"
},
{
"characteristic": "Harvest Timing",
"value": "NORMAL"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "MODERATE"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "MODERATE"
},
{
"characteristic": "Low Yield Environments",
"value": "VERY GOOD"
},
{
"characteristic": "High Yield Environments",
"value": "EXCELLENT"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "GIRTH"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "3"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "5"
},
{
"characteristic": "Root Strength",
"value": "3"
},
{
"characteristic": "Stalk Strength",
"value": "4"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "4"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "4"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "4"
},
{
"characteristic": "Poorly Drained Soils",
"value": "5"
},
{
"characteristic": "High pH Soils",
"value": "5"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "4"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "3"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "4"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "5"
},
{
"characteristic": "SCLB",
"value": "5"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "3"
},
{
"characteristic": "Goss's Wilt",
"value": "3"
},
{
"characteristic": "Common Rust",
"value": "3"
},
{
"characteristic": "Southern Rust",
"value": "3"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "NO"
},
{
"characteristic": "Dairy Silage Rating",
"value": "3"
},
{
"characteristic": "Dry Tons/Acre",
"value": "3.33333333333333"
},
{
"characteristic": "Crude Protein %DM",
"value": "2.5"
},
{
"characteristic": "aNDF %DM",
"value": "3.26666666666667"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "3.05"
},
{
"characteristic": "uNDF 240",
"value": "3.5"
},
{
"characteristic": "% Starch",
"value": "4"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "2.8"
},
{
"characteristic": "TTNDFD",
"value": "2.65"
},
{
"characteristic": "Milk/Ton",
"value": "5"
},
{
"characteristic": "Milk/Acre",
"value": "3.6"
},
{
"characteristic": "Beef/Acre",
"value": "3.33333333333333"
},
{
"characteristic": "High Mositure Corn",
"value": "5"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A636-11"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:08.494043+00:00",
"scraper_version": "0.1.0"
}
+109
View File
@@ -0,0 +1,109 @@
# A636-11
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 106
- **Traits:** STXRIB VT2RIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A636-11
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1350 |
| GDU to Black Layer | 2650 |
| Plant Height | MEDIUM TALL |
| Ear Height | MEDIUM HIGH |
| Kernel Texture | MEDIUM SOFT |
| Ear Flex Index | 3 |
| Cob Color | RED |
| Nitrogen Utilization | LATE |
| Harvest Timing | NORMAL |
| Foliar Fungicide Response | MODERATE |
| Fungicide Response Continuous Corn | HIGH |
| Fungicide Response Corn Soybean Rotation | MODERATE |
| Green Snap Vulnerability | MODERATE |
| Low Yield Environments | VERY GOOD |
| High Yield Environments | EXCELLENT |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | GIRTH |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 3 |
| Emergence | 4 |
| Drought Tolerance | 4 |
| Drydown | 5 |
| Root Strength | 3 |
| Stalk Strength | 4 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 4 |
| Narrow Row | 5 |
| Corn on Corn | 4 |
| No Till Adaptability | 4 |
| High Yielding Soils | 5 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 4 |
| Poorly Drained Soils | 5 |
| High pH Soils | 5 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 4 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 3 |
| Anthracnose Stalk Rot | 4 |
| Physoderma Stalk Rot | 5 |
| SCLB | 5 |
| NCLB | 4 |
| Gray Leaf Spot | 3 |
| Goss's Wilt | 3 |
| Common Rust | 3 |
| Southern Rust | 3 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | NO |
| Dairy Silage Rating | 3 |
| Dry Tons/Acre | 3.33333333333333 |
| Crude Protein %DM | 2.5 |
| aNDF %DM | 3.26666666666667 |
| NDFd 30 Hr %NDF | 3.05 |
| uNDF 240 | 3.5 |
| % Starch | 4 |
| in situ Starch 7 Hr | 2.8 |
| TTNDFD | 2.65 |
| Milk/Ton | 5 |
| Milk/Acre | 3.6 |
| Beef/Acre | 3.33333333333333 |
| High Mositure Corn | 5 |
+320
View File
@@ -0,0 +1,320 @@
{
"source": "agrigold",
"source_key": "agrigold-a636-16",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A636-16",
"product_id": null,
"hybrid_prefix": "A636-16",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "106",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"DV CONV"
],
"trait_descriptions": [
"DV CONV"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1364"
},
{
"characteristic": "GDU to Black Layer",
"value": "2725"
},
{
"characteristic": "Plant Height",
"value": "TALL"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM HIGH"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM SOFT"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "FLEXIBLE"
},
{
"characteristic": "Harvest Timing",
"value": "NORMAL"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "LOW"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "LOW"
},
{
"characteristic": "Low Yield Environments",
"value": "VERY GOOD"
},
{
"characteristic": "High Yield Environments",
"value": "EXCELLENT"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "COARSE"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "3"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "3"
},
{
"characteristic": "Drydown",
"value": "2"
},
{
"characteristic": "Root Strength",
"value": "3"
},
{
"characteristic": "Stalk Strength",
"value": "5"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "3"
},
{
"characteristic": "Corn on Corn",
"value": "4"
},
{
"characteristic": "No Till Adaptability",
"value": "5"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "3"
},
{
"characteristic": "Low Yielding Soils",
"value": "4"
},
{
"characteristic": "Poorly Drained Soils",
"value": "4"
},
{
"characteristic": "High pH Soils",
"value": "2"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "5"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "5"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "5"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "5"
},
{
"characteristic": "SCLB",
"value": "3"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "5"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "5"
},
{
"characteristic": "Tar Spot",
"value": "5"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "5"
},
{
"characteristic": "aNDF %DM",
"value": "5"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "4"
},
{
"characteristic": "uNDF 240",
"value": "2.86666666666667"
},
{
"characteristic": "% Starch",
"value": "4"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "4"
},
{
"characteristic": "TTNDFD",
"value": "4"
},
{
"characteristic": "Milk/Acre",
"value": "4"
},
{
"characteristic": "Beef/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "5"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A636-16"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:09.448908+00:00",
"scraper_version": "0.1.0"
}
+106
View File
@@ -0,0 +1,106 @@
# A636-16
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 106
- **Traits:** DV CONV
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A636-16
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1364 |
| GDU to Black Layer | 2725 |
| Plant Height | TALL |
| Ear Height | MEDIUM HIGH |
| Kernel Texture | MEDIUM SOFT |
| Ear Flex Index | 3 |
| Cob Color | RED |
| Nitrogen Utilization | FLEXIBLE |
| Harvest Timing | NORMAL |
| Foliar Fungicide Response | MODERATE |
| Fungicide Response Continuous Corn | MODERATE |
| Fungicide Response Corn Soybean Rotation | LOW |
| Green Snap Vulnerability | LOW |
| Low Yield Environments | VERY GOOD |
| High Yield Environments | EXCELLENT |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | COARSE |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 3 |
| Emergence | 4 |
| Drought Tolerance | 3 |
| Drydown | 2 |
| Root Strength | 3 |
| Stalk Strength | 5 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 3 |
| Corn on Corn | 4 |
| No Till Adaptability | 5 |
| High Yielding Soils | 5 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 3 |
| Low Yielding Soils | 4 |
| Poorly Drained Soils | 4 |
| High pH Soils | 2 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 5 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 5 |
| Anthracnose Stalk Rot | 5 |
| Physoderma Stalk Rot | 5 |
| SCLB | 3 |
| NCLB | 4 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 5 |
| Common Rust | 4 |
| Southern Rust | 5 |
| Tar Spot | 5 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 5 |
| aNDF %DM | 5 |
| NDFd 30 Hr %NDF | 4 |
| uNDF 240 | 2.86666666666667 |
| % Starch | 4 |
| in situ Starch 7 Hr | 4 |
| TTNDFD | 4 |
| Milk/Acre | 4 |
| Beef/Acre | 4 |
| High Mositure Corn | 5 |
+332
View File
@@ -0,0 +1,332 @@
{
"source": "agrigold",
"source_key": "agrigold-a636-39",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A636-39",
"product_id": null,
"hybrid_prefix": "A636-39",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "106",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"3110 CONV"
],
"trait_descriptions": [
"3110 CONV"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1350"
},
{
"characteristic": "GDU to Black Layer",
"value": "2687"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM LOW"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM"
},
{
"characteristic": "Ear Flex Index",
"value": "5"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "FLEXIBLE"
},
{
"characteristic": "Harvest Timing",
"value": "LATE"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "MODERATE"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "MODERATE"
},
{
"characteristic": "Low Yield Environments",
"value": "EXCELLENT"
},
{
"characteristic": "High Yield Environments",
"value": "GOOD"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "5"
},
{
"characteristic": "Stalk Strength",
"value": "3"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "4"
},
{
"characteristic": "Narrow Row",
"value": "4"
},
{
"characteristic": "Corn on Corn",
"value": "3"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "3"
},
{
"characteristic": "Variable Soils",
"value": "5"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "5"
},
{
"characteristic": "Poorly Drained Soils",
"value": "3"
},
{
"characteristic": "High pH Soils",
"value": "3"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "5"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "3"
},
{
"characteristic": "Silt Loam",
"value": "3"
},
{
"characteristic": "Sandy Loam",
"value": "5"
},
{
"characteristic": "Sand",
"value": "5"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "3"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "3"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "4"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "2"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "NO"
},
{
"characteristic": "Dairy Silage Rating",
"value": "3"
},
{
"characteristic": "Dry Tons/Acre",
"value": "2"
},
{
"characteristic": "Crude Protein %DM",
"value": "3"
},
{
"characteristic": "aNDF %DM",
"value": "3"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "3"
},
{
"characteristic": "uNDF 240",
"value": "4"
},
{
"characteristic": "% Starch",
"value": "4"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "3"
},
{
"characteristic": "TTNDFD",
"value": "3"
},
{
"characteristic": "Milk/Ton",
"value": "2"
},
{
"characteristic": "Milk/Acre",
"value": "1"
},
{
"characteristic": "Beef/Acre",
"value": "2"
},
{
"characteristic": "High Mositure Corn",
"value": "4"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A636-39"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:10.552104+00:00",
"scraper_version": "0.1.0"
}
+109
View File
@@ -0,0 +1,109 @@
# A636-39
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 106
- **Traits:** 3110 CONV
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A636-39
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1350 |
| GDU to Black Layer | 2687 |
| Plant Height | MEDIUM |
| Ear Height | MEDIUM LOW |
| Kernel Texture | MEDIUM |
| Ear Flex Index | 5 |
| Cob Color | RED |
| Nitrogen Utilization | FLEXIBLE |
| Harvest Timing | LATE |
| Foliar Fungicide Response | MODERATE |
| Fungicide Response Continuous Corn | MODERATE |
| Fungicide Response Corn Soybean Rotation | MODERATE |
| Green Snap Vulnerability | MODERATE |
| Low Yield Environments | EXCELLENT |
| High Yield Environments | GOOD |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 4 |
| Drought Tolerance | 4 |
| Drydown | 4 |
| Root Strength | 5 |
| Stalk Strength | 3 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 4 |
| Narrow Row | 4 |
| Corn on Corn | 3 |
| No Till Adaptability | 4 |
| High Yielding Soils | 3 |
| Variable Soils | 5 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 5 |
| Poorly Drained Soils | 3 |
| High pH Soils | 3 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 5 |
| Clay Loam | 5 |
| Silty Clay Loam | 3 |
| Silt Loam | 3 |
| Sandy Loam | 5 |
| Sand | 5 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 3 |
| Physoderma Stalk Rot | 4 |
| SCLB | 4 |
| NCLB | 3 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 4 |
| Common Rust | 4 |
| Southern Rust | 2 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | NO |
| Dairy Silage Rating | 3 |
| Dry Tons/Acre | 2 |
| Crude Protein %DM | 3 |
| aNDF %DM | 3 |
| NDFd 30 Hr %NDF | 3 |
| uNDF 240 | 4 |
| % Starch | 4 |
| in situ Starch 7 Hr | 3 |
| TTNDFD | 3 |
| Milk/Ton | 2 |
| Milk/Acre | 1 |
| Beef/Acre | 2 |
| High Mositure Corn | 4 |
+324
View File
@@ -0,0 +1,324 @@
{
"source": "agrigold",
"source_key": "agrigold-a636-42",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A636-42",
"product_id": null,
"hybrid_prefix": "A636-42",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "106",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"SSPRIB"
],
"trait_descriptions": [
"SSPRIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1365"
},
{
"characteristic": "GDU to Black Layer",
"value": "2626"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM LOW"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM HARD"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "LATE"
},
{
"characteristic": "Harvest Timing",
"value": "NORMAL"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "LOW"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "LOW"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "GIRTH"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "3"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "5"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "5"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "3"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "5"
},
{
"characteristic": "No Till Adaptability",
"value": "3"
},
{
"characteristic": "High Yielding Soils",
"value": "4"
},
{
"characteristic": "Variable Soils",
"value": "5"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "5"
},
{
"characteristic": "Poorly Drained Soils",
"value": "4"
},
{
"characteristic": "High pH Soils",
"value": "NA"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "4"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "4"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "5"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "5"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "5"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "3"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "3"
},
{
"characteristic": "Tar Spot",
"value": "2"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "NO"
},
{
"characteristic": "Dairy Silage Rating",
"value": "3"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "Crude Protein %DM",
"value": "1"
},
{
"characteristic": "aNDF %DM",
"value": "4"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "3"
},
{
"characteristic": "uNDF 240",
"value": "3"
},
{
"characteristic": "% Starch",
"value": "4"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "3"
},
{
"characteristic": "TTNDFD",
"value": "3"
},
{
"characteristic": "Milk/Ton",
"value": "3"
},
{
"characteristic": "Milk/Acre",
"value": "5"
},
{
"characteristic": "Beef/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "3"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A636-42"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:11.469284+00:00",
"scraper_version": "0.1.0"
}
+107
View File
@@ -0,0 +1,107 @@
# A636-42
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 106
- **Traits:** SSPRIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A636-42
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1365 |
| GDU to Black Layer | 2626 |
| Plant Height | MEDIUM |
| Ear Height | MEDIUM LOW |
| Kernel Texture | MEDIUM HARD |
| Ear Flex Index | 3 |
| Cob Color | RED |
| Nitrogen Utilization | LATE |
| Harvest Timing | NORMAL |
| Foliar Fungicide Response | MODERATE |
| Fungicide Response Continuous Corn | MODERATE |
| Fungicide Response Corn Soybean Rotation | LOW |
| Green Snap Vulnerability | LOW |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | GIRTH |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 3 |
| Drought Tolerance | 4 |
| Drydown | 5 |
| Root Strength | 4 |
| Stalk Strength | 5 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 3 |
| Narrow Row | 5 |
| Corn on Corn | 5 |
| No Till Adaptability | 3 |
| High Yielding Soils | 4 |
| Variable Soils | 5 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 5 |
| Poorly Drained Soils | 4 |
| High pH Soils | NA |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 4 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 4 |
| Sandy Loam | 4 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 5 |
| Anthracnose Stalk Rot | 5 |
| Physoderma Stalk Rot | 4 |
| SCLB | 5 |
| NCLB | 4 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 3 |
| Common Rust | 4 |
| Southern Rust | 3 |
| Tar Spot | 2 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | NO |
| Dairy Silage Rating | 3 |
| Dry Tons/Acre | 4 |
| Crude Protein %DM | 1 |
| aNDF %DM | 4 |
| NDFd 30 Hr %NDF | 3 |
| uNDF 240 | 3 |
| % Starch | 4 |
| in situ Starch 7 Hr | 3 |
| TTNDFD | 3 |
| Milk/Ton | 3 |
| Milk/Acre | 5 |
| Beef/Acre | 4 |
| High Mositure Corn | 3 |
+332
View File
@@ -0,0 +1,332 @@
{
"source": "agrigold",
"source_key": "agrigold-a637-21wx",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A637-21WX",
"product_id": null,
"hybrid_prefix": "A637-21WX",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "107",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"WX"
],
"trait_descriptions": [
"WX"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1371"
},
{
"characteristic": "GDU to Black Layer",
"value": "2701"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "FLEXIBLE"
},
{
"characteristic": "Harvest Timing",
"value": "NORMAL"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "MODERATE"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "MODERATE"
},
{
"characteristic": "Low Yield Environments",
"value": "VERY GOOD"
},
{
"characteristic": "High Yield Environments",
"value": "VERY GOOD"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "FIBROUS"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "3"
},
{
"characteristic": "Drought Tolerance",
"value": "3"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "4"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "4"
},
{
"characteristic": "Narrow Row",
"value": "4"
},
{
"characteristic": "Corn on Corn",
"value": "3"
},
{
"characteristic": "No Till Adaptability",
"value": "3"
},
{
"characteristic": "High Yielding Soils",
"value": "4"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "3"
},
{
"characteristic": "Low Yielding Soils",
"value": "4"
},
{
"characteristic": "Poorly Drained Soils",
"value": "4"
},
{
"characteristic": "High pH Soils",
"value": "NA"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "4"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "4"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "3"
},
{
"characteristic": "Goss's Wilt",
"value": "3"
},
{
"characteristic": "Common Rust",
"value": "2"
},
{
"characteristic": "Southern Rust",
"value": "2"
},
{
"characteristic": "Tar Spot",
"value": "2"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "NO"
},
{
"characteristic": "Dairy Silage Rating",
"value": "2"
},
{
"characteristic": "Dry Tons/Acre",
"value": "NA"
},
{
"characteristic": "Crude Protein %DM",
"value": "NA"
},
{
"characteristic": "aNDF %DM",
"value": "NA"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "NA"
},
{
"characteristic": "uNDF 240",
"value": "NA"
},
{
"characteristic": "% Starch",
"value": "NA"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "NA"
},
{
"characteristic": "TTNDFD",
"value": "NA"
},
{
"characteristic": "Milk/Ton",
"value": "NA"
},
{
"characteristic": "Milk/Acre",
"value": "NA"
},
{
"characteristic": "Beef/Acre",
"value": "NA"
},
{
"characteristic": "High Mositure Corn",
"value": "3"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A637-21WX"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:12.501459+00:00",
"scraper_version": "0.1.0"
}
+109
View File
@@ -0,0 +1,109 @@
# A637-21WX
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 107
- **Traits:** WX
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A637-21WX
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1371 |
| GDU to Black Layer | 2701 |
| Plant Height | MEDIUM |
| Ear Height | MEDIUM |
| Kernel Texture | MEDIUM |
| Ear Flex Index | 3 |
| Cob Color | RED |
| Nitrogen Utilization | FLEXIBLE |
| Harvest Timing | NORMAL |
| Foliar Fungicide Response | MODERATE |
| Fungicide Response Continuous Corn | MODERATE |
| Fungicide Response Corn Soybean Rotation | MODERATE |
| Green Snap Vulnerability | MODERATE |
| Low Yield Environments | VERY GOOD |
| High Yield Environments | VERY GOOD |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | FIBROUS |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 3 |
| Drought Tolerance | 3 |
| Drydown | 4 |
| Root Strength | 4 |
| Stalk Strength | 4 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 4 |
| Narrow Row | 4 |
| Corn on Corn | 3 |
| No Till Adaptability | 3 |
| High Yielding Soils | 4 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 3 |
| Low Yielding Soils | 4 |
| Poorly Drained Soils | 4 |
| High pH Soils | NA |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 4 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 4 |
| Physoderma Stalk Rot | 4 |
| SCLB | 4 |
| NCLB | 4 |
| Gray Leaf Spot | 3 |
| Goss's Wilt | 3 |
| Common Rust | 2 |
| Southern Rust | 2 |
| Tar Spot | 2 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | NO |
| Dairy Silage Rating | 2 |
| Dry Tons/Acre | NA |
| Crude Protein %DM | NA |
| aNDF %DM | NA |
| NDFd 30 Hr %NDF | NA |
| uNDF 240 | NA |
| % Starch | NA |
| in situ Starch 7 Hr | NA |
| TTNDFD | NA |
| Milk/Ton | NA |
| Milk/Acre | NA |
| Beef/Acre | NA |
| High Mositure Corn | 3 |
+332
View File
@@ -0,0 +1,332 @@
{
"source": "agrigold",
"source_key": "agrigold-a637-72",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A637-72",
"product_id": null,
"hybrid_prefix": "A637-72",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "107",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"VT2RIB"
],
"trait_descriptions": [
"VT2RIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1321"
},
{
"characteristic": "GDU to Black Layer",
"value": "2712"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM TALL"
},
{
"characteristic": "Ear Height",
"value": "HIGH"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM HARD"
},
{
"characteristic": "Ear Flex Index",
"value": "5"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "LATE"
},
{
"characteristic": "Harvest Timing",
"value": "NORMAL"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "LOW"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "LOW"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "LOW"
},
{
"characteristic": "Low Yield Environments",
"value": "EXCELLENT"
},
{
"characteristic": "High Yield Environments",
"value": "VERY GOOD"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "COARSE"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "5"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "5"
},
{
"characteristic": "Drydown",
"value": "3"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "4"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "4"
},
{
"characteristic": "Narrow Row",
"value": "3"
},
{
"characteristic": "Corn on Corn",
"value": "4"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "4"
},
{
"characteristic": "Variable Soils",
"value": "5"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "5"
},
{
"characteristic": "Low Yielding Soils",
"value": "5"
},
{
"characteristic": "Poorly Drained Soils",
"value": "4"
},
{
"characteristic": "High pH Soils",
"value": "3"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "3"
},
{
"characteristic": "Clay Loam",
"value": "4"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "5"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "3"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "5"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "3"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "3"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "NO"
},
{
"characteristic": "Dairy Silage Rating",
"value": "3"
},
{
"characteristic": "Dry Tons/Acre",
"value": "3"
},
{
"characteristic": "Crude Protein %DM",
"value": "5"
},
{
"characteristic": "aNDF %DM",
"value": "3"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "5"
},
{
"characteristic": "uNDF 240",
"value": "3"
},
{
"characteristic": "% Starch",
"value": "4"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "1"
},
{
"characteristic": "TTNDFD",
"value": "3"
},
{
"characteristic": "Milk/Ton",
"value": "4"
},
{
"characteristic": "Milk/Acre",
"value": "4"
},
{
"characteristic": "Beef/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "2"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A637-72"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:13.495778+00:00",
"scraper_version": "0.1.0"
}
+109
View File
@@ -0,0 +1,109 @@
# A637-72
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 107
- **Traits:** VT2RIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A637-72
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1321 |
| GDU to Black Layer | 2712 |
| Plant Height | MEDIUM TALL |
| Ear Height | HIGH |
| Kernel Texture | MEDIUM HARD |
| Ear Flex Index | 5 |
| Cob Color | RED |
| Nitrogen Utilization | LATE |
| Harvest Timing | NORMAL |
| Foliar Fungicide Response | LOW |
| Fungicide Response Continuous Corn | MODERATE |
| Fungicide Response Corn Soybean Rotation | LOW |
| Green Snap Vulnerability | LOW |
| Low Yield Environments | EXCELLENT |
| High Yield Environments | VERY GOOD |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | UPRIGHT |
| Root Type | COARSE |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 5 |
| Emergence | 4 |
| Drought Tolerance | 5 |
| Drydown | 3 |
| Root Strength | 4 |
| Stalk Strength | 4 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 4 |
| Narrow Row | 3 |
| Corn on Corn | 4 |
| No Till Adaptability | 4 |
| High Yielding Soils | 4 |
| Variable Soils | 5 |
| Drought Prone/Sandy Soils | 5 |
| Low Yielding Soils | 5 |
| Poorly Drained Soils | 4 |
| High pH Soils | 3 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 3 |
| Clay Loam | 4 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 5 |
| Physoderma Stalk Rot | 3 |
| SCLB | 4 |
| NCLB | 5 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 3 |
| Common Rust | 4 |
| Southern Rust | 3 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | NO |
| Dairy Silage Rating | 3 |
| Dry Tons/Acre | 3 |
| Crude Protein %DM | 5 |
| aNDF %DM | 3 |
| NDFd 30 Hr %NDF | 5 |
| uNDF 240 | 3 |
| % Starch | 4 |
| in situ Starch 7 Hr | 1 |
| TTNDFD | 3 |
| Milk/Ton | 4 |
| Milk/Acre | 4 |
| Beef/Acre | 4 |
| High Mositure Corn | 2 |
+312
View File
@@ -0,0 +1,312 @@
{
"source": "agrigold",
"source_key": "agrigold-a638-91",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A638-91",
"product_id": null,
"hybrid_prefix": "A638-91",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "108",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"VT2RIB CONV"
],
"trait_descriptions": [
"VT2RIB CONV"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1334"
},
{
"characteristic": "GDU to Black Layer",
"value": "2751"
},
{
"characteristic": "Plant Height",
"value": "Medium Short"
},
{
"characteristic": "Ear Height",
"value": "Medium High"
},
{
"characteristic": "Kernel Texture",
"value": "Medium Hard"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "Crimson"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Late"
},
{
"characteristic": "Harvest Timing",
"value": "Early"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "High"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "High"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "High"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Low"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "LENGTH"
},
{
"characteristic": "Leaf Orientation",
"value": "UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "5"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "3"
},
{
"characteristic": "Drydown",
"value": "5"
},
{
"characteristic": "Root Strength",
"value": "3"
},
{
"characteristic": "Stalk Strength",
"value": "3"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "3"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "3"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "5"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "3"
},
{
"characteristic": "Low Yielding Soils",
"value": "3"
},
{
"characteristic": "Poorly Drained Soils",
"value": "3"
},
{
"characteristic": "High pH Soils",
"value": "5"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "5"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "4"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "3"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "2"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "3"
},
{
"characteristic": "SCLB",
"value": "2"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "4"
},
{
"characteristic": "Common Rust",
"value": "3"
},
{
"characteristic": "Southern Rust",
"value": "5"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "3"
},
{
"characteristic": "Dry Tons/Acre",
"value": "3"
},
{
"characteristic": "aNDF %DM",
"value": "NA"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "NA"
},
{
"characteristic": "uNDF 240",
"value": "NA"
},
{
"characteristic": "% Starch",
"value": "NA"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "NA"
},
{
"characteristic": "TTNDFD",
"value": "NA"
},
{
"characteristic": "Milk/Acre",
"value": "NA"
},
{
"characteristic": "Beef/Acre",
"value": "NA"
},
{
"characteristic": "High Mositure Corn",
"value": "3"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A638-91"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:14.463593+00:00",
"scraper_version": "0.1.0"
}
+104
View File
@@ -0,0 +1,104 @@
# A638-91
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 108
- **Traits:** VT2RIB CONV
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A638-91
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1334 |
| GDU to Black Layer | 2751 |
| Plant Height | Medium Short |
| Ear Height | Medium High |
| Kernel Texture | Medium Hard |
| Ear Flex Index | 3 |
| Cob Color | Crimson |
| Nitrogen Utilization | Late |
| Harvest Timing | Early |
| Foliar Fungicide Response | High |
| Fungicide Response Continuous Corn | High |
| Fungicide Response Corn Soybean Rotation | High |
| Green Snap Vulnerability | Low |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | LENGTH |
| Leaf Orientation | UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 5 |
| Emergence | 4 |
| Drought Tolerance | 3 |
| Drydown | 5 |
| Root Strength | 3 |
| Stalk Strength | 3 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 3 |
| Narrow Row | 5 |
| Corn on Corn | 3 |
| No Till Adaptability | 4 |
| High Yielding Soils | 5 |
| Variable Soils | 5 |
| Drought Prone/Sandy Soils | 3 |
| Low Yielding Soils | 3 |
| Poorly Drained Soils | 3 |
| High pH Soils | 5 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 5 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 4 |
| Sandy Loam | 4 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 3 |
| Anthracnose Stalk Rot | 2 |
| Physoderma Stalk Rot | 3 |
| SCLB | 2 |
| NCLB | 4 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 4 |
| Common Rust | 3 |
| Southern Rust | 5 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 3 |
| Dry Tons/Acre | 3 |
| aNDF %DM | NA |
| NDFd 30 Hr %NDF | NA |
| uNDF 240 | NA |
| % Starch | NA |
| in situ Starch 7 Hr | NA |
| TTNDFD | NA |
| Milk/Acre | NA |
| Beef/Acre | NA |
| High Mositure Corn | 3 |
+332
View File
@@ -0,0 +1,332 @@
{
"source": "agrigold",
"source_key": "agrigold-a639-03",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A639-03",
"product_id": null,
"hybrid_prefix": "A639-03",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "109",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"VT2RIB"
],
"trait_descriptions": [
"VT2RIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1393"
},
{
"characteristic": "GDU to Black Layer",
"value": "2705"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM-TALL"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM SOFT"
},
{
"characteristic": "Ear Flex Index",
"value": "5"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "FLEXIBLE"
},
{
"characteristic": "Harvest Timing",
"value": "EARLY"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "HIGH"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "MODERATE"
},
{
"characteristic": "Low Yield Environments",
"value": "VERY GOOD"
},
{
"characteristic": "High Yield Environments",
"value": "EXCELLENT"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "LENGTH"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "3"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "3"
},
{
"characteristic": "Corn on Corn",
"value": "3"
},
{
"characteristic": "No Till Adaptability",
"value": "3"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "3"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "3"
},
{
"characteristic": "Poorly Drained Soils",
"value": "3"
},
{
"characteristic": "High pH Soils",
"value": "4"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "4"
},
{
"characteristic": "Clay Loam",
"value": "4"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "3"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "3"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "2"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "3"
},
{
"characteristic": "SCLB",
"value": "3"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "3"
},
{
"characteristic": "Common Rust",
"value": "3"
},
{
"characteristic": "Southern Rust",
"value": "3"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "YES"
},
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "Crude Protein %DM",
"value": "2"
},
{
"characteristic": "aNDF %DM",
"value": "3"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "4"
},
{
"characteristic": "uNDF 240",
"value": "3"
},
{
"characteristic": "% Starch",
"value": "4"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "5"
},
{
"characteristic": "TTNDFD",
"value": "4"
},
{
"characteristic": "Milk/Ton",
"value": "3"
},
{
"characteristic": "Milk/Acre",
"value": "3"
},
{
"characteristic": "Beef/Acre",
"value": "3"
},
{
"characteristic": "High Mositure Corn",
"value": "4"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A639-03"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:15.469934+00:00",
"scraper_version": "0.1.0"
}
+109
View File
@@ -0,0 +1,109 @@
# A639-03
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 109
- **Traits:** VT2RIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A639-03
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1393 |
| GDU to Black Layer | 2705 |
| Plant Height | MEDIUM-TALL |
| Ear Height | MEDIUM |
| Kernel Texture | MEDIUM SOFT |
| Ear Flex Index | 5 |
| Cob Color | RED |
| Nitrogen Utilization | FLEXIBLE |
| Harvest Timing | EARLY |
| Foliar Fungicide Response | HIGH |
| Fungicide Response Continuous Corn | HIGH |
| Fungicide Response Corn Soybean Rotation | HIGH |
| Green Snap Vulnerability | MODERATE |
| Low Yield Environments | VERY GOOD |
| High Yield Environments | EXCELLENT |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | LENGTH |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 4 |
| Drought Tolerance | 4 |
| Drydown | 4 |
| Root Strength | 4 |
| Stalk Strength | 3 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 3 |
| Corn on Corn | 3 |
| No Till Adaptability | 3 |
| High Yielding Soils | 5 |
| Variable Soils | 3 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 3 |
| Poorly Drained Soils | 3 |
| High pH Soils | 4 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 4 |
| Clay Loam | 4 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 3 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 3 |
| Anthracnose Stalk Rot | 2 |
| Physoderma Stalk Rot | 3 |
| SCLB | 3 |
| NCLB | 4 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 3 |
| Common Rust | 3 |
| Southern Rust | 3 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | YES |
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 4 |
| Crude Protein %DM | 2 |
| aNDF %DM | 3 |
| NDFd 30 Hr %NDF | 4 |
| uNDF 240 | 3 |
| % Starch | 4 |
| in situ Starch 7 Hr | 5 |
| TTNDFD | 4 |
| Milk/Ton | 3 |
| Milk/Acre | 3 |
| Beef/Acre | 3 |
| High Mositure Corn | 4 |
+312
View File
@@ -0,0 +1,312 @@
{
"source": "agrigold",
"source_key": "agrigold-a639-38",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A639-38",
"product_id": null,
"hybrid_prefix": "A639-38",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "109",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"V"
],
"trait_descriptions": [
"V"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1380"
},
{
"characteristic": "GDU to Black Layer",
"value": "2780"
},
{
"characteristic": "Plant Height",
"value": "Medium Short"
},
{
"characteristic": "Ear Height",
"value": "Medium"
},
{
"characteristic": "Kernel Texture",
"value": "Medium Hard"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "Crimson"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Flexible"
},
{
"characteristic": "Harvest Timing",
"value": "Normal"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "Moderate"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "Moderate"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "Low"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Low"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "GIRTH"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "5"
},
{
"characteristic": "Emergence",
"value": "5"
},
{
"characteristic": "Drought Tolerance",
"value": "3"
},
{
"characteristic": "Drydown",
"value": "5"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "3"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "3"
},
{
"characteristic": "Narrow Row",
"value": "3"
},
{
"characteristic": "Corn on Corn",
"value": "4"
},
{
"characteristic": "No Till Adaptability",
"value": "5"
},
{
"characteristic": "High Yielding Soils",
"value": "4"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "3"
},
{
"characteristic": "Low Yielding Soils",
"value": "5"
},
{
"characteristic": "Poorly Drained Soils",
"value": "4"
},
{
"characteristic": "High pH Soils",
"value": "NA"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "4"
},
{
"characteristic": "Clay Loam",
"value": "4"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "2"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "5"
},
{
"characteristic": "Gray Leaf Spot",
"value": "5"
},
{
"characteristic": "Goss's Wilt",
"value": "4"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "4"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "3"
},
{
"characteristic": "Dry Tons/Acre",
"value": "3"
},
{
"characteristic": "aNDF %DM",
"value": "NA"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "NA"
},
{
"characteristic": "uNDF 240",
"value": "NA"
},
{
"characteristic": "% Starch",
"value": "NA"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "NA"
},
{
"characteristic": "TTNDFD",
"value": "NA"
},
{
"characteristic": "Milk/Acre",
"value": "NA"
},
{
"characteristic": "Beef/Acre",
"value": "3"
},
{
"characteristic": "High Mositure Corn",
"value": "4"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A639-38"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:16.480838+00:00",
"scraper_version": "0.1.0"
}
+104
View File
@@ -0,0 +1,104 @@
# A639-38
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 109
- **Traits:** V
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A639-38
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1380 |
| GDU to Black Layer | 2780 |
| Plant Height | Medium Short |
| Ear Height | Medium |
| Kernel Texture | Medium Hard |
| Ear Flex Index | 3 |
| Cob Color | Crimson |
| Nitrogen Utilization | Flexible |
| Harvest Timing | Normal |
| Foliar Fungicide Response | Moderate |
| Fungicide Response Continuous Corn | Moderate |
| Fungicide Response Corn Soybean Rotation | Low |
| Green Snap Vulnerability | Low |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | GIRTH |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 5 |
| Emergence | 5 |
| Drought Tolerance | 3 |
| Drydown | 5 |
| Root Strength | 4 |
| Stalk Strength | 3 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 3 |
| Narrow Row | 3 |
| Corn on Corn | 4 |
| No Till Adaptability | 5 |
| High Yielding Soils | 4 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 3 |
| Low Yielding Soils | 5 |
| Poorly Drained Soils | 4 |
| High pH Soils | NA |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 4 |
| Clay Loam | 4 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 2 |
| Physoderma Stalk Rot | 4 |
| SCLB | 4 |
| NCLB | 5 |
| Gray Leaf Spot | 5 |
| Goss's Wilt | 4 |
| Common Rust | 4 |
| Southern Rust | 4 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 3 |
| Dry Tons/Acre | 3 |
| aNDF %DM | NA |
| NDFd 30 Hr %NDF | NA |
| uNDF 240 | NA |
| % Starch | NA |
| in situ Starch 7 Hr | NA |
| TTNDFD | NA |
| Milk/Acre | NA |
| Beef/Acre | 3 |
| High Mositure Corn | 4 |
+332
View File
@@ -0,0 +1,332 @@
{
"source": "agrigold",
"source_key": "agrigold-a639-91",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A639-91",
"product_id": null,
"hybrid_prefix": "A639-91",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "109",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"SSPRIB"
],
"trait_descriptions": [
"SSPRIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1344"
},
{
"characteristic": "GDU to Black Layer",
"value": "2648"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM TALL"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM HIGH"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "LATE"
},
{
"characteristic": "Harvest Timing",
"value": "NORMAL"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "MODERATE"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "LOW"
},
{
"characteristic": "Low Yield Environments",
"value": "VERY GOOD"
},
{
"characteristic": "High Yield Environments",
"value": "EXCELLENT"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "LENGTH"
},
{
"characteristic": "Leaf Orientation",
"value": "HORIZONTAL"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "3"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "4"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "5"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "4"
},
{
"characteristic": "Poorly Drained Soils",
"value": "4"
},
{
"characteristic": "High pH Soils",
"value": "5"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "4"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "4"
},
{
"characteristic": "Silt Loam",
"value": "4"
},
{
"characteristic": "Sandy Loam",
"value": "5"
},
{
"characteristic": "Sand",
"value": "4"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "4"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "3"
},
{
"characteristic": "NCLB",
"value": "3"
},
{
"characteristic": "Gray Leaf Spot",
"value": "3"
},
{
"characteristic": "Goss's Wilt",
"value": "3"
},
{
"characteristic": "Common Rust",
"value": "3"
},
{
"characteristic": "Southern Rust",
"value": "3"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "NO"
},
{
"characteristic": "Dairy Silage Rating",
"value": "3"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "Crude Protein %DM",
"value": "4"
},
{
"characteristic": "aNDF %DM",
"value": "5"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "3"
},
{
"characteristic": "uNDF 240",
"value": "3"
},
{
"characteristic": "% Starch",
"value": "3"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "3"
},
{
"characteristic": "TTNDFD",
"value": "3"
},
{
"characteristic": "Milk/Ton",
"value": "4"
},
{
"characteristic": "Milk/Acre",
"value": "3"
},
{
"characteristic": "Beef/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "3"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A639-91"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:17.496842+00:00",
"scraper_version": "0.1.0"
}
+109
View File
@@ -0,0 +1,109 @@
# A639-91
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 109
- **Traits:** SSPRIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A639-91
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1344 |
| GDU to Black Layer | 2648 |
| Plant Height | MEDIUM TALL |
| Ear Height | MEDIUM HIGH |
| Kernel Texture | MEDIUM |
| Ear Flex Index | 3 |
| Cob Color | RED |
| Nitrogen Utilization | LATE |
| Harvest Timing | NORMAL |
| Foliar Fungicide Response | MODERATE |
| Fungicide Response Continuous Corn | HIGH |
| Fungicide Response Corn Soybean Rotation | MODERATE |
| Green Snap Vulnerability | LOW |
| Low Yield Environments | VERY GOOD |
| High Yield Environments | EXCELLENT |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | LENGTH |
| Leaf Orientation | HORIZONTAL |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 3 |
| Drought Tolerance | 4 |
| Drydown | 4 |
| Root Strength | 4 |
| Stalk Strength | 4 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 5 |
| Corn on Corn | 5 |
| No Till Adaptability | 4 |
| High Yielding Soils | 5 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 4 |
| Poorly Drained Soils | 4 |
| High pH Soils | 5 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 4 |
| Clay Loam | 5 |
| Silty Clay Loam | 4 |
| Silt Loam | 4 |
| Sandy Loam | 5 |
| Sand | 4 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 4 |
| Physoderma Stalk Rot | 4 |
| SCLB | 3 |
| NCLB | 3 |
| Gray Leaf Spot | 3 |
| Goss's Wilt | 3 |
| Common Rust | 3 |
| Southern Rust | 3 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | NO |
| Dairy Silage Rating | 3 |
| Dry Tons/Acre | 4 |
| Crude Protein %DM | 4 |
| aNDF %DM | 5 |
| NDFd 30 Hr %NDF | 3 |
| uNDF 240 | 3 |
| % Starch | 3 |
| in situ Starch 7 Hr | 3 |
| TTNDFD | 3 |
| Milk/Ton | 4 |
| Milk/Acre | 3 |
| Beef/Acre | 4 |
| High Mositure Corn | 3 |
+332
View File
@@ -0,0 +1,332 @@
{
"source": "agrigold",
"source_key": "agrigold-a640-01wx",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A640-01WX",
"product_id": null,
"hybrid_prefix": "A640-01WX",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "110",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"WX"
],
"trait_descriptions": [
"WX"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1362"
},
{
"characteristic": "GDU to Black Layer",
"value": "2777"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM TALL"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM HIGH"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "FLEXIBLE"
},
{
"characteristic": "Harvest Timing",
"value": "NORMAL"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "HIGH"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "MODERATE"
},
{
"characteristic": "Low Yield Environments",
"value": "GOOD"
},
{
"characteristic": "High Yield Environments",
"value": "GOOD"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "3"
},
{
"characteristic": "Emergence",
"value": "3"
},
{
"characteristic": "Drought Tolerance",
"value": "3"
},
{
"characteristic": "Drydown",
"value": "3"
},
{
"characteristic": "Root Strength",
"value": "3"
},
{
"characteristic": "Stalk Strength",
"value": "4"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "4"
},
{
"characteristic": "Narrow Row",
"value": "3"
},
{
"characteristic": "Corn on Corn",
"value": "3"
},
{
"characteristic": "No Till Adaptability",
"value": "3"
},
{
"characteristic": "High Yielding Soils",
"value": "3"
},
{
"characteristic": "Variable Soils",
"value": "3"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "3"
},
{
"characteristic": "Low Yielding Soils",
"value": "3"
},
{
"characteristic": "Poorly Drained Soils",
"value": "3"
},
{
"characteristic": "High pH Soils",
"value": "NA"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "4"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "3"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "5"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "3"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "2"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "2"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "4"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "NO"
},
{
"characteristic": "Dairy Silage Rating",
"value": "2"
},
{
"characteristic": "Dry Tons/Acre",
"value": "NA"
},
{
"characteristic": "Crude Protein %DM",
"value": "NA"
},
{
"characteristic": "aNDF %DM",
"value": "NA"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "NA"
},
{
"characteristic": "uNDF 240",
"value": "NA"
},
{
"characteristic": "% Starch",
"value": "NA"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "NA"
},
{
"characteristic": "TTNDFD",
"value": "NA"
},
{
"characteristic": "Milk/Ton",
"value": "NA"
},
{
"characteristic": "Milk/Acre",
"value": "NA"
},
{
"characteristic": "Beef/Acre",
"value": "NA"
},
{
"characteristic": "High Mositure Corn",
"value": "NA"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A640-01WX"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:18.476508+00:00",
"scraper_version": "0.1.0"
}
+109
View File
@@ -0,0 +1,109 @@
# A640-01WX
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 110
- **Traits:** WX
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A640-01WX
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1362 |
| GDU to Black Layer | 2777 |
| Plant Height | MEDIUM TALL |
| Ear Height | MEDIUM HIGH |
| Kernel Texture | MEDIUM |
| Ear Flex Index | 3 |
| Cob Color | RED |
| Nitrogen Utilization | FLEXIBLE |
| Harvest Timing | NORMAL |
| Foliar Fungicide Response | HIGH |
| Fungicide Response Continuous Corn | HIGH |
| Fungicide Response Corn Soybean Rotation | HIGH |
| Green Snap Vulnerability | MODERATE |
| Low Yield Environments | GOOD |
| High Yield Environments | GOOD |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 3 |
| Emergence | 3 |
| Drought Tolerance | 3 |
| Drydown | 3 |
| Root Strength | 3 |
| Stalk Strength | 4 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 4 |
| Narrow Row | 3 |
| Corn on Corn | 3 |
| No Till Adaptability | 3 |
| High Yielding Soils | 3 |
| Variable Soils | 3 |
| Drought Prone/Sandy Soils | 3 |
| Low Yielding Soils | 3 |
| Poorly Drained Soils | 3 |
| High pH Soils | NA |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 4 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 3 |
| Anthracnose Stalk Rot | 5 |
| Physoderma Stalk Rot | 3 |
| SCLB | 4 |
| NCLB | 2 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 2 |
| Common Rust | 4 |
| Southern Rust | 4 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | NO |
| Dairy Silage Rating | 2 |
| Dry Tons/Acre | NA |
| Crude Protein %DM | NA |
| aNDF %DM | NA |
| NDFd 30 Hr %NDF | NA |
| uNDF 240 | NA |
| % Starch | NA |
| in situ Starch 7 Hr | NA |
| TTNDFD | NA |
| Milk/Ton | NA |
| Milk/Acre | NA |
| Beef/Acre | NA |
| High Mositure Corn | NA |
+320
View File
@@ -0,0 +1,320 @@
{
"source": "agrigold",
"source_key": "agrigold-a640-16",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A640-16",
"product_id": null,
"hybrid_prefix": "A640-16",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "110",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"DV 3110"
],
"trait_descriptions": [
"DV 3110"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1389"
},
{
"characteristic": "GDU to Black Layer",
"value": "2790"
},
{
"characteristic": "Plant Height",
"value": "Medium Tall"
},
{
"characteristic": "Ear Height",
"value": "Medium"
},
{
"characteristic": "Kernel Texture",
"value": "Medium"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "Red"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Normal"
},
{
"characteristic": "Harvest Timing",
"value": "Normal"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "Low"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "Moderate"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "Low"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Low"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "GIRTH"
},
{
"characteristic": "Leaf Orientation",
"value": "UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "5"
},
{
"characteristic": "Drought Tolerance",
"value": "3"
},
{
"characteristic": "Drydown",
"value": "3"
},
{
"characteristic": "Root Strength",
"value": "5"
},
{
"characteristic": "Stalk Strength",
"value": "3"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "3"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "4"
},
{
"characteristic": "No Till Adaptability",
"value": "5"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "3"
},
{
"characteristic": "Low Yielding Soils",
"value": "3"
},
{
"characteristic": "Poorly Drained Soils",
"value": "5"
},
{
"characteristic": "High pH Soils",
"value": "NA"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "4"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "3"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "5"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "4"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "5"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "5"
},
{
"characteristic": "Goss's Wilt",
"value": "5"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "3"
},
{
"characteristic": "Tar Spot",
"value": "4"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "YES"
},
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "5"
},
{
"characteristic": "Crude Protein %DM",
"value": "4"
},
{
"characteristic": "aNDF %DM",
"value": "4"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "5"
},
{
"characteristic": "uNDF 240",
"value": "4"
},
{
"characteristic": "% Starch",
"value": "5"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "2"
},
{
"characteristic": "TTNDFD",
"value": "4"
},
{
"characteristic": "Milk/Ton",
"value": "5"
},
{
"characteristic": "Milk/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "4"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A640-16"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:19.453703+00:00",
"scraper_version": "0.1.0"
}
+106
View File
@@ -0,0 +1,106 @@
# A640-16
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 110
- **Traits:** DV 3110
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A640-16
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1389 |
| GDU to Black Layer | 2790 |
| Plant Height | Medium Tall |
| Ear Height | Medium |
| Kernel Texture | Medium |
| Ear Flex Index | 3 |
| Cob Color | Red |
| Nitrogen Utilization | Normal |
| Harvest Timing | Normal |
| Foliar Fungicide Response | Low |
| Fungicide Response Continuous Corn | Moderate |
| Fungicide Response Corn Soybean Rotation | Low |
| Green Snap Vulnerability | Low |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | GIRTH |
| Leaf Orientation | UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 5 |
| Drought Tolerance | 3 |
| Drydown | 3 |
| Root Strength | 5 |
| Stalk Strength | 3 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 3 |
| Narrow Row | 5 |
| Corn on Corn | 4 |
| No Till Adaptability | 5 |
| High Yielding Soils | 5 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 3 |
| Low Yielding Soils | 3 |
| Poorly Drained Soils | 5 |
| High pH Soils | NA |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 4 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 3 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 5 |
| Anthracnose Stalk Rot | 4 |
| Physoderma Stalk Rot | 5 |
| SCLB | 4 |
| NCLB | 4 |
| Gray Leaf Spot | 5 |
| Goss's Wilt | 5 |
| Common Rust | 4 |
| Southern Rust | 3 |
| Tar Spot | 4 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | YES |
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 5 |
| Crude Protein %DM | 4 |
| aNDF %DM | 4 |
| NDFd 30 Hr %NDF | 5 |
| uNDF 240 | 4 |
| % Starch | 5 |
| in situ Starch 7 Hr | 2 |
| TTNDFD | 4 |
| Milk/Ton | 5 |
| Milk/Acre | 4 |
| High Mositure Corn | 4 |
+332
View File
@@ -0,0 +1,332 @@
{
"source": "agrigold",
"source_key": "agrigold-a640-24",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A640-24",
"product_id": null,
"hybrid_prefix": "A640-24",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "110",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"CONV"
],
"trait_descriptions": [
"CONV"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1378"
},
{
"characteristic": "GDU to Black Layer",
"value": "2762"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM TALL"
},
{
"characteristic": "Ear Height",
"value": "HIGH"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM HARD"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "LATE"
},
{
"characteristic": "Harvest Timing",
"value": "LATE"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "MODERATE"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "LOW"
},
{
"characteristic": "Low Yield Environments",
"value": "EXCELLENT"
},
{
"characteristic": "High Yield Environments",
"value": "EXCELLENT"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "COARSE"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "4"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "4"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "4"
},
{
"characteristic": "No Till Adaptability",
"value": "5"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "5"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "5"
},
{
"characteristic": "Poorly Drained Soils",
"value": "4"
},
{
"characteristic": "High pH Soils",
"value": "NA"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "5"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "4"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "3"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "5"
},
{
"characteristic": "SCLB",
"value": "3"
},
{
"characteristic": "NCLB",
"value": "2"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "4"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "3"
},
{
"characteristic": "Tar Spot",
"value": "4"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "NO"
},
{
"characteristic": "Dairy Silage Rating",
"value": "NA"
},
{
"characteristic": "Dry Tons/Acre",
"value": "NA"
},
{
"characteristic": "Crude Protein %DM",
"value": "NA"
},
{
"characteristic": "aNDF %DM",
"value": "NA"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "NA"
},
{
"characteristic": "uNDF 240",
"value": "NA"
},
{
"characteristic": "% Starch",
"value": "NA"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "NA"
},
{
"characteristic": "TTNDFD",
"value": "NA"
},
{
"characteristic": "Milk/Ton",
"value": "NA"
},
{
"characteristic": "Milk/Acre",
"value": "NA"
},
{
"characteristic": "Beef/Acre",
"value": "NA"
},
{
"characteristic": "High Mositure Corn",
"value": "2"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A640-24"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:20.457029+00:00",
"scraper_version": "0.1.0"
}
+109
View File
@@ -0,0 +1,109 @@
# A640-24
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 110
- **Traits:** CONV
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A640-24
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1378 |
| GDU to Black Layer | 2762 |
| Plant Height | MEDIUM TALL |
| Ear Height | HIGH |
| Kernel Texture | MEDIUM HARD |
| Ear Flex Index | 3 |
| Cob Color | RED |
| Nitrogen Utilization | LATE |
| Harvest Timing | LATE |
| Foliar Fungicide Response | MODERATE |
| Fungicide Response Continuous Corn | HIGH |
| Fungicide Response Corn Soybean Rotation | MODERATE |
| Green Snap Vulnerability | LOW |
| Low Yield Environments | EXCELLENT |
| High Yield Environments | EXCELLENT |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | UPRIGHT |
| Root Type | COARSE |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 4 |
| Drought Tolerance | 4 |
| Drydown | 4 |
| Root Strength | 4 |
| Stalk Strength | 4 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 4 |
| Narrow Row | 5 |
| Corn on Corn | 4 |
| No Till Adaptability | 5 |
| High Yielding Soils | 5 |
| Variable Soils | 5 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 5 |
| Poorly Drained Soils | 4 |
| High pH Soils | NA |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 5 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 4 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 3 |
| Physoderma Stalk Rot | 5 |
| SCLB | 3 |
| NCLB | 2 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 4 |
| Common Rust | 4 |
| Southern Rust | 3 |
| Tar Spot | 4 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | NO |
| Dairy Silage Rating | NA |
| Dry Tons/Acre | NA |
| Crude Protein %DM | NA |
| aNDF %DM | NA |
| NDFd 30 Hr %NDF | NA |
| uNDF 240 | NA |
| % Starch | NA |
| in situ Starch 7 Hr | NA |
| TTNDFD | NA |
| Milk/Ton | NA |
| Milk/Acre | NA |
| Beef/Acre | NA |
| High Mositure Corn | 2 |
+312
View File
@@ -0,0 +1,312 @@
{
"source": "agrigold",
"source_key": "agrigold-a640-94",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A640-94",
"product_id": null,
"hybrid_prefix": "A640-94",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "110",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"VT4RIB"
],
"trait_descriptions": [
"VT4RIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1318"
},
{
"characteristic": "GDU to Black Layer",
"value": "2833"
},
{
"characteristic": "Plant Height",
"value": "Medium Tall"
},
{
"characteristic": "Ear Height",
"value": "Medium"
},
{
"characteristic": "Kernel Texture",
"value": "Medium Hard"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "Crimson"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Flexible"
},
{
"characteristic": "Harvest Timing",
"value": "Early"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "High"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "High"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "High"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Low"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "GIRTH"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "3"
},
{
"characteristic": "Drought Tolerance",
"value": "5"
},
{
"characteristic": "Drydown",
"value": "3"
},
{
"characteristic": "Root Strength",
"value": "3"
},
{
"characteristic": "Stalk Strength",
"value": "5"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "3"
},
{
"characteristic": "Corn on Corn",
"value": "5"
},
{
"characteristic": "No Till Adaptability",
"value": "3"
},
{
"characteristic": "High Yielding Soils",
"value": "4"
},
{
"characteristic": "Variable Soils",
"value": "5"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "5"
},
{
"characteristic": "Low Yielding Soils",
"value": "5"
},
{
"characteristic": "Poorly Drained Soils",
"value": "4"
},
{
"characteristic": "High pH Soils",
"value": "NA"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "4"
},
{
"characteristic": "Clay Loam",
"value": "4"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "5"
},
{
"characteristic": "Sand",
"value": "5"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "3"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "3"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "5"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "3"
},
{
"characteristic": "Goss's Wilt",
"value": "4"
},
{
"characteristic": "Common Rust",
"value": "5"
},
{
"characteristic": "Southern Rust",
"value": "2"
},
{
"characteristic": "Tar Spot",
"value": "2"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "3"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "aNDF %DM",
"value": "NA"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "NA"
},
{
"characteristic": "uNDF 240",
"value": "NA"
},
{
"characteristic": "% Starch",
"value": "NA"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "NA"
},
{
"characteristic": "TTNDFD",
"value": "NA"
},
{
"characteristic": "Milk/Acre",
"value": "NA"
},
{
"characteristic": "Beef/Acre",
"value": "NA"
},
{
"characteristic": "High Mositure Corn",
"value": "3"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A640-94"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:21.481088+00:00",
"scraper_version": "0.1.0"
}
+104
View File
@@ -0,0 +1,104 @@
# A640-94
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 110
- **Traits:** VT4RIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A640-94
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1318 |
| GDU to Black Layer | 2833 |
| Plant Height | Medium Tall |
| Ear Height | Medium |
| Kernel Texture | Medium Hard |
| Ear Flex Index | 3 |
| Cob Color | Crimson |
| Nitrogen Utilization | Flexible |
| Harvest Timing | Early |
| Foliar Fungicide Response | High |
| Fungicide Response Continuous Corn | High |
| Fungicide Response Corn Soybean Rotation | High |
| Green Snap Vulnerability | Low |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | GIRTH |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 3 |
| Drought Tolerance | 5 |
| Drydown | 3 |
| Root Strength | 3 |
| Stalk Strength | 5 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 3 |
| Corn on Corn | 5 |
| No Till Adaptability | 3 |
| High Yielding Soils | 4 |
| Variable Soils | 5 |
| Drought Prone/Sandy Soils | 5 |
| Low Yielding Soils | 5 |
| Poorly Drained Soils | 4 |
| High pH Soils | NA |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 4 |
| Clay Loam | 4 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 5 |
| Sand | 5 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 3 |
| Anthracnose Stalk Rot | 3 |
| Physoderma Stalk Rot | 4 |
| SCLB | 5 |
| NCLB | 4 |
| Gray Leaf Spot | 3 |
| Goss's Wilt | 4 |
| Common Rust | 5 |
| Southern Rust | 2 |
| Tar Spot | 2 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 3 |
| Dry Tons/Acre | 4 |
| aNDF %DM | NA |
| NDFd 30 Hr %NDF | NA |
| uNDF 240 | NA |
| % Starch | NA |
| in situ Starch 7 Hr | NA |
| TTNDFD | NA |
| Milk/Acre | NA |
| Beef/Acre | NA |
| High Mositure Corn | 3 |
+324
View File
@@ -0,0 +1,324 @@
{
"source": "agrigold",
"source_key": "agrigold-a641-26",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A641-26",
"product_id": null,
"hybrid_prefix": "A641-26",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "111",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"V"
],
"trait_descriptions": [
"V"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1378"
},
{
"characteristic": "GDU to Black Layer",
"value": "2722"
},
{
"characteristic": "Plant Height",
"value": "Medium Tall"
},
{
"characteristic": "Ear Height",
"value": "Medium High"
},
{
"characteristic": "Kernel Texture",
"value": "Medium"
},
{
"characteristic": "Ear Flex Index",
"value": "5"
},
{
"characteristic": "Cob Color",
"value": "Crimson"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Flexible"
},
{
"characteristic": "Harvest Timing",
"value": "Early"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "Moderate"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "Moderate"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "Moderate"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Low"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "GIRTH"
},
{
"characteristic": "Leaf Orientation",
"value": "UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "COARSE"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "3"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "4"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "4"
},
{
"characteristic": "Corn on Corn",
"value": "3"
},
{
"characteristic": "No Till Adaptability",
"value": "5"
},
{
"characteristic": "High Yielding Soils",
"value": "4"
},
{
"characteristic": "Variable Soils",
"value": "5"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "5"
},
{
"characteristic": "Poorly Drained Soils",
"value": "2"
},
{
"characteristic": "High pH Soils",
"value": "2"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "3"
},
{
"characteristic": "Clay Loam",
"value": "3"
},
{
"characteristic": "Silty Clay Loam",
"value": "4"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "5"
},
{
"characteristic": "Sand",
"value": "4"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "3"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "4"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "3"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "NO"
},
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "5"
},
{
"characteristic": "Crude Protein %DM",
"value": "4"
},
{
"characteristic": "aNDF %DM",
"value": "4"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "3"
},
{
"characteristic": "uNDF 240",
"value": "4"
},
{
"characteristic": "% Starch",
"value": "5"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "5"
},
{
"characteristic": "TTNDFD",
"value": "2"
},
{
"characteristic": "Milk/Ton",
"value": "3"
},
{
"characteristic": "Milk/Acre",
"value": "4"
},
{
"characteristic": "Beef/Acre",
"value": "5"
},
{
"characteristic": "High Mositure Corn",
"value": "2"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A641-26"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:22.440914+00:00",
"scraper_version": "0.1.0"
}
+107
View File
@@ -0,0 +1,107 @@
# A641-26
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 111
- **Traits:** V
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A641-26
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1378 |
| GDU to Black Layer | 2722 |
| Plant Height | Medium Tall |
| Ear Height | Medium High |
| Kernel Texture | Medium |
| Ear Flex Index | 5 |
| Cob Color | Crimson |
| Nitrogen Utilization | Flexible |
| Harvest Timing | Early |
| Foliar Fungicide Response | Moderate |
| Fungicide Response Continuous Corn | Moderate |
| Fungicide Response Corn Soybean Rotation | Moderate |
| Green Snap Vulnerability | Low |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | GIRTH |
| Leaf Orientation | UPRIGHT |
| Root Type | COARSE |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 3 |
| Drought Tolerance | 4 |
| Drydown | 4 |
| Root Strength | 4 |
| Stalk Strength | 4 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 4 |
| Corn on Corn | 3 |
| No Till Adaptability | 5 |
| High Yielding Soils | 4 |
| Variable Soils | 5 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 5 |
| Poorly Drained Soils | 2 |
| High pH Soils | 2 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 3 |
| Clay Loam | 3 |
| Silty Clay Loam | 4 |
| Silt Loam | 5 |
| Sandy Loam | 5 |
| Sand | 4 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 3 |
| Physoderma Stalk Rot | 4 |
| SCLB | 4 |
| NCLB | 4 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 4 |
| Common Rust | 4 |
| Southern Rust | 3 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | NO |
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 5 |
| Crude Protein %DM | 4 |
| aNDF %DM | 4 |
| NDFd 30 Hr %NDF | 3 |
| uNDF 240 | 4 |
| % Starch | 5 |
| in situ Starch 7 Hr | 5 |
| TTNDFD | 2 |
| Milk/Ton | 3 |
| Milk/Acre | 4 |
| Beef/Acre | 5 |
| High Mositure Corn | 2 |
+312
View File
@@ -0,0 +1,312 @@
{
"source": "agrigold",
"source_key": "agrigold-a641-62",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A641-62",
"product_id": null,
"hybrid_prefix": "A641-62",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "111",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"D"
],
"trait_descriptions": [
"D"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1323"
},
{
"characteristic": "GDU to Black Layer",
"value": "2795"
},
{
"characteristic": "Plant Height",
"value": "Medium"
},
{
"characteristic": "Ear Height",
"value": "Medium Low"
},
{
"characteristic": "Kernel Texture",
"value": "Medium"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "Crimson"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Flexible"
},
{
"characteristic": "Harvest Timing",
"value": "Normal"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "High"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "High"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "High"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Low"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "LENGTH"
},
{
"characteristic": "Leaf Orientation",
"value": "UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "3"
},
{
"characteristic": "Emergence",
"value": "5"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "3"
},
{
"characteristic": "Root Strength",
"value": "3"
},
{
"characteristic": "Stalk Strength",
"value": "3"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "3"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "5"
},
{
"characteristic": "No Till Adaptability",
"value": "5"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "3"
},
{
"characteristic": "Poorly Drained Soils",
"value": "4"
},
{
"characteristic": "High pH Soils",
"value": "NA"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "3"
},
{
"characteristic": "Clay Loam",
"value": "4"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "3"
},
{
"characteristic": "Sand",
"value": "2"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "3"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "3"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "3"
},
{
"characteristic": "Gray Leaf Spot",
"value": "3"
},
{
"characteristic": "Goss's Wilt",
"value": "3"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "4"
},
{
"characteristic": "Tar Spot",
"value": "4"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "aNDF %DM",
"value": "NA"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "NA"
},
{
"characteristic": "uNDF 240",
"value": "NA"
},
{
"characteristic": "% Starch",
"value": "NA"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "NA"
},
{
"characteristic": "TTNDFD",
"value": "NA"
},
{
"characteristic": "Milk/Acre",
"value": "NA"
},
{
"characteristic": "Beef/Acre",
"value": "NA"
},
{
"characteristic": "High Mositure Corn",
"value": "4"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A641-62"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:23.494389+00:00",
"scraper_version": "0.1.0"
}
+104
View File
@@ -0,0 +1,104 @@
# A641-62
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 111
- **Traits:** D
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A641-62
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1323 |
| GDU to Black Layer | 2795 |
| Plant Height | Medium |
| Ear Height | Medium Low |
| Kernel Texture | Medium |
| Ear Flex Index | 3 |
| Cob Color | Crimson |
| Nitrogen Utilization | Flexible |
| Harvest Timing | Normal |
| Foliar Fungicide Response | High |
| Fungicide Response Continuous Corn | High |
| Fungicide Response Corn Soybean Rotation | High |
| Green Snap Vulnerability | Low |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | LENGTH |
| Leaf Orientation | UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 3 |
| Emergence | 5 |
| Drought Tolerance | 4 |
| Drydown | 3 |
| Root Strength | 3 |
| Stalk Strength | 3 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 3 |
| Narrow Row | 5 |
| Corn on Corn | 5 |
| No Till Adaptability | 5 |
| High Yielding Soils | 5 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 3 |
| Poorly Drained Soils | 4 |
| High pH Soils | NA |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 3 |
| Clay Loam | 4 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 3 |
| Sand | 2 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 3 |
| Anthracnose Stalk Rot | 3 |
| Physoderma Stalk Rot | 4 |
| SCLB | 4 |
| NCLB | 3 |
| Gray Leaf Spot | 3 |
| Goss's Wilt | 3 |
| Common Rust | 4 |
| Southern Rust | 4 |
| Tar Spot | 4 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 4 |
| aNDF %DM | NA |
| NDFd 30 Hr %NDF | NA |
| uNDF 240 | NA |
| % Starch | NA |
| in situ Starch 7 Hr | NA |
| TTNDFD | NA |
| Milk/Acre | NA |
| Beef/Acre | NA |
| High Mositure Corn | 4 |
+332
View File
@@ -0,0 +1,332 @@
{
"source": "agrigold",
"source_key": "agrigold-a641-85",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A641-85",
"product_id": null,
"hybrid_prefix": "A641-85",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "111",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"STXRIB"
],
"trait_descriptions": [
"STXRIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1367"
},
{
"characteristic": "GDU to Black Layer",
"value": "2701"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM HIGH"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "LATE"
},
{
"characteristic": "Harvest Timing",
"value": "EARLY"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "HIGH"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "LOW"
},
{
"characteristic": "Low Yield Environments",
"value": "GOOD"
},
{
"characteristic": "High Yield Environments",
"value": "EXCELLENT"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "FIBROUS"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "3"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "4"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "4"
},
{
"characteristic": "Corn on Corn",
"value": "5"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "3"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "3"
},
{
"characteristic": "Low Yielding Soils",
"value": "2"
},
{
"characteristic": "Poorly Drained Soils",
"value": "4"
},
{
"characteristic": "High pH Soils",
"value": "5"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "2"
},
{
"characteristic": "Clay Loam",
"value": "3"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "3"
},
{
"characteristic": "Sand",
"value": "2"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "3"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "2"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "3"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "3"
},
{
"characteristic": "Gray Leaf Spot",
"value": "2"
},
{
"characteristic": "Goss's Wilt",
"value": "4"
},
{
"characteristic": "Common Rust",
"value": "3"
},
{
"characteristic": "Southern Rust",
"value": "2"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "YES"
},
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "Crude Protein %DM",
"value": "3"
},
{
"characteristic": "aNDF %DM",
"value": "5"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "4"
},
{
"characteristic": "uNDF 240",
"value": "3"
},
{
"characteristic": "% Starch",
"value": "3"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "4"
},
{
"characteristic": "TTNDFD",
"value": "4"
},
{
"characteristic": "Milk/Ton",
"value": "4"
},
{
"characteristic": "Milk/Acre",
"value": "5"
},
{
"characteristic": "Beef/Acre",
"value": "5"
},
{
"characteristic": "High Mositure Corn",
"value": "3"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A641-85"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:24.494845+00:00",
"scraper_version": "0.1.0"
}
+109
View File
@@ -0,0 +1,109 @@
# A641-85
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 111
- **Traits:** STXRIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A641-85
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1367 |
| GDU to Black Layer | 2701 |
| Plant Height | MEDIUM |
| Ear Height | MEDIUM HIGH |
| Kernel Texture | MEDIUM |
| Ear Flex Index | 3 |
| Cob Color | RED |
| Nitrogen Utilization | LATE |
| Harvest Timing | EARLY |
| Foliar Fungicide Response | HIGH |
| Fungicide Response Continuous Corn | HIGH |
| Fungicide Response Corn Soybean Rotation | HIGH |
| Green Snap Vulnerability | LOW |
| Low Yield Environments | GOOD |
| High Yield Environments | EXCELLENT |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | FIBROUS |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 4 |
| Drought Tolerance | 3 |
| Drydown | 4 |
| Root Strength | 4 |
| Stalk Strength | 4 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 4 |
| Corn on Corn | 5 |
| No Till Adaptability | 4 |
| High Yielding Soils | 5 |
| Variable Soils | 3 |
| Drought Prone/Sandy Soils | 3 |
| Low Yielding Soils | 2 |
| Poorly Drained Soils | 4 |
| High pH Soils | 5 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 2 |
| Clay Loam | 3 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 3 |
| Sand | 2 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 3 |
| Anthracnose Stalk Rot | 2 |
| Physoderma Stalk Rot | 3 |
| SCLB | 4 |
| NCLB | 3 |
| Gray Leaf Spot | 2 |
| Goss's Wilt | 4 |
| Common Rust | 3 |
| Southern Rust | 2 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | YES |
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 4 |
| Crude Protein %DM | 3 |
| aNDF %DM | 5 |
| NDFd 30 Hr %NDF | 4 |
| uNDF 240 | 3 |
| % Starch | 3 |
| in situ Starch 7 Hr | 4 |
| TTNDFD | 4 |
| Milk/Ton | 4 |
| Milk/Acre | 5 |
| Beef/Acre | 5 |
| High Mositure Corn | 3 |
+332
View File
@@ -0,0 +1,332 @@
{
"source": "agrigold",
"source_key": "agrigold-a642-05",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A642-05",
"product_id": null,
"hybrid_prefix": "A642-05",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "112",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"VT2RIBD1"
],
"trait_descriptions": [
"VT2RIBD1"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1398"
},
{
"characteristic": "GDU to Black Layer",
"value": "2719"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM TALL"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM HIGH"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM HARD"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "PINK"
},
{
"characteristic": "Nitrogen Utilization",
"value": "LATE"
},
{
"characteristic": "Harvest Timing",
"value": "NORMAL"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "HIGH"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "MODERATE"
},
{
"characteristic": "Low Yield Environments",
"value": "VERY GOOD"
},
{
"characteristic": "High Yield Environments",
"value": "EXCELLENT"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "FIBROUS"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "3"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "5"
},
{
"characteristic": "Stalk Strength",
"value": "4"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "3"
},
{
"characteristic": "No Till Adaptability",
"value": "5"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "3"
},
{
"characteristic": "Low Yielding Soils",
"value": "4"
},
{
"characteristic": "Poorly Drained Soils",
"value": "5"
},
{
"characteristic": "High pH Soils",
"value": "4"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "5"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "4"
},
{
"characteristic": "Sandy Loam",
"value": "3"
},
{
"characteristic": "Sand",
"value": "2"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "2"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "3"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "2"
},
{
"characteristic": "SCLB",
"value": "2"
},
{
"characteristic": "NCLB",
"value": "3"
},
{
"characteristic": "Gray Leaf Spot",
"value": "3"
},
{
"characteristic": "Goss's Wilt",
"value": "2"
},
{
"characteristic": "Common Rust",
"value": "3"
},
{
"characteristic": "Southern Rust",
"value": "2"
},
{
"characteristic": "Tar Spot",
"value": "2"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "YES"
},
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "Crude Protein %DM",
"value": "3"
},
{
"characteristic": "aNDF %DM",
"value": "4"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "3"
},
{
"characteristic": "uNDF 240",
"value": "2"
},
{
"characteristic": "% Starch",
"value": "4"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "4"
},
{
"characteristic": "TTNDFD",
"value": "4"
},
{
"characteristic": "Milk/Ton",
"value": "3"
},
{
"characteristic": "Milk/Acre",
"value": "4"
},
{
"characteristic": "Beef/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "2"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A642-05"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:25.487549+00:00",
"scraper_version": "0.1.0"
}
+109
View File
@@ -0,0 +1,109 @@
# A642-05
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 112
- **Traits:** VT2RIBD1
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A642-05
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1398 |
| GDU to Black Layer | 2719 |
| Plant Height | MEDIUM TALL |
| Ear Height | MEDIUM HIGH |
| Kernel Texture | MEDIUM HARD |
| Ear Flex Index | 3 |
| Cob Color | PINK |
| Nitrogen Utilization | LATE |
| Harvest Timing | NORMAL |
| Foliar Fungicide Response | HIGH |
| Fungicide Response Continuous Corn | HIGH |
| Fungicide Response Corn Soybean Rotation | HIGH |
| Green Snap Vulnerability | MODERATE |
| Low Yield Environments | VERY GOOD |
| High Yield Environments | EXCELLENT |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | UPRIGHT |
| Root Type | FIBROUS |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 4 |
| Drought Tolerance | 3 |
| Drydown | 4 |
| Root Strength | 5 |
| Stalk Strength | 4 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 5 |
| Corn on Corn | 3 |
| No Till Adaptability | 5 |
| High Yielding Soils | 5 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 3 |
| Low Yielding Soils | 4 |
| Poorly Drained Soils | 5 |
| High pH Soils | 4 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 5 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 4 |
| Sandy Loam | 3 |
| Sand | 2 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 2 |
| Anthracnose Stalk Rot | 3 |
| Physoderma Stalk Rot | 2 |
| SCLB | 2 |
| NCLB | 3 |
| Gray Leaf Spot | 3 |
| Goss's Wilt | 2 |
| Common Rust | 3 |
| Southern Rust | 2 |
| Tar Spot | 2 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | YES |
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 4 |
| Crude Protein %DM | 3 |
| aNDF %DM | 4 |
| NDFd 30 Hr %NDF | 3 |
| uNDF 240 | 2 |
| % Starch | 4 |
| in situ Starch 7 Hr | 4 |
| TTNDFD | 4 |
| Milk/Ton | 3 |
| Milk/Acre | 4 |
| Beef/Acre | 4 |
| High Mositure Corn | 2 |
+312
View File
@@ -0,0 +1,312 @@
{
"source": "agrigold",
"source_key": "agrigold-a642-18",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A642-18",
"product_id": null,
"hybrid_prefix": "A642-18",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "112",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"SSPRIB TRCRIB TRC"
],
"trait_descriptions": [
"SSPRIB TRCRIB TRC"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1376"
},
{
"characteristic": "GDU to Black Layer",
"value": "2810"
},
{
"characteristic": "Plant Height",
"value": "Medium Tall"
},
{
"characteristic": "Ear Height",
"value": "Medium"
},
{
"characteristic": "Kernel Texture",
"value": "Medium"
},
{
"characteristic": "Ear Flex Index",
"value": "5"
},
{
"characteristic": "Cob Color",
"value": "Red"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Flexible"
},
{
"characteristic": "Harvest Timing",
"value": "Normal"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "High"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "High"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "High"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Moderate"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "3"
},
{
"characteristic": "Emergence",
"value": "3"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "3"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "5"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "5"
},
{
"characteristic": "No Till Adaptability",
"value": "3"
},
{
"characteristic": "High Yielding Soils",
"value": "4"
},
{
"characteristic": "Variable Soils",
"value": "5"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "5"
},
{
"characteristic": "Poorly Drained Soils",
"value": "5"
},
{
"characteristic": "High pH Soils",
"value": "4"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "4"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "4"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "4"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "2"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "5"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "5"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "2"
},
{
"characteristic": "Goss's Wilt",
"value": "3"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "3"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "aNDF %DM",
"value": "5"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "3"
},
{
"characteristic": "uNDF 240",
"value": "2"
},
{
"characteristic": "% Starch",
"value": "5"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "2"
},
{
"characteristic": "TTNDFD",
"value": "2"
},
{
"characteristic": "Milk/Acre",
"value": "3"
},
{
"characteristic": "Beef/Acre",
"value": "5"
},
{
"characteristic": "High Mositure Corn",
"value": "3"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A642-18"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:26.516347+00:00",
"scraper_version": "0.1.0"
}
+104
View File
@@ -0,0 +1,104 @@
# A642-18
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 112
- **Traits:** SSPRIB TRCRIB TRC
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A642-18
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1376 |
| GDU to Black Layer | 2810 |
| Plant Height | Medium Tall |
| Ear Height | Medium |
| Kernel Texture | Medium |
| Ear Flex Index | 5 |
| Cob Color | Red |
| Nitrogen Utilization | Flexible |
| Harvest Timing | Normal |
| Foliar Fungicide Response | High |
| Fungicide Response Continuous Corn | High |
| Fungicide Response Corn Soybean Rotation | High |
| Green Snap Vulnerability | Moderate |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 3 |
| Emergence | 3 |
| Drought Tolerance | 4 |
| Drydown | 3 |
| Root Strength | 4 |
| Stalk Strength | 5 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 5 |
| Corn on Corn | 5 |
| No Till Adaptability | 3 |
| High Yielding Soils | 4 |
| Variable Soils | 5 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 5 |
| Poorly Drained Soils | 5 |
| High pH Soils | 4 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 4 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 4 |
| Sandy Loam | 4 |
| Sand | 4 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 2 |
| Anthracnose Stalk Rot | 5 |
| Physoderma Stalk Rot | 4 |
| SCLB | 5 |
| NCLB | 4 |
| Gray Leaf Spot | 2 |
| Goss's Wilt | 3 |
| Common Rust | 4 |
| Southern Rust | 3 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 4 |
| aNDF %DM | 5 |
| NDFd 30 Hr %NDF | 3 |
| uNDF 240 | 2 |
| % Starch | 5 |
| in situ Starch 7 Hr | 2 |
| TTNDFD | 2 |
| Milk/Acre | 3 |
| Beef/Acre | 5 |
| High Mositure Corn | 3 |
+312
View File
@@ -0,0 +1,312 @@
{
"source": "agrigold",
"source_key": "agrigold-a642-32",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A642-32",
"product_id": null,
"hybrid_prefix": "A642-32",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "112",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"VT2RIB CONV"
],
"trait_descriptions": [
"VT2RIB CONV"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1367"
},
{
"characteristic": "GDU to Black Layer",
"value": "2735"
},
{
"characteristic": "Plant Height",
"value": "Medium Tall"
},
{
"characteristic": "Ear Height",
"value": "Medium"
},
{
"characteristic": "Kernel Texture",
"value": "Hard"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "Crimson"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Late"
},
{
"characteristic": "Harvest Timing",
"value": "Normal"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "High"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "High"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "Moderate"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Low"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "5"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "5"
},
{
"characteristic": "Stalk Strength",
"value": "4"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "4"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "4"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "4"
},
{
"characteristic": "Poorly Drained Soils",
"value": "4"
},
{
"characteristic": "High pH Soils",
"value": "4"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "3"
},
{
"characteristic": "Clay Loam",
"value": "4"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "3"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "3"
},
{
"characteristic": "Goss's Wilt",
"value": "4"
},
{
"characteristic": "Common Rust",
"value": "3"
},
{
"characteristic": "Southern Rust",
"value": "3"
},
{
"characteristic": "Tar Spot",
"value": "4"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "5"
},
{
"characteristic": "aNDF %DM",
"value": "5"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "1"
},
{
"characteristic": "uNDF 240",
"value": "5"
},
{
"characteristic": "% Starch",
"value": "5"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "4"
},
{
"characteristic": "TTNDFD",
"value": "2"
},
{
"characteristic": "Milk/Acre",
"value": "3"
},
{
"characteristic": "Beef/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "2"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A642-32"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:27.321123+00:00",
"scraper_version": "0.1.0"
}
+104
View File
@@ -0,0 +1,104 @@
# A642-32
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 112
- **Traits:** VT2RIB CONV
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A642-32
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1367 |
| GDU to Black Layer | 2735 |
| Plant Height | Medium Tall |
| Ear Height | Medium |
| Kernel Texture | Hard |
| Ear Flex Index | 3 |
| Cob Color | Crimson |
| Nitrogen Utilization | Late |
| Harvest Timing | Normal |
| Foliar Fungicide Response | High |
| Fungicide Response Continuous Corn | High |
| Fungicide Response Corn Soybean Rotation | Moderate |
| Green Snap Vulnerability | Low |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 5 |
| Emergence | 4 |
| Drought Tolerance | 4 |
| Drydown | 4 |
| Root Strength | 5 |
| Stalk Strength | 4 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 4 |
| Narrow Row | 5 |
| Corn on Corn | 4 |
| No Till Adaptability | 4 |
| High Yielding Soils | 5 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 4 |
| Poorly Drained Soils | 4 |
| High pH Soils | 4 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 3 |
| Clay Loam | 4 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 3 |
| Physoderma Stalk Rot | 4 |
| SCLB | 4 |
| NCLB | 4 |
| Gray Leaf Spot | 3 |
| Goss's Wilt | 4 |
| Common Rust | 3 |
| Southern Rust | 3 |
| Tar Spot | 4 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 5 |
| aNDF %DM | 5 |
| NDFd 30 Hr %NDF | 1 |
| uNDF 240 | 5 |
| % Starch | 5 |
| in situ Starch 7 Hr | 4 |
| TTNDFD | 2 |
| Milk/Acre | 3 |
| Beef/Acre | 4 |
| High Mositure Corn | 2 |
+332
View File
@@ -0,0 +1,332 @@
{
"source": "agrigold",
"source_key": "agrigold-a642-76",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A642-76",
"product_id": null,
"hybrid_prefix": "A642-76",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "112",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"VT2RIB"
],
"trait_descriptions": [
"VT2RIB"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1368"
},
{
"characteristic": "GDU to Black Layer",
"value": "2797"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM"
},
{
"characteristic": "Kernel Texture",
"value": "HARD"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "LATE"
},
{
"characteristic": "Harvest Timing",
"value": "EARLY"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "MODERATE"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "MODERATE"
},
{
"characteristic": "Low Yield Environments",
"value": "VERY GOOD"
},
{
"characteristic": "High Yield Environments",
"value": "VERY GOOD"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "HORIZONTAL"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "5"
},
{
"characteristic": "Emergence",
"value": "3"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "5"
},
{
"characteristic": "Stalk Strength",
"value": "3"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "4"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "3"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "4"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "4"
},
{
"characteristic": "Poorly Drained Soils",
"value": "2"
},
{
"characteristic": "High pH Soils",
"value": "4"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "2"
},
{
"characteristic": "Clay Loam",
"value": "3"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "5"
},
{
"characteristic": "Sand",
"value": "4"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "3"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "3"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "1"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "4"
},
{
"characteristic": "Tar Spot",
"value": "4"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "NO"
},
{
"characteristic": "Dairy Silage Rating",
"value": "3"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "Crude Protein %DM",
"value": "3"
},
{
"characteristic": "aNDF %DM",
"value": "4"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "3"
},
{
"characteristic": "uNDF 240",
"value": "3"
},
{
"characteristic": "% Starch",
"value": "4"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "3"
},
{
"characteristic": "TTNDFD",
"value": "3"
},
{
"characteristic": "Milk/Ton",
"value": "4"
},
{
"characteristic": "Milk/Acre",
"value": "4"
},
{
"characteristic": "Beef/Acre",
"value": "3"
},
{
"characteristic": "High Mositure Corn",
"value": "4"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A642-76"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:28.490632+00:00",
"scraper_version": "0.1.0"
}
+109
View File
@@ -0,0 +1,109 @@
# A642-76
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 112
- **Traits:** VT2RIB
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A642-76
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1368 |
| GDU to Black Layer | 2797 |
| Plant Height | MEDIUM |
| Ear Height | MEDIUM |
| Kernel Texture | HARD |
| Ear Flex Index | 3 |
| Cob Color | RED |
| Nitrogen Utilization | LATE |
| Harvest Timing | EARLY |
| Foliar Fungicide Response | HIGH |
| Fungicide Response Continuous Corn | MODERATE |
| Fungicide Response Corn Soybean Rotation | MODERATE |
| Green Snap Vulnerability | MODERATE |
| Low Yield Environments | VERY GOOD |
| High Yield Environments | VERY GOOD |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | HORIZONTAL |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 5 |
| Emergence | 3 |
| Drought Tolerance | 4 |
| Drydown | 4 |
| Root Strength | 5 |
| Stalk Strength | 3 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 4 |
| Narrow Row | 5 |
| Corn on Corn | 3 |
| No Till Adaptability | 4 |
| High Yielding Soils | 4 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 4 |
| Poorly Drained Soils | 2 |
| High pH Soils | 4 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 2 |
| Clay Loam | 3 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 5 |
| Sand | 4 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 3 |
| Physoderma Stalk Rot | 4 |
| SCLB | 4 |
| NCLB | 3 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 1 |
| Common Rust | 4 |
| Southern Rust | 4 |
| Tar Spot | 4 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | NO |
| Dairy Silage Rating | 3 |
| Dry Tons/Acre | 4 |
| Crude Protein %DM | 3 |
| aNDF %DM | 4 |
| NDFd 30 Hr %NDF | 3 |
| uNDF 240 | 3 |
| % Starch | 4 |
| in situ Starch 7 Hr | 3 |
| TTNDFD | 3 |
| Milk/Ton | 4 |
| Milk/Acre | 4 |
| Beef/Acre | 3 |
| High Mositure Corn | 4 |
+332
View File
@@ -0,0 +1,332 @@
{
"source": "agrigold",
"source_key": "agrigold-a642-99wx",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A642-99WX",
"product_id": null,
"hybrid_prefix": "A642-99WX",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "112",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"WX"
],
"trait_descriptions": [
"WX"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1362"
},
{
"characteristic": "GDU to Black Layer",
"value": "2800"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM SHORT"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM"
},
{
"characteristic": "Kernel Texture",
"value": "HARD"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "LATE"
},
{
"characteristic": "Harvest Timing",
"value": "NORMAL"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "MODERATE"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "HIGH"
},
{
"characteristic": "Low Yield Environments",
"value": "VERY GOOD"
},
{
"characteristic": "High Yield Environments",
"value": "EXCELLENT"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "FIBROUS"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "5"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "5"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "4"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "4"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "5"
},
{
"characteristic": "Low Yielding Soils",
"value": "4"
},
{
"characteristic": "Poorly Drained Soils",
"value": "3"
},
{
"characteristic": "High pH Soils",
"value": "5"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "4"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "5"
},
{
"characteristic": "Sand",
"value": "5"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "3"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "3"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "3"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "3"
},
{
"characteristic": "Goss's Wilt",
"value": "2"
},
{
"characteristic": "Common Rust",
"value": "3"
},
{
"characteristic": "Southern Rust",
"value": "2"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "NO"
},
{
"characteristic": "Dairy Silage Rating",
"value": "NA"
},
{
"characteristic": "Dry Tons/Acre",
"value": "NA"
},
{
"characteristic": "Crude Protein %DM",
"value": "NA"
},
{
"characteristic": "aNDF %DM",
"value": "NA"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "NA"
},
{
"characteristic": "uNDF 240",
"value": "NA"
},
{
"characteristic": "% Starch",
"value": "NA"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "NA"
},
{
"characteristic": "TTNDFD",
"value": "NA"
},
{
"characteristic": "Milk/Ton",
"value": "NA"
},
{
"characteristic": "Milk/Acre",
"value": "NA"
},
{
"characteristic": "Beef/Acre",
"value": "NA"
},
{
"characteristic": "High Mositure Corn",
"value": "NA"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A642-99WX"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:29.481252+00:00",
"scraper_version": "0.1.0"
}
+109
View File
@@ -0,0 +1,109 @@
# A642-99WX
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 112
- **Traits:** WX
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A642-99WX
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1362 |
| GDU to Black Layer | 2800 |
| Plant Height | MEDIUM SHORT |
| Ear Height | MEDIUM |
| Kernel Texture | HARD |
| Ear Flex Index | 3 |
| Cob Color | RED |
| Nitrogen Utilization | LATE |
| Harvest Timing | NORMAL |
| Foliar Fungicide Response | HIGH |
| Fungicide Response Continuous Corn | HIGH |
| Fungicide Response Corn Soybean Rotation | MODERATE |
| Green Snap Vulnerability | HIGH |
| Low Yield Environments | VERY GOOD |
| High Yield Environments | EXCELLENT |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | FIBROUS |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 5 |
| Emergence | 4 |
| Drought Tolerance | 5 |
| Drydown | 4 |
| Root Strength | 4 |
| Stalk Strength | 4 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 5 |
| Corn on Corn | 4 |
| No Till Adaptability | 4 |
| High Yielding Soils | 5 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 5 |
| Low Yielding Soils | 4 |
| Poorly Drained Soils | 3 |
| High pH Soils | 5 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 4 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 5 |
| Sand | 5 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 3 |
| Anthracnose Stalk Rot | 3 |
| Physoderma Stalk Rot | 3 |
| SCLB | 4 |
| NCLB | 4 |
| Gray Leaf Spot | 3 |
| Goss's Wilt | 2 |
| Common Rust | 3 |
| Southern Rust | 2 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | NO |
| Dairy Silage Rating | NA |
| Dry Tons/Acre | NA |
| Crude Protein %DM | NA |
| aNDF %DM | NA |
| NDFd 30 Hr %NDF | NA |
| uNDF 240 | NA |
| % Starch | NA |
| in situ Starch 7 Hr | NA |
| TTNDFD | NA |
| Milk/Ton | NA |
| Milk/Acre | NA |
| Beef/Acre | NA |
| High Mositure Corn | NA |
+332
View File
@@ -0,0 +1,332 @@
{
"source": "agrigold",
"source_key": "agrigold-a643-01wx",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A643-01WX",
"product_id": null,
"hybrid_prefix": "A643-01WX",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "113",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"WX"
],
"trait_descriptions": [
"WX"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1415"
},
{
"characteristic": "GDU to Black Layer",
"value": "2833"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM TALL"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM HARD"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "LATE"
},
{
"characteristic": "Harvest Timing",
"value": "NORMAL"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "HIGH"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "MODERATE"
},
{
"characteristic": "Low Yield Environments",
"value": "VERY GOOD"
},
{
"characteristic": "High Yield Environments",
"value": "EXCELLENT"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "FIBROUS"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "5"
},
{
"characteristic": "Stalk Strength",
"value": "4"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "5"
},
{
"characteristic": "No Till Adaptability",
"value": "5"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "4"
},
{
"characteristic": "Poorly Drained Soils",
"value": "5"
},
{
"characteristic": "High pH Soils",
"value": "4"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "5"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "4"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "3"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "1"
},
{
"characteristic": "SCLB",
"value": "2"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "3"
},
{
"characteristic": "Goss's Wilt",
"value": "2"
},
{
"characteristic": "Common Rust",
"value": "3"
},
{
"characteristic": "Southern Rust",
"value": "2"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "NO"
},
{
"characteristic": "Dairy Silage Rating",
"value": "NA"
},
{
"characteristic": "Dry Tons/Acre",
"value": "NA"
},
{
"characteristic": "Crude Protein %DM",
"value": "NA"
},
{
"characteristic": "aNDF %DM",
"value": "NA"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "NA"
},
{
"characteristic": "uNDF 240",
"value": "NA"
},
{
"characteristic": "% Starch",
"value": "NA"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "NA"
},
{
"characteristic": "TTNDFD",
"value": "NA"
},
{
"characteristic": "Milk/Ton",
"value": "NA"
},
{
"characteristic": "Milk/Acre",
"value": "NA"
},
{
"characteristic": "Beef/Acre",
"value": "NA"
},
{
"characteristic": "High Mositure Corn",
"value": "NA"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A643-01WX"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:30.474813+00:00",
"scraper_version": "0.1.0"
}
+109
View File
@@ -0,0 +1,109 @@
# A643-01WX
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 113
- **Traits:** WX
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A643-01WX
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1415 |
| GDU to Black Layer | 2833 |
| Plant Height | MEDIUM TALL |
| Ear Height | MEDIUM |
| Kernel Texture | MEDIUM HARD |
| Ear Flex Index | 3 |
| Cob Color | RED |
| Nitrogen Utilization | LATE |
| Harvest Timing | NORMAL |
| Foliar Fungicide Response | HIGH |
| Fungicide Response Continuous Corn | HIGH |
| Fungicide Response Corn Soybean Rotation | HIGH |
| Green Snap Vulnerability | MODERATE |
| Low Yield Environments | VERY GOOD |
| High Yield Environments | EXCELLENT |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | UPRIGHT |
| Root Type | FIBROUS |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 4 |
| Drought Tolerance | 4 |
| Drydown | 4 |
| Root Strength | 5 |
| Stalk Strength | 4 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 5 |
| Corn on Corn | 5 |
| No Till Adaptability | 5 |
| High Yielding Soils | 5 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 4 |
| Poorly Drained Soils | 5 |
| High pH Soils | 4 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 5 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 4 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 3 |
| Physoderma Stalk Rot | 1 |
| SCLB | 2 |
| NCLB | 4 |
| Gray Leaf Spot | 3 |
| Goss's Wilt | 2 |
| Common Rust | 3 |
| Southern Rust | 2 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | NO |
| Dairy Silage Rating | NA |
| Dry Tons/Acre | NA |
| Crude Protein %DM | NA |
| aNDF %DM | NA |
| NDFd 30 Hr %NDF | NA |
| uNDF 240 | NA |
| % Starch | NA |
| in situ Starch 7 Hr | NA |
| TTNDFD | NA |
| Milk/Ton | NA |
| Milk/Acre | NA |
| Beef/Acre | NA |
| High Mositure Corn | NA |
+324
View File
@@ -0,0 +1,324 @@
{
"source": "agrigold",
"source_key": "agrigold-a643-17w",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A643-17W",
"product_id": null,
"hybrid_prefix": "A643-17W",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "113",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"WHITE"
],
"trait_descriptions": [
"WHITE"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1375"
},
{
"characteristic": "GDU to Black Layer",
"value": "2812"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM TALL"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM HIGH"
},
{
"characteristic": "Kernel Texture",
"value": "HARD"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "WHITE"
},
{
"characteristic": "Nitrogen Utilization",
"value": "LATE"
},
{
"characteristic": "Harvest Timing",
"value": "NORMAL"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "HIGH"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "LOW"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "LENGTH"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "COARSE"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "5"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "2"
},
{
"characteristic": "Stalk Strength",
"value": "3"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "4"
},
{
"characteristic": "Corn on Corn",
"value": "3"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "4"
},
{
"characteristic": "Variable Soils",
"value": "3"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "3"
},
{
"characteristic": "Poorly Drained Soils",
"value": "2"
},
{
"characteristic": "High pH Soils",
"value": "NA"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "3"
},
{
"characteristic": "Clay Loam",
"value": "4"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "3"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "NA"
},
{
"characteristic": "SCLB",
"value": "3"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "4"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "4"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "NO"
},
{
"characteristic": "Dairy Silage Rating",
"value": "NA"
},
{
"characteristic": "Dry Tons/Acre",
"value": "NA"
},
{
"characteristic": "Crude Protein %DM",
"value": "NA"
},
{
"characteristic": "aNDF %DM",
"value": "NA"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "NA"
},
{
"characteristic": "uNDF 240",
"value": "NA"
},
{
"characteristic": "% Starch",
"value": "NA"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "NA"
},
{
"characteristic": "TTNDFD",
"value": "NA"
},
{
"characteristic": "Milk/Ton",
"value": "NA"
},
{
"characteristic": "Milk/Acre",
"value": "NA"
},
{
"characteristic": "Beef/Acre",
"value": "NA"
},
{
"characteristic": "High Mositure Corn",
"value": "NA"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A643-17W"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:31.534960+00:00",
"scraper_version": "0.1.0"
}
+107
View File
@@ -0,0 +1,107 @@
# A643-17W
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 113
- **Traits:** WHITE
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A643-17W
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1375 |
| GDU to Black Layer | 2812 |
| Plant Height | MEDIUM TALL |
| Ear Height | MEDIUM HIGH |
| Kernel Texture | HARD |
| Ear Flex Index | 3 |
| Cob Color | WHITE |
| Nitrogen Utilization | LATE |
| Harvest Timing | NORMAL |
| Foliar Fungicide Response | HIGH |
| Fungicide Response Continuous Corn | HIGH |
| Fungicide Response Corn Soybean Rotation | HIGH |
| Green Snap Vulnerability | LOW |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | LENGTH |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | COARSE |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 5 |
| Emergence | 4 |
| Drought Tolerance | 4 |
| Drydown | 4 |
| Root Strength | 2 |
| Stalk Strength | 3 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 4 |
| Corn on Corn | 3 |
| No Till Adaptability | 4 |
| High Yielding Soils | 4 |
| Variable Soils | 3 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 3 |
| Poorly Drained Soils | 2 |
| High pH Soils | NA |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 3 |
| Clay Loam | 4 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 3 |
| Physoderma Stalk Rot | NA |
| SCLB | 3 |
| NCLB | 4 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 4 |
| Common Rust | 4 |
| Southern Rust | 4 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | NO |
| Dairy Silage Rating | NA |
| Dry Tons/Acre | NA |
| Crude Protein %DM | NA |
| aNDF %DM | NA |
| NDFd 30 Hr %NDF | NA |
| uNDF 240 | NA |
| % Starch | NA |
| in situ Starch 7 Hr | NA |
| TTNDFD | NA |
| Milk/Ton | NA |
| Milk/Acre | NA |
| Beef/Acre | NA |
| High Mositure Corn | NA |
+324
View File
@@ -0,0 +1,324 @@
{
"source": "agrigold",
"source_key": "agrigold-a643-52",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A643-52",
"product_id": null,
"hybrid_prefix": "A643-52",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "113",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"STXRIB VT2RIB VT2PRO"
],
"trait_descriptions": [
"STXRIB VT2RIB VT2PRO"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1463"
},
{
"characteristic": "GDU to Black Layer",
"value": "2820"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM HIGH"
},
{
"characteristic": "Kernel Texture",
"value": "HARD"
},
{
"characteristic": "Ear Flex Index",
"value": "3"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "FLEXIBLE"
},
{
"characteristic": "Harvest Timing",
"value": "EARLY"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "HIGH, NF=M"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "HIGH"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "MODERATE"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "COARSE"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "5"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "5"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "3"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "4"
},
{
"characteristic": "No Till Adaptability",
"value": "5"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "5"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "5"
},
{
"characteristic": "Low Yielding Soils",
"value": "5"
},
{
"characteristic": "Poorly Drained Soils",
"value": "4"
},
{
"characteristic": "High pH Soils",
"value": "5"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "4"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "5"
},
{
"characteristic": "Sand",
"value": "5"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "3"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "3"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "2"
},
{
"characteristic": "Common Rust",
"value": "5"
},
{
"characteristic": "Southern Rust",
"value": "4"
},
{
"characteristic": "Tar Spot",
"value": "4"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "YES"
},
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "Crude Protein %DM",
"value": "3"
},
{
"characteristic": "aNDF %DM",
"value": "5"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "3"
},
{
"characteristic": "uNDF 240",
"value": "2"
},
{
"characteristic": "% Starch",
"value": "4"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "4"
},
{
"characteristic": "TTNDFD",
"value": "3"
},
{
"characteristic": "Milk/Ton",
"value": "4"
},
{
"characteristic": "Milk/Acre",
"value": "4"
},
{
"characteristic": "Beef/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "3"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A643-52"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:32.459257+00:00",
"scraper_version": "0.1.0"
}
+107
View File
@@ -0,0 +1,107 @@
# A643-52
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 113
- **Traits:** STXRIB VT2RIB VT2PRO
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A643-52
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1463 |
| GDU to Black Layer | 2820 |
| Plant Height | MEDIUM |
| Ear Height | MEDIUM HIGH |
| Kernel Texture | HARD |
| Ear Flex Index | 3 |
| Cob Color | RED |
| Nitrogen Utilization | FLEXIBLE |
| Harvest Timing | EARLY |
| Foliar Fungicide Response | HIGH, NF=M |
| Fungicide Response Continuous Corn | HIGH |
| Fungicide Response Corn Soybean Rotation | HIGH |
| Green Snap Vulnerability | MODERATE |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | COARSE |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 5 |
| Emergence | 4 |
| Drought Tolerance | 5 |
| Drydown | 4 |
| Root Strength | 4 |
| Stalk Strength | 3 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 5 |
| Corn on Corn | 4 |
| No Till Adaptability | 5 |
| High Yielding Soils | 5 |
| Variable Soils | 5 |
| Drought Prone/Sandy Soils | 5 |
| Low Yielding Soils | 5 |
| Poorly Drained Soils | 4 |
| High pH Soils | 5 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 4 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 5 |
| Sand | 5 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 3 |
| Physoderma Stalk Rot | 4 |
| SCLB | 4 |
| NCLB | 3 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 2 |
| Common Rust | 5 |
| Southern Rust | 4 |
| Tar Spot | 4 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | YES |
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 4 |
| Crude Protein %DM | 3 |
| aNDF %DM | 5 |
| NDFd 30 Hr %NDF | 3 |
| uNDF 240 | 2 |
| % Starch | 4 |
| in situ Starch 7 Hr | 4 |
| TTNDFD | 3 |
| Milk/Ton | 4 |
| Milk/Acre | 4 |
| Beef/Acre | 4 |
| High Mositure Corn | 3 |
+332
View File
@@ -0,0 +1,332 @@
{
"source": "agrigold",
"source_key": "agrigold-a644-15wx",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A644-15WX",
"product_id": null,
"hybrid_prefix": "A644-15WX",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "114",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"WX"
],
"trait_descriptions": [
"WX"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1495"
},
{
"characteristic": "GDU to Black Layer",
"value": "2838"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM TALL"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM"
},
{
"characteristic": "Ear Flex Index",
"value": "5"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "FLEXIBLE"
},
{
"characteristic": "Harvest Timing",
"value": "NORMAL"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "MODERATE"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "LOW"
},
{
"characteristic": "Low Yield Environments",
"value": "VERY GOOD"
},
{
"characteristic": "High Yield Environments",
"value": "EXCELLENT"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "HORIZONTAL"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "3"
},
{
"characteristic": "Emergence",
"value": "5"
},
{
"characteristic": "Drought Tolerance",
"value": "2"
},
{
"characteristic": "Drydown",
"value": "3"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "5"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "5"
},
{
"characteristic": "No Till Adaptability",
"value": "5"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "2"
},
{
"characteristic": "Low Yielding Soils",
"value": "4"
},
{
"characteristic": "Poorly Drained Soils",
"value": "3"
},
{
"characteristic": "High pH Soils",
"value": "4"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "4"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "2"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "4"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "5"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "5"
},
{
"characteristic": "Goss's Wilt",
"value": "5"
},
{
"characteristic": "Common Rust",
"value": "3"
},
{
"characteristic": "Southern Rust",
"value": "2"
},
{
"characteristic": "Tar Spot",
"value": "4"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "NO"
},
{
"characteristic": "Dairy Silage Rating",
"value": "NA"
},
{
"characteristic": "Dry Tons/Acre",
"value": "NA"
},
{
"characteristic": "Crude Protein %DM",
"value": "NA"
},
{
"characteristic": "aNDF %DM",
"value": "NA"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "NA"
},
{
"characteristic": "uNDF 240",
"value": "NA"
},
{
"characteristic": "% Starch",
"value": "NA"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "NA"
},
{
"characteristic": "TTNDFD",
"value": "NA"
},
{
"characteristic": "Milk/Ton",
"value": "NA"
},
{
"characteristic": "Milk/Acre",
"value": "NA"
},
{
"characteristic": "Beef/Acre",
"value": "NA"
},
{
"characteristic": "High Mositure Corn",
"value": "NA"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A644-15WX"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:33.480162+00:00",
"scraper_version": "0.1.0"
}
+109
View File
@@ -0,0 +1,109 @@
# A644-15WX
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 114
- **Traits:** WX
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A644-15WX
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1495 |
| GDU to Black Layer | 2838 |
| Plant Height | MEDIUM TALL |
| Ear Height | MEDIUM |
| Kernel Texture | MEDIUM |
| Ear Flex Index | 5 |
| Cob Color | RED |
| Nitrogen Utilization | FLEXIBLE |
| Harvest Timing | NORMAL |
| Foliar Fungicide Response | MODERATE |
| Fungicide Response Continuous Corn | MODERATE |
| Fungicide Response Corn Soybean Rotation | MODERATE |
| Green Snap Vulnerability | LOW |
| Low Yield Environments | VERY GOOD |
| High Yield Environments | EXCELLENT |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | HORIZONTAL |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 3 |
| Emergence | 5 |
| Drought Tolerance | 2 |
| Drydown | 3 |
| Root Strength | 4 |
| Stalk Strength | 5 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 5 |
| Corn on Corn | 5 |
| No Till Adaptability | 5 |
| High Yielding Soils | 5 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 2 |
| Low Yielding Soils | 4 |
| Poorly Drained Soils | 3 |
| High pH Soils | 4 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 4 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 2 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 4 |
| Physoderma Stalk Rot | 4 |
| SCLB | 5 |
| NCLB | 4 |
| Gray Leaf Spot | 5 |
| Goss's Wilt | 5 |
| Common Rust | 3 |
| Southern Rust | 2 |
| Tar Spot | 4 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | NO |
| Dairy Silage Rating | NA |
| Dry Tons/Acre | NA |
| Crude Protein %DM | NA |
| aNDF %DM | NA |
| NDFd 30 Hr %NDF | NA |
| uNDF 240 | NA |
| % Starch | NA |
| in situ Starch 7 Hr | NA |
| TTNDFD | NA |
| Milk/Ton | NA |
| Milk/Acre | NA |
| Beef/Acre | NA |
| High Mositure Corn | NA |
+332
View File
@@ -0,0 +1,332 @@
{
"source": "agrigold",
"source_key": "agrigold-a644-19",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A644-19",
"product_id": null,
"hybrid_prefix": "A644-19",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "114",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"CONV"
],
"trait_descriptions": [
"CONV"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1392"
},
{
"characteristic": "GDU to Black Layer",
"value": "2845"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM TALL"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM HARD"
},
{
"characteristic": "Ear Flex Index",
"value": "1"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "FLEXIBLE"
},
{
"characteristic": "Harvest Timing",
"value": "LATE"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "HIGH"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "LOW"
},
{
"characteristic": "Low Yield Environments",
"value": "VERY GOOD"
},
{
"characteristic": "High Yield Environments",
"value": "VERY GOOD"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "3"
},
{
"characteristic": "Root Strength",
"value": "5"
},
{
"characteristic": "Stalk Strength",
"value": "5"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "4"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "4"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "4"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "4"
},
{
"characteristic": "Poorly Drained Soils",
"value": "2"
},
{
"characteristic": "High pH Soils",
"value": "2"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "3"
},
{
"characteristic": "Clay Loam",
"value": "4"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "3"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "4"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "4"
},
{
"characteristic": "SCLB",
"value": "3"
},
{
"characteristic": "NCLB",
"value": "2"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "3"
},
{
"characteristic": "Common Rust",
"value": "3"
},
{
"characteristic": "Southern Rust",
"value": "2"
},
{
"characteristic": "Tar Spot",
"value": "4"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "YES"
},
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "Crude Protein %DM",
"value": "3.75"
},
{
"characteristic": "aNDF %DM",
"value": "3"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "3.15"
},
{
"characteristic": "uNDF 240",
"value": "3"
},
{
"characteristic": "% Starch",
"value": "3.75"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "4"
},
{
"characteristic": "TTNDFD",
"value": "4"
},
{
"characteristic": "Milk/Ton",
"value": "3"
},
{
"characteristic": "Milk/Acre",
"value": "3.5"
},
{
"characteristic": "Beef/Acre",
"value": "3.5"
},
{
"characteristic": "High Mositure Corn",
"value": "4"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A644-19"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:34.465085+00:00",
"scraper_version": "0.1.0"
}
+109
View File
@@ -0,0 +1,109 @@
# A644-19
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 114
- **Traits:** CONV
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A644-19
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1392 |
| GDU to Black Layer | 2845 |
| Plant Height | MEDIUM TALL |
| Ear Height | MEDIUM |
| Kernel Texture | MEDIUM HARD |
| Ear Flex Index | 1 |
| Cob Color | RED |
| Nitrogen Utilization | FLEXIBLE |
| Harvest Timing | LATE |
| Foliar Fungicide Response | HIGH |
| Fungicide Response Continuous Corn | HIGH |
| Fungicide Response Corn Soybean Rotation | HIGH |
| Green Snap Vulnerability | LOW |
| Low Yield Environments | VERY GOOD |
| High Yield Environments | VERY GOOD |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 4 |
| Drought Tolerance | 4 |
| Drydown | 3 |
| Root Strength | 5 |
| Stalk Strength | 5 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 4 |
| Narrow Row | 5 |
| Corn on Corn | 4 |
| No Till Adaptability | 4 |
| High Yielding Soils | 4 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 4 |
| Poorly Drained Soils | 2 |
| High pH Soils | 2 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 3 |
| Clay Loam | 4 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 3 |
| Anthracnose Stalk Rot | 4 |
| Physoderma Stalk Rot | 4 |
| SCLB | 3 |
| NCLB | 2 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 3 |
| Common Rust | 3 |
| Southern Rust | 2 |
| Tar Spot | 4 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | YES |
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 4 |
| Crude Protein %DM | 3.75 |
| aNDF %DM | 3 |
| NDFd 30 Hr %NDF | 3.15 |
| uNDF 240 | 3 |
| % Starch | 3.75 |
| in situ Starch 7 Hr | 4 |
| TTNDFD | 4 |
| Milk/Ton | 3 |
| Milk/Acre | 3.5 |
| Beef/Acre | 3.5 |
| High Mositure Corn | 4 |
+324
View File
@@ -0,0 +1,324 @@
{
"source": "agrigold",
"source_key": "agrigold-a644-27w",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A644-27W",
"product_id": null,
"hybrid_prefix": "A644-27W",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "114",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"WHITE"
],
"trait_descriptions": [
"WHITE"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1350"
},
{
"characteristic": "GDU to Black Layer",
"value": "2850"
},
{
"characteristic": "Plant Height",
"value": "MEDIUM TALL"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM"
},
{
"characteristic": "Kernel Texture",
"value": "HARD"
},
{
"characteristic": "Ear Flex Index",
"value": "5"
},
{
"characteristic": "Cob Color",
"value": "WHITE"
},
{
"characteristic": "Nitrogen Utilization",
"value": "LATE"
},
{
"characteristic": "Harvest Timing",
"value": "NORMAL"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "HIGH"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "HIGH"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "LOW"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "5"
},
{
"characteristic": "Emergence",
"value": "5"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "4"
},
{
"characteristic": "Root Strength",
"value": "3"
},
{
"characteristic": "Stalk Strength",
"value": "4"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "3"
},
{
"characteristic": "Corn on Corn",
"value": "3"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "3"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "3"
},
{
"characteristic": "Poorly Drained Soils",
"value": "3"
},
{
"characteristic": "High pH Soils",
"value": "NA"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "3"
},
{
"characteristic": "Clay Loam",
"value": "4"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "3"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "3"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "NA"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "5"
},
{
"characteristic": "Goss's Wilt",
"value": "4"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "4"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Silage Select",
"value": "NO"
},
{
"characteristic": "Dairy Silage Rating",
"value": "NA"
},
{
"characteristic": "Dry Tons/Acre",
"value": "NA"
},
{
"characteristic": "Crude Protein %DM",
"value": "NA"
},
{
"characteristic": "aNDF %DM",
"value": "NA"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "NA"
},
{
"characteristic": "uNDF 240",
"value": "NA"
},
{
"characteristic": "% Starch",
"value": "NA"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "NA"
},
{
"characteristic": "TTNDFD",
"value": "NA"
},
{
"characteristic": "Milk/Ton",
"value": "NA"
},
{
"characteristic": "Milk/Acre",
"value": "NA"
},
{
"characteristic": "Beef/Acre",
"value": "NA"
},
{
"characteristic": "High Mositure Corn",
"value": "NA"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A644-27W"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:35.456367+00:00",
"scraper_version": "0.1.0"
}
+107
View File
@@ -0,0 +1,107 @@
# A644-27W
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 114
- **Traits:** WHITE
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A644-27W
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1350 |
| GDU to Black Layer | 2850 |
| Plant Height | MEDIUM TALL |
| Ear Height | MEDIUM |
| Kernel Texture | HARD |
| Ear Flex Index | 5 |
| Cob Color | WHITE |
| Nitrogen Utilization | LATE |
| Harvest Timing | NORMAL |
| Foliar Fungicide Response | HIGH |
| Fungicide Response Continuous Corn | HIGH |
| Fungicide Response Corn Soybean Rotation | HIGH |
| Green Snap Vulnerability | LOW |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 5 |
| Emergence | 5 |
| Drought Tolerance | 4 |
| Drydown | 4 |
| Root Strength | 3 |
| Stalk Strength | 4 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 3 |
| Corn on Corn | 3 |
| No Till Adaptability | 4 |
| High Yielding Soils | 5 |
| Variable Soils | 3 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 3 |
| Poorly Drained Soils | 3 |
| High pH Soils | NA |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 3 |
| Clay Loam | 4 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 3 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 3 |
| Physoderma Stalk Rot | NA |
| SCLB | 4 |
| NCLB | 4 |
| Gray Leaf Spot | 5 |
| Goss's Wilt | 4 |
| Common Rust | 4 |
| Southern Rust | 4 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Silage Select | NO |
| Dairy Silage Rating | NA |
| Dry Tons/Acre | NA |
| Crude Protein %DM | NA |
| aNDF %DM | NA |
| NDFd 30 Hr %NDF | NA |
| uNDF 240 | NA |
| % Starch | NA |
| in situ Starch 7 Hr | NA |
| TTNDFD | NA |
| Milk/Ton | NA |
| Milk/Acre | NA |
| Beef/Acre | NA |
| High Mositure Corn | NA |
+320
View File
@@ -0,0 +1,320 @@
{
"source": "agrigold",
"source_key": "agrigold-a644-64",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A644-64",
"product_id": null,
"hybrid_prefix": "A644-64",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "114",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"VT2RIB VT2PRO"
],
"trait_descriptions": [
"VT2RIB VT2PRO"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1406"
},
{
"characteristic": "GDU to Black Layer",
"value": "2855"
},
{
"characteristic": "Plant Height",
"value": "Medium Tall"
},
{
"characteristic": "Ear Height",
"value": "Medium"
},
{
"characteristic": "Kernel Texture",
"value": "Medium Hard"
},
{
"characteristic": "Ear Flex Index",
"value": "5"
},
{
"characteristic": "Cob Color",
"value": "Red"
},
{
"characteristic": "Nitrogen Utilization",
"value": "Flexible"
},
{
"characteristic": "Harvest Timing",
"value": "Normal"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "High"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "High"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "High"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "Low"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "MODIFIED"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "4"
},
{
"characteristic": "Emergence",
"value": "5"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "5"
},
{
"characteristic": "Root Strength",
"value": "4"
},
{
"characteristic": "Stalk Strength",
"value": "3"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "4"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "4"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "4"
},
{
"characteristic": "Poorly Drained Soils",
"value": "4"
},
{
"characteristic": "High pH Soils",
"value": "5"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "4"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "5"
},
{
"characteristic": "Sand",
"value": "4"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "3"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "3"
},
{
"characteristic": "SCLB",
"value": "4"
},
{
"characteristic": "NCLB",
"value": "4"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "4"
},
{
"characteristic": "Common Rust",
"value": "4"
},
{
"characteristic": "Southern Rust",
"value": "2"
},
{
"characteristic": "Tar Spot",
"value": "3"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "3"
},
{
"characteristic": "Dry Tons/Acre",
"value": "4"
},
{
"characteristic": "Crude Protein %DM",
"value": "3"
},
{
"characteristic": "aNDF %DM",
"value": "2"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "2"
},
{
"characteristic": "uNDF 240",
"value": "2"
},
{
"characteristic": "% Starch",
"value": "4"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "2"
},
{
"characteristic": "TTNDFD",
"value": "3"
},
{
"characteristic": "Milk/Ton",
"value": "4"
},
{
"characteristic": "Milk/Acre",
"value": "5"
},
{
"characteristic": "Beef/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "4"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A644-64"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:36.498796+00:00",
"scraper_version": "0.1.0"
}
+106
View File
@@ -0,0 +1,106 @@
# A644-64
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 114
- **Traits:** VT2RIB VT2PRO
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A644-64
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1406 |
| GDU to Black Layer | 2855 |
| Plant Height | Medium Tall |
| Ear Height | Medium |
| Kernel Texture | Medium Hard |
| Ear Flex Index | 5 |
| Cob Color | Red |
| Nitrogen Utilization | Flexible |
| Harvest Timing | Normal |
| Foliar Fungicide Response | High |
| Fungicide Response Continuous Corn | High |
| Fungicide Response Corn Soybean Rotation | High |
| Green Snap Vulnerability | Low |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | UPRIGHT |
| Root Type | MODIFIED |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 4 |
| Emergence | 5 |
| Drought Tolerance | 4 |
| Drydown | 5 |
| Root Strength | 4 |
| Stalk Strength | 3 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 5 |
| Corn on Corn | 4 |
| No Till Adaptability | 4 |
| High Yielding Soils | 5 |
| Variable Soils | 4 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 4 |
| Poorly Drained Soils | 4 |
| High pH Soils | 5 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 4 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 5 |
| Sand | 4 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 3 |
| Physoderma Stalk Rot | 3 |
| SCLB | 4 |
| NCLB | 4 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 4 |
| Common Rust | 4 |
| Southern Rust | 2 |
| Tar Spot | 3 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 3 |
| Dry Tons/Acre | 4 |
| Crude Protein %DM | 3 |
| aNDF %DM | 2 |
| NDFd 30 Hr %NDF | 2 |
| uNDF 240 | 2 |
| % Starch | 4 |
| in situ Starch 7 Hr | 2 |
| TTNDFD | 3 |
| Milk/Ton | 4 |
| Milk/Acre | 5 |
| Beef/Acre | 4 |
| High Mositure Corn | 4 |
+312
View File
@@ -0,0 +1,312 @@
{
"source": "agrigold",
"source_key": "agrigold-a645-16",
"vendor": "AgReliant Genetics",
"brand": "AgriGold",
"product_name": "A645-16",
"product_id": null,
"hybrid_prefix": "A645-16",
"hybrid_suffix": null,
"crop": "corn",
"release_year": null,
"relative_maturity": "115",
"maturity_group": null,
"wheat_class": null,
"trait_stack": [
"STXRIB VT2RIB VT2PRO CONV"
],
"trait_descriptions": [
"STXRIB VT2RIB VT2PRO CONV"
],
"positioning_statement": null,
"strengths": [],
"characteristics_groups": [
{
"label": "PRODUCT FEATURES",
"type": "scale-or-value",
"items": [
{
"characteristic": "GDU to Mid Pollen",
"value": "1480"
},
{
"characteristic": "GDU to Black Layer",
"value": "2850"
},
{
"characteristic": "Plant Height",
"value": "TALL"
},
{
"characteristic": "Ear Height",
"value": "MEDIUM HIGH"
},
{
"characteristic": "Kernel Texture",
"value": "MEDIUM HARD"
},
{
"characteristic": "Ear Flex Index",
"value": "5"
},
{
"characteristic": "Cob Color",
"value": "RED"
},
{
"characteristic": "Nitrogen Utilization",
"value": "LATE"
},
{
"characteristic": "Harvest Timing",
"value": "LATE"
},
{
"characteristic": "Foliar Fungicide Response",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Continuous Corn",
"value": "MODERATE"
},
{
"characteristic": "Fungicide Response Corn Soybean Rotation",
"value": "LOW"
},
{
"characteristic": "Green Snap Vulnerability",
"value": "HIGH"
}
]
},
{
"label": "PLANT CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Ear Flex Type",
"value": "KERNEL"
},
{
"characteristic": "Leaf Orientation",
"value": "SEMI UPRIGHT"
},
{
"characteristic": "Root Type",
"value": "FIBROUS"
}
]
},
{
"label": "AGRONOMIC RATING",
"type": "scale-or-value",
"items": [
{
"characteristic": "Test Weight",
"value": "5"
},
{
"characteristic": "Emergence",
"value": "4"
},
{
"characteristic": "Drought Tolerance",
"value": "4"
},
{
"characteristic": "Drydown",
"value": "3"
},
{
"characteristic": "Root Strength",
"value": "5"
},
{
"characteristic": "Stalk Strength",
"value": "5"
}
]
},
{
"label": "PLANTING APPLICATIONS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Irrigation",
"value": "5"
},
{
"characteristic": "Narrow Row",
"value": "5"
},
{
"characteristic": "Corn on Corn",
"value": "4"
},
{
"characteristic": "No Till Adaptability",
"value": "4"
},
{
"characteristic": "High Yielding Soils",
"value": "5"
},
{
"characteristic": "Variable Soils",
"value": "5"
},
{
"characteristic": "Drought Prone/Sandy Soils",
"value": "4"
},
{
"characteristic": "Low Yielding Soils",
"value": "5"
},
{
"characteristic": "Poorly Drained Soils",
"value": "4"
},
{
"characteristic": "High pH Soils",
"value": "5"
}
]
},
{
"label": "SOIL ADAPTABILITY",
"type": "scale-or-value",
"items": [
{
"characteristic": "Clay",
"value": "5"
},
{
"characteristic": "Clay Loam",
"value": "5"
},
{
"characteristic": "Silty Clay Loam",
"value": "5"
},
{
"characteristic": "Silt Loam",
"value": "5"
},
{
"characteristic": "Sandy Loam",
"value": "4"
},
{
"characteristic": "Sand",
"value": "4"
}
]
},
{
"label": "DISEASE TOLERANCE",
"type": "scale-or-value",
"items": [
{
"characteristic": "Leaf Disease Resistance",
"value": "4"
},
{
"characteristic": "Anthracnose Stalk Rot",
"value": "4"
},
{
"characteristic": "Physoderma Stalk Rot",
"value": "2"
},
{
"characteristic": "SCLB",
"value": "3"
},
{
"characteristic": "NCLB",
"value": "5"
},
{
"characteristic": "Gray Leaf Spot",
"value": "4"
},
{
"characteristic": "Goss's Wilt",
"value": "3"
},
{
"characteristic": "Common Rust",
"value": "3"
},
{
"characteristic": "Southern Rust",
"value": "4"
},
{
"characteristic": "Tar Spot",
"value": "1"
}
]
},
{
"label": "SILAGE CHARACTERISTICS",
"type": "scale-or-value",
"items": [
{
"characteristic": "Dairy Silage Rating",
"value": "4"
},
{
"characteristic": "Dry Tons/Acre",
"value": "5"
},
{
"characteristic": "aNDF %DM",
"value": "3"
},
{
"characteristic": "NDFd 30 Hr %NDF",
"value": "4"
},
{
"characteristic": "uNDF 240",
"value": "3"
},
{
"characteristic": "% Starch",
"value": "3"
},
{
"characteristic": "in situ Starch 7 Hr",
"value": "3"
},
{
"characteristic": "TTNDFD",
"value": "5"
},
{
"characteristic": "Milk/Acre",
"value": "4"
},
{
"characteristic": "Beef/Acre",
"value": "4"
},
{
"characteristic": "High Mositure Corn",
"value": "4"
}
]
}
],
"_scale_direction": "1-5 (5 = best)",
"regional_recommendations": [],
"image_url": null,
"source_urls": [
"https://www.agrigold.com/corn/explore-corn-hybrids/A645-16"
],
"sitemap_last_modified": null,
"fetched_at": "2026-05-26T16:35:37.502968+00:00",
"scraper_version": "0.1.0"
}
+104
View File
@@ -0,0 +1,104 @@
# A645-16
- **Vendor:** AgReliant Genetics
- **Brand:** AgriGold
- **Crop:** Corn
- **Relative maturity:** 115
- **Traits:** STXRIB VT2RIB VT2PRO CONV
- **Source:** https://www.agrigold.com/corn/explore-corn-hybrids/A645-16
- **Rating scale (AgriGold):** 1-5 (5 = best)
---
## Product Features
| Characteristic | Value |
|---|---|
| GDU to Mid Pollen | 1480 |
| GDU to Black Layer | 2850 |
| Plant Height | TALL |
| Ear Height | MEDIUM HIGH |
| Kernel Texture | MEDIUM HARD |
| Ear Flex Index | 5 |
| Cob Color | RED |
| Nitrogen Utilization | LATE |
| Harvest Timing | LATE |
| Foliar Fungicide Response | MODERATE |
| Fungicide Response Continuous Corn | MODERATE |
| Fungicide Response Corn Soybean Rotation | LOW |
| Green Snap Vulnerability | HIGH |
## Plant Characteristics
| Characteristic | Value |
|---|---|
| Ear Flex Type | KERNEL |
| Leaf Orientation | SEMI UPRIGHT |
| Root Type | FIBROUS |
## Agronomic Rating
| Characteristic | Value |
|---|---|
| Test Weight | 5 |
| Emergence | 4 |
| Drought Tolerance | 4 |
| Drydown | 3 |
| Root Strength | 5 |
| Stalk Strength | 5 |
## Planting Applications
| Characteristic | Value |
|---|---|
| Irrigation | 5 |
| Narrow Row | 5 |
| Corn on Corn | 4 |
| No Till Adaptability | 4 |
| High Yielding Soils | 5 |
| Variable Soils | 5 |
| Drought Prone/Sandy Soils | 4 |
| Low Yielding Soils | 5 |
| Poorly Drained Soils | 4 |
| High pH Soils | 5 |
## Soil Adaptability
| Characteristic | Value |
|---|---|
| Clay | 5 |
| Clay Loam | 5 |
| Silty Clay Loam | 5 |
| Silt Loam | 5 |
| Sandy Loam | 4 |
| Sand | 4 |
## Disease Tolerance
| Characteristic | Value |
|---|---|
| Leaf Disease Resistance | 4 |
| Anthracnose Stalk Rot | 4 |
| Physoderma Stalk Rot | 2 |
| SCLB | 3 |
| NCLB | 5 |
| Gray Leaf Spot | 4 |
| Goss's Wilt | 3 |
| Common Rust | 3 |
| Southern Rust | 4 |
| Tar Spot | 1 |
## Silage Characteristics
| Characteristic | Value |
|---|---|
| Dairy Silage Rating | 4 |
| Dry Tons/Acre | 5 |
| aNDF %DM | 3 |
| NDFd 30 Hr %NDF | 4 |
| uNDF 240 | 3 |
| % Starch | 3 |
| in situ Starch 7 Hr | 3 |
| TTNDFD | 5 |
| Milk/Acre | 4 |
| Beef/Acre | 4 |
| High Mositure Corn | 4 |

Some files were not shown because too many files have changed in this diff Show More