weed seedling id ?

Bestimmungsanfragen für europäische Wildpflanzen.
Forumsregeln
Bitte immer den Fundort (Land, Stadt, Habitat etc.) und das Funddatum angeben. TIPP: Je mehr Detailbilder ihr von einer Pflanze zeigt, also zum Beispiel Gesamtaufnahme der Pflanze, Blatt + Blüte von oben und unten, Stängel unten + oben, Früchte oder weiteres, desto größer ist der Bestimmungserfolg im Forum.
Antworten
BubikolRamios
Beiträge: 198
Registriert: Mi Jul 13, 2022 10:14 pm

weed seedling id ?

Beitrag von BubikolRamios »

Benutzeravatar
abeja
Beiträge: 843
Registriert: Sa Jul 02, 2022 8:54 pm
Wohnort: da, wo D an CH und F grenzt

Re: weed seedling id ?

Beitrag von abeja »

In my bookmarks I had this link (unwanted wild weeds and grasses in agriculture), but I could not find your plant.
The key contains 144 weeds, some pictures of seedlings are missing.

https://www.int-koop.de/unkraut/mod_liz ... index.html? (different languages possible)
Viele Grüße von abeja
BubikolRamios
Beiträge: 198
Registriert: Mi Jul 13, 2022 10:14 pm

Re: weed seedling id ?

Beitrag von BubikolRamios »

Looks promising. Looking at it ...
Thanks.
BubikolRamios
Beiträge: 198
Registriert: Mi Jul 13, 2022 10:14 pm

Re: weed seedling id ?

Beitrag von BubikolRamios »

No luck will have to wait.

Your link, you can add this script to tampermonkey (with some nerves to use to get it working) and use
https://www.int-koop.de/unkraut/mod_liz ... index.html
as start page, in case of need...

Code: Alles auswählen

// ==UserScript==
// @name         New Userscript
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        http://*/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==



var input=document.createElement("input");
input.type="button";
input.value="Next";

var input1=document.createElement("input");
input1.type="button";
input1.value="Prev";

var found = parseInt(window.location.href.match(/\d+/g));
//alert(window.location.href.match(/\d+/));
//alert(window.location.href.replace(found.toString(),(found+1).toString()));
document.body.appendChild(input);
document.body.appendChild(input1);
input.onclick = function() {location = window.location.href.replace(found.toString(),(found+1).toString())};
input1.onclick = function() {location = window.location.href.replace(found.toString(),(found-1).toString())};

while (document.body.innerHTML.includes('wurde nicht gefunden'))
{
  location = window.location.href.replace(found.toString(),(found+1).toString())
}

Antworten