research.wur.nl Open in urlscan Pro
34.248.98.230  Public Scan

Submitted URL: http://research.wur.nl/
Effective URL: https://research.wur.nl/
Submission: On October 31 via api from US — Scanned from NL

Form analysis 1 forms found in the DOM

GET /en/searchAll/

<form id="main-search" action="/en/searchAll/" method="get" class="search-form" itemprop="potentialAction" itemscope="" itemtype="http://schema.org/SearchAction">
  <meta itemprop="target" content="/en/searchAll/">
  <div class="global-search ">
    <div class="field-button-wrapper">
      <div class="search-field">
        <label class="sr-only" for="global-search-input">Explore research output and researchers at Research@WUR</label>
        <input type="text" id="global-search-input" itemprop="query-input" class="search-field" value="" name="search" autocomplete="off" autofocus="autofocus">
      </div>
      <div class="advanced-SearchBox-Container hidden">
        <div id="search-as-headline" class="advanced-search-header"> Search as: </div>
        <ul class="advanced-search-list" aria-labelledby="search-as-headline" data-url="https://research.wur.nl/" data-searchlocale="en">
          <li class="concepts-suggestion" data-value="RelatedConcepts">
            <a class="linkValConcept">
                    <div class="aria-content">
                        <output id="RelatedConcepts" class="advanced-search-label"></output>
                        <span>
                            
                                concept
                            
                        </span>
                    </div></a>
            <div class="tooltip-container">
              <button type="button" aria-expanded="false" aria-describedby="search_index_relatedconcepts" aria-label="Search as concept, help">
                <i class="icon icon-info-circled" aria-hidden="true"></i>
              </button>
              <span class="tooltip-popup align-right" role="tooltip" id="search_index_relatedconcepts">Search across key concepts extracted from titles and abstracts</span>
            </div>
          </li>
          <li class="index-suggestion" data-value="PartOfNameOrTitle">
            <a class="linkValIndex">
                    <div class="aria-content">
                        <output id="PartOfNameOrTitle" class="advanced-search-label"></output>
                        <output class="advanced-search-message">
                            
                                matching text
                            
                        </output>
                    </div></a>
            <div class="tooltip-container">
              <button type="button" aria-expanded="false" aria-describedby="search_index_partofnameortitle" aria-label="Search as matching text, help">
                <i class="icon icon-info-circled" aria-hidden="true"></i>
              </button>
              <span class="tooltip-popup align-right" role="tooltip" id="search_index_partofnameortitle">Search across indexed text content in Pure, such as names, titles, descriptions etc.</span>
            </div>
          </li>
        </ul>
      </div>
      <script>
        $(document).ready(function() {
          $("input.search-field").bind('keyup', function() {
            displayInput();
            populateInput();
          });
          navigation();
          runToolTips();
        });
        //Sets the width of the searchcontainer so it follows the width of the input
        $(window).resize(function() {
          $(".advanced-SearchBox-Container").width($('.field-button-wrapper').width());
        });
        /*Removes the popup if there is a click outside the container*/
        $(document).mouseup(function(e) {
          var container = $('.advanced-SearchBox-Container');
          if (!container.is(e.target) // if the target of the click isn't the container
            && container.has(e.target).length === 0) // ... nor a descendant of the container
          {
            container.addClass('hidden');
            resetSearchSelection();
          }
        });

        function populateInput() {
          var locale = $('.advanced-search-list').attr('data-searchlocale');
          var urlString = window.location.href;
          if (urlString.charAt(urlString.length - 1) == '/') {
            urlString = urlString.substr(0, urlString.length - 1);
          }
          var urlWithLocale = urlString.indexOf("/" + locale) > -1 ? urlString : urlString + "/" + locale;
          $('.search-bar-wrapper input.search-field').each(function() {
            var inputValue = $(this);
            if (inputValue) {
              $('.advanced-search-label').each(function() {
                var lblText = $(this);
                var urlParams = {};
                if (false) {
                  urlParams["improvedLayoutOrganisationUuid"] = "null";
                }
                //id of class
                var searchBy = $(this).attr('id');
                urlParams["search"] = inputValue.val();
                urlParams["searchBy"] = searchBy;
                var paramsAsString = jQuery.param(urlParams);
                var newUrl = "?" + paramsAsString;
                if (searchBy == 'PartOfNameOrTitle') {
                  $('.linkValIndex').prop("href", urlWithLocale + "/searchAll/" + newUrl);
                }
                if (searchBy == 'RelatedConcepts') {
                  $('.linkValConcept').prop("href", urlWithLocale + "/searchAll/" + newUrl);
                }
                //hides the popup if input field is empty
                if (inputValue.val().length == 0) {
                  $(".advanced-SearchBox-Container").addClass("hidden");
                }
              });
            }
          });
        }

        function displayInput() {
          $('.search-bar-wrapper input.search-field').each(function() {
            var selected = $('.search-bar-wrapper ul.dropdown-menu li.selected').find('a').attr('href');
            if (selected == undefined) {
              selected = 'searchAll';
            }
            var typingTimer,
              doneTypingInterval = 1000,
              $input = $(this);
            $input.on('keyup', function() {
              clearTimeout(typingTimer);
              typingTimer = setTimeout(doneTyping, doneTypingInterval);
            });
            $input.on('keydown', function() {
              clearTimeout(typingTimer);
            });

            function doneTyping() {
              var searchOptionAmount = $('.advanced-search-list li').length;
              addToAriaLive("polite", searchOptionAmount + " Search suggestions are available, use TAB key to navigate");
            }
            if ($input.val().length != 0) {
              $(".advanced-SearchBox-Container.hidden").removeClass("hidden");
            } else {
              $(".advanced-SearchBox-Container").addClass("hidden");
              resetSearchSelection();
            }
          });
        }

        function navigation() {
          $(".advanced-search-list li").mouseover(function() {
            $("li").removeClass("select");
            $(this).addClass("select");
          });
          $('.improvedLayout-search-bar-container input.search-field').on('keydown', function(e) {
            if (e.which === $.ui.keyCode.ENTER) {
              var url = $('.advanced-SearchBox-Container').find('.select a').attr('href');
              if (url === undefined) {
                $('#normalSearch').click();
              } else {
                window.location.href = url;
              }
            }
          });
        }

        function subStringText(val, limit) {
          if (val.length > limit) {
            var dots = "...";
            val = val.substring(0, limit) + dots;
          }
          return val
        }
        var resetSearchSelection = function() {
          var select = $(".advanced-search-list li.select");
          select.removeClass('select');
        };
      </script>
      <div class="search-submit">
        <button id="normalSearch" type="submit" value="false" name="isCopyPasteSearch" aria-label="Search">
          <i class="icon icon-magnifying-glass" aria-hidden="true"></i>
        </button>
      </div>
    </div>
  </div>
</form>

Text Content

 * Skip to main navigation
 * Skip to search
 * Skip to main content

Research@WUR Home
 * Help & FAQ


RESEARCH@WUR

Explore research output and researchers at Research@WUR
Search as:
 * concept
   Search across key concepts extracted from titles and abstracts
 * matching text
   Search across indexed text content in Pure, such as names, titles,
   descriptions etc.


 * Advanced search

 * 7452 Researchers
 * 539 Research Units
 * 293413 Research output
 * 2823 Datasets
 * 15025 Press / Media
 * 46049More
    * 27385 Activities
    * 18341 Projects
    * 323 Prizes


WELCOME TO RESEARCH@WUR

You can search for researchers and publications (articles, books, dissertations
and other research output) from Wageningen University & Research. Many
publications are full text and freely accessible. This is indicated by the Open
Access logo.


COLLABORATIONS AND TOP RESEARCH AREAS FROM THE LAST FIVE YEARS

The collaborations are based on co-authorships. Click on the dots to bring up
details. Select a country/territory from the list


DIVE INTO DETAILS

Select a country/territory to view shared publications and projects

Close
Europe
 1.  Albania
 2.  Armenia
 3.  Austria
 4.  Belarus
 5.  Belgium
 6.  Bosnia and Herzegovina
 7.  Bulgaria
 8.  Croatia
 9.  Cyprus
 10. Czech Republic
 11. Denmark
 12. Estonia
 13. Faroe Islands
 14. Finland
 15. France
 16. Georgia
 17. Germany
 18. Greece
 19. Hungary
 20. Iceland
 21. Ireland
 22. Italy
 23. Latvia
 24. Lithuania
 25. Luxembourg
 26. Macedonia, The Former Yugoslav Republic of
 27. Malta
 28. Moldova, Republic of
 29. Montenegro
 30. Netherlands
 31. Norway
 32. Portugal
 33. Romania
 34. Russian Federation
 35. Serbia
 36. Slovakia
 37. Slovenia
 38. Spain
 39. Svalbard and Jan Mayen
 40. Sweden
 41. Switzerland
 42. Turkey
 43. Ukraine
 44. United Kingdom

America
 1.  Argentina
 2.  Aruba
 3.  Bahamas
 4.  Barbados
 5.  Belize
 6.  Bermuda
 7.  Bolivia, Plurinational State of
 8.  Brazil
 9.  Burundi
 10. British Columbia
 11. Ontario
 12. Canada (No Province/Territory Affiliation Provided)
 13. Chile
 14. Colombia
 15. Costa Rica
 16. Cuba
 17. Curaçao
 18. Dominican Republic
 19. Ecuador
 20. French Guiana
 21. Greenland
 22. Guadeloupe
 23. Guatemala
 24. Guyana
 25. Jamaica
 26. Mexico
 27. Nicaragua
 28. Panama
 29. Paraguay
 30. Peru
 31. Poland
 32. Puerto Rico
 33. Saint Kitts and Nevis
 34. Saint Vincent and the Grenadines
 35. Suriname
 36. Trinidad and Tobago
 37. Colorado
 38. Maryland
 39. Pennsylvania
 40. District of Columbia
 41. Maine
 42. Montana
 43. Illinois
 44. Oregon
 45. New Hampshire
 46. Utah
 47. Washington
 48. Idaho
 49. Alaska
 50. California
 51. Indiana
 52. New York
 53. Arkansas
 54. Michigan
 55. North Carolina
 56. Rhode Island
 57. Arizona
 58. New Jersey
 59. Ohio
 60. Massachusetts
 61. United States (No State Affiliation Provided)
 62. Uruguay
 63. Venezuela, Bolivarian Republic of

Asia
 1.  Afghanistan
 2.  Azerbaijan
 3.  Bangladesh
 4.  Bhutan
 5.  Brunei Darussalam
 6.  Cambodia
 7.  Chad
 8.  China
 9.  Hong Kong
 10. India
 11. Indonesia
 12. Iran, Islamic Republic of
 13. Iraq
 14. Israel
 15. Japan
 16. Jordan
 17. Kazakhstan
 18. Korea, Democratic People's Republic of
 19. Korea, Republic of
 20. Kuwait
 21. Kyrgyzstan
 22. Lao People's Democratic Republic
 23. Lebanon
 24. Macao
 25. Malaysia
 26. Maldives
 27. Martinique
 28. Mongolia
 29. Myanmar
 30. Nepal
 31. Oman
 32. Pakistan
 33. Philippines
 34. Qatar
 35. Saudi Arabia
 36. Singapore
 37. Sri Lanka
 38. Syrian Arab Republic
 39. Taiwan, Province of China
 40. Tajikistan
 41. Thailand
 42. Tonga
 43. Turkmenistan
 44. Turks and Caicos Islands
 45. United Arab Emirates
 46. Uzbekistan
 47. Viet Nam
 48. Yemen

Australia and Oceania
 1.  Victoria
 2.  New South Wales
 3.  Australia (No State Affiliation Provided)
 4.  Cook Islands
 5.  Fiji
 6.  French Polynesia
 7.  Kiribati
 8.  New Caledonia
 9.  New Zealand
 10. Palau
 11. Palestine, State of
 12. Papua New Guinea
 13. Samoa
 14. Solomon Islands
 15. Vanuatu

Africa
 1.  Algeria
 2.  Angola
 3.  Benin
 4.  Bonaire, Sint Eustatius and Saba
 5.  Botswana
 6.  Burkina Faso
 7.  Cameroon
 8.  Cape Verde
 9.  Central African Republic
 10. Congo
 11. Congo, The Democratic Republic of the
 12. Côte d'Ivoire
 13. Egypt
 14. Eritrea
 15. Ethiopia
 16. Gabon
 17. Gambia
 18. Ghana
 19. Grenada
 20. Guinea
 21. Guinea-Bissau
 22. Kenya
 23. Lesotho
 24. Liberia
 25. Madagascar
 26. Malawi
 27. Mali
 28. Mauritania
 29. Mauritius
 30. Morocco
 31. Mozambique
 32. Namibia
 33. Niger
 34. Nigeria
 35. Rwanda
 36. Réunion
 37. Senegal
 38. Seychelles
 39. Sierra Leone
 40. Sint Maarten (Dutch part)
 41. Somalia
 42. South Africa
 43. South Sudan
 44. Sudan
 45. Swaziland
 46. São Tomé og Príncipe
 47. Tanzania, United Republic of
 48. Togo
 49. Tunisia
 50. Uganda
 51. Zambia
 52. Zimbabwe


Select a country/territory from the list
NetherlandsUnited States (No State Affiliation Provided)Colorado, United
StatesMaryland, United StatesPennsylvania, United StatesDistrict of Columbia,
United StatesMaine, United StatesMontana, United StatesIllinois, United
StatesOregon, United StatesNew Hampshire, United StatesUtah, United
StatesWashington, United StatesIdaho, United StatesAlaska, United
StatesCalifornia, United StatesIndiana, United StatesNew York, United
StatesArkansas, United StatesMichigan, United StatesNorth Carolina, United
StatesRhode Island, United StatesArizona, United StatesNew Jersey, United
StatesOhio, United StatesMassachusetts, United StatesGermanyUnited
KingdomChinaFranceItalySpainBrazilBelgiumIndiaAustralia (No State Affiliation
Provided)Victoria, AustraliaNew South Wales, AustraliaCanada (No
Province/Territory Affiliation Provided)British Columbia, CanadaOntario,
CanadaIndonesiaSwitzerlandJapanTurkeySwedenNorwayKenyaDenmarkAustriaMexicoPolandPortugalIran,
Islamic Republic ofGreeceColombiaEthiopiaViet NamIrelandFinlandSouth
AfricaBangladeshRussian FederationArgentinaHungaryChileEcuadorKorea, Republic
ofNigeriaNew ZealandThailandGhanaPeruUgandaRomaniaCzech
RepublicPakistanNepalTanzania, United Republic ofTaiwan, Province of
ChinaIsraelMalaysiaBulgariaZimbabweEgyptSloveniaUkraineSingaporeSlovakiaZambiaMoroccoRwandaBurkina
FasoCyprusCroatiaCameroonLithuaniaBotswanaPhilippinesBolivia, Plurinational
State ofCongo, The Democratic Republic of theMalawiTunisiaUnited Arab
EmiratesBeninBonaire, Sint Eustatius and SabaIraqIcelandLatviaSaudi ArabiaCosta
RicaSerbiaCambodiaSri LankaEstoniaLuxembourgNamibiaSenegalCôte
d'IvoireAlgeriaHong KongGabonCongoKazakhstanMadagascarPanamaCubaLao People's
Democratic RepublicMozambiqueSudanSurinameMacedonia, The Former Yugoslav
Republic ofMaliUruguayVenezuela, Bolivarian Republic ofBurundiPapua New
GuineaPalestine, State ofBosnia and HerzegovinaKorea, Democratic People's
Republic ofMyanmarNigerQatarSierra LeoneAlbaniaBahamasDominican RepublicFrench
GuianaJordanLebanonMoldova, Republic ofMontenegroMongoliaNew CaledoniaPuerto
RicoSeychellesTajikistanUzbekistanArmeniaAzerbaijanBelarusCape
VerdeFijiGeorgiaGambiaGuinea-BissauGuyanaMaltaMauritiusOmanRéunionTrinidad and
TobagoYemenBarbadosBrunei DarussalamBhutanBelizeCentral African
RepublicCuraçaoFaroe
IslandsGreenlandGuineaKyrgyzstanLiberiaMauritaniaMaldivesNicaraguaParaguaySolomon
IslandsSão Tomé og PríncipeSwazilandTogoSamoaAfghanistanAngolaArubaBermudaCook
IslandsEritreaGrenadaGuadeloupeGuatemalaJamaicaKiribatiSaint Kitts and
NevisKuwaitLesothoMacaoMartiniqueFrench PolynesiaPalauSvalbard and Jan
MayenSomaliaSouth SudanSint Maarten (Dutch part)Syrian Arab RepublicTurks and
Caicos IslandsChadTurkmenistanTongaSaint Vincent and the GrenadinesVanuatu
 * effectEarth & Environmental Sciences
   
 * FoodMedicine & Life Sciences
   
 * methodEarth & Environmental Sciences
   
 * analysisEarth & Environmental Sciences
   
 * HealthMedicine & Life Sciences
   
 * waterEarth & Environmental Sciences
   
 * methodologyAgriculture & Biology
   
 * climateEarth & Environmental Sciences
   
 * policyEarth & Environmental Sciences
   
 * MicrobiotaMedicine & Life Sciences
   
 * climate changeEarth & Environmental Sciences
   
 * soilEarth & Environmental Sciences
   



Powered by Pure, Scopus & Elsevier Fingerprint Engine™ © 2022 Elsevier B.V.

We use cookies to help provide and enhance our service and tailor content. By
continuing you agree to the use of cookies

Cookies Settings



About web accessibility





Contact us



We use cookies to analyse and improve our service.Cookie Policy

Cookies Settings Accept All Cookies