Rangeland Database Resources

  • Sample Global Rangelands Import (csv)
  • Meta Data Guidelines for Global Rangelands Importing (pdf)
  • Global Rangelands Data Entry Guidelines (pdf) – pages 14-23
  • Code for Partners to Add Search Box on their Rangelands websites:
    Below is a code snippet that provides a textbox and a search button so that users can enter search terms on an external website and the terms will get passed to the global rangelands search engine. Web admins can paste it into their existing website. The part in red is really the only code that is needed.<!DOCTYPE html>
    <html>
    <head>
    <meta charset=utf-8 />
    <title>GR Search Snippet</title>
    </head>
    <body>

    <form onSubmit=”return searchGR();”>
    <input id=”searchterm” type=”text” maxlength=”55″ class=”box” autofocus />
    <input type=”submit” class=”submit” value=”Search” />
    </form>
    <script>
    function searchGR(){
    window.location.replace(‘https://globalrangelands.org/search/site/’ + document.getElementById(‘searchterm’).value);
    return false;
    }
    </script>

    </body>
    </html>