Files changed (4) hide show
  1. OPheno_logo.png +0 -3
  2. README.md +28 -16
  3. index.html +0 -234
  4. static/images/OPheno_logo.png +0 -3
OPheno_logo.png DELETED

Git LFS Details

  • SHA256: 37ec8e5ecb4d42e48dc0b616d67f17f45ea827be56e78610d6509dcbc7bcf4f9
  • Pointer size: 131 Bytes
  • Size of remote file: 808 kB
README.md CHANGED
@@ -10,26 +10,38 @@ license: mit
10
  short_description: Open-Source Weed Phenology & Emergence Project
11
  ---
12
 
13
- # OPheno
14
 
15
- <img src="static/images/OPheno_logo.png" alt="OPheno Logo" width="220" />
16
 
17
- This is the official repository for the OPheno organization card.
18
- OPheno is an open-source, community-driven project focused on providing standardized weed phenology and emergence datasets for agricultural science, modeling, and machine learning research.
19
 
20
- ---
21
 
22
- ## Citation
 
 
 
 
23
 
24
- If you find OPheno useful for your work, please cite:
25
- @misc{opheno_dataset_2026
26
- title = {OPheno: An Open-Source Weed Phenology Database},
27
- author = {{[Espejel Padilla, Jorge Alberto; Akhter Muhammad Javaid; Kromminga, Heiko Hopke and Hoffman, Holger]}},
28
- year = {2026},
29
- publisher = {Hugging Face},
30
- journal = {Hugging Face Hub},
31
- howpublished = {\url{[https://huggingface.co/OPheno](https://huggingface.co/OPheno)}}
32
- }
33
 
 
34
 
35
- ``
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  short_description: Open-Source Weed Phenology & Emergence Project
11
  ---
12
 
13
+ # OPheno — Open-Source Weed Phenology
14
 
15
+ *An open, community-driven space for weed emergence and phenology data.*
16
 
17
+ This is the official repository for the **OPheno** organization card. OPheno aggregates and curates observations related to weed emergence and phenology to support research, education, and modeling across diverse environments and management systems.
 
18
 
19
+ ## 👥 Core Team & Affiliations
20
 
21
+ Our core maintainers and contributors span across industry and academia:
22
+
23
+ - **Heiko Hopke Kromminga** — BASF
24
+ - **Muhammad Javaid Akhter** — BASF
25
+ - **Jorge Alberto Espejel Padilla** - BASF
26
 
 
 
 
 
 
 
 
 
 
27
 
28
+ ## 🤝 Contribute
29
 
30
+ > **We welcome community contributions!**
31
+ > OPheno aims to unite the full spectrum of weed-science knowledge. Whether you are conducting academic research, industry field trials, or practical field observations, your data can help accelerate the development of reliable agricultural models.
32
+
33
+ ---
34
+
35
+ ## 📚 Citation
36
+
37
+ If you find OPheno useful for your work, please cite it using the following format:
38
+
39
+ ```bibtex
40
+ @misc{opheno_dataset_2025,
41
+ title = {OPheno: An Open-Source Weed Phenology Database},
42
+ author = {Kromminga, Heiko Hopke and Akhter, Muhammad Javaid and Oliveira, Maxwel Coura and Espejel, Jorge},
43
+ year = {2025},
44
+ publisher = {Hugging Face},
45
+ howpublished = {\url{https://huggingface.co/OPheno}}
46
+ }
47
+ ```
index.html DELETED
@@ -1,234 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width, initial-scale=1" />
6
- <title>OPheno — Open-Source Weed Phenology</title>
7
- <meta name="description" content="OPheno is an open, community-driven initiative to share and curate weed emergence and phenology data." />
8
-
9
- <!-- Fonts -->
10
- <link rel="preconnect" href="https://fonts.googleapis.com" />
11
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
12
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet" />
13
-
14
- <style>
15
-
16
- .container {
17
- max-width: 100% !important;
18
- width: 100% !important;
19
- margin: 0;
20
- padding: 0 20px;
21
- }
22
-
23
- :root{
24
- --bg:#ffffff;
25
- --card:#f7f7f8;
26
- --muted:#5b5b5b;
27
- --text:#111;
28
- --accent:#0a6cff;
29
- --border:#e6e6e6;
30
- }
31
- *{ box-sizing:border-box }
32
- html,body{
33
- margin:0;
34
- padding:0;
35
- background:var(--bg);
36
- color:var(--text);
37
- font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
38
- line-height:1.6;
39
- }
40
- /* Always-visible links */
41
- a {
42
- color: #000 !important;
43
- text-decoration: underline !important;
44
- }
45
- a:hover {
46
- text-decoration: underline !important;
47
- }
48
- header{
49
- display:flex;
50
- align-items:center;
51
- gap:16px;
52
- padding:8px 0 16px;
53
- border-bottom:1px solid var(--border);
54
- margin-bottom:18px;
55
- }
56
- .title{
57
- font-size:26px;
58
- font-weight:700;
59
- margin:0;
60
- }
61
-
62
-
63
- section {
64
- background: var(--card);
65
- border: 1px solid var(--border);
66
- border-radius: 14px;
67
-
68
- padding: 18px; /* good balance for readability */
69
- margin: 14px 0;
70
-
71
- width: 100%; /* if you want it full width */
72
- box-sizing: border-box;
73
- }
74
-
75
-
76
-
77
- .hero h1{
78
- margin:0 0 6px;
79
- font-size:28px;
80
- }
81
- .hero p.lead{
82
- color:var(--muted);
83
- max-width:65ch;
84
- margin:8px 0 0;
85
- }
86
- .cta-row{
87
- display:flex;
88
- flex-wrap:wrap;
89
- gap:10px;
90
- margin-top:14px;
91
- }
92
- .btn{
93
- display:inline-block;
94
- padding:10px 16px;
95
- font-weight:600;
96
- border-radius:10px;
97
- background:var(--accent);
98
- color:#000;
99
- border:2px solid #000;
100
- }
101
- .btn.secondary{
102
- background:#6c757d;
103
- }
104
- h2{
105
- margin:0 0 8px;
106
- font-size:22px;
107
- }
108
- h3{
109
- margin:0 0 8px;
110
- font-size:18px;
111
- }
112
- .muted{
113
- color:var(--muted);
114
- }
115
- pre,code{
116
- background:#f0f2f5;
117
- border:1px solid var(--border);
118
- border-radius:8px;
119
- }
120
- pre{
121
- padding:12px;
122
- overflow-x:auto;
123
- }
124
- footer{
125
- margin-top:36px;
126
- padding-top:16px;
127
- border-top:1px solid var(--border);
128
- color:var(--muted);
129
- font-size:14px;
130
- }
131
- footer{
132
- margin-top:36px;
133
- padding-top:16px;
134
- border-top:1px solid var(--border);
135
- color:var(--muted);
136
- font-size:14px;
137
- }
138
- </style>
139
- </head>
140
-
141
- <body>
142
- <div class="container">
143
-
144
- </style>
145
- </head>
146
-
147
- <body>
148
- <div class="container">
149
-
150
- <!-- HEADER -->
151
- <header>
152
- <div>
153
- <h1 class="title">OPheno — Open‑Source Weed Phenology</h1>
154
- </div>
155
- </header>
156
-
157
- <!-- HERO -->
158
- <section class="hero">
159
- <h1>An open, community‑driven space for weed emergence & phenology data</h1>
160
- <p class="lead">
161
- OPheno aggregates and curates observations related to weed emergence and phenology to support research, education, and modeling across diverse
162
- environments and management systems.
163
- </p>
164
- <div class="cta-row">
165
- <a class="btn" href="https://huggingface.co/spaces/OPheno/opheno-submission-portal"
166
- target="_blank" rel="noopener">🚀 Submission Portal</a>
167
- </div>
168
- </section>
169
-
170
- <!-- ABOUT -->
171
- <section id="about">
172
- <h2>About OPheno</h2>
173
- <p>
174
- OPheno aims to unite the full spectrum of weed‑science knowledge—from academic research and field trials to in-season field observations. By providing an open and shared home for emergence and phenology data, OPheno encourages collaboration, improves transparency,
175
- and accelerates the development of models and tools that depend on
176
- reliable, comparable observations. All datasets hosted under OPheno follow
177
- open‑science principles and aim to support anyone interested in
178
- understanding or predicting weed development.
179
- </p>
180
- </section>
181
-
182
- <!-- CONTRIBUTE -->
183
- <section id="contribute">
184
- <h2>Contribute</h2>
185
- <p>
186
- Contributions from researchers, practitioners, and the community are the
187
- heart of the project. If you have observations related to weed emergence
188
- or phenology, please submit them via the
189
- <a href="https://huggingface.co/spaces/OPheno/OPheno-Submission-Portal"
190
- target="_blank" rel="noopener">portal</a>.
191
- The maintainers will review and, when feasible, curate contributions into
192
- the public datasets. Every submission not ready for curation remains
193
- accessible in the submission portal folder for transparency and future
194
- iteration.
195
- </p>
196
- </section>
197
-
198
- <!-- LICENSE -->
199
- <section id="license">
200
- <h2>License</h2>
201
- <p>
202
- Unless otherwise noted, data are released under <strong>CC BY 4.0</strong>.
203
- </p>
204
- </section>
205
-
206
- <!-- MAINTAINER -->
207
- <section id="maintainer">
208
- <h2>Maintainer</h2>
209
- <p>
210
- OPheno is maintained by
211
- <a href="https://de.linkedin.com/in/heiko-kromminga" target="_blank">Heiko
212
- Hopke Kromminga (BASF)</a>,
213
- <a href="https://de.linkedin.com/in/muhammad-javaid-akhter-40a18975"
214
- target="_blank">Muhammad Javaid Akhter (BASF)</a>,
215
- <a href="https://de.linkedin.com/in/holger-hoffmann-1988834a"
216
- target="_blank">Holger Hoffman (BASF)</a>, and
217
- <a href="https://de.linkedin.com/in/jorge-alberto-espejel-padilla-b00840216"
218
- target="_blank">Jorge Alberto Espejel Padilla</a>.
219
- </p>
220
- </section>
221
-
222
- <!-- ACKNOWLEDGMENTS -->
223
- <section id="acknowledgments">
224
- <h2>Acknowledgments</h2>
225
- <p>
226
- To all collaborators of OPheno.
227
- The maintainers acknowledge the use of large language models for assistance
228
- in drafting documentation.
229
- </p>
230
- </section>
231
-
232
- <footer>
233
- <div>© <span id="year"></span> OPheno</div>
234
- </footer>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
static/images/OPheno_logo.png DELETED

Git LFS Details

  • SHA256: 37ec8e5ecb4d42e48dc0b616d67f17f45ea827be56e78610d6509dcbc7bcf4f9
  • Pointer size: 131 Bytes
  • Size of remote file: 808 kB