pure.athabascau.ca Open in urlscan Pro
104.18.39.240  Public Scan

Submitted URL: https://athabascau.elsevierpure.com/
Effective URL: https://pure.athabascau.ca/
Submission: On July 24 via api from US — Scanned from DE

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 profiles, expertise and research at Athabasca University</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://pure.athabascau.ca/" 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

Athabasca University Home


DISCOVER RESEARCH AT ATHABASCA UNIVERSITY

Explore profiles, expertise and research at Athabasca University
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

 * 171 Researchers
 * 4446 Research Outputs
 * 246 Research Activities
 * 25 Datasets
 * 491 News Media
 * 40More
    * 10 Research units
    * 30 Research Prizes

Welcome to Athabasca University's Research Portal

Our Research Portal houses and highlights a wide range of research-related
outcomes and activities while showcasing AU’s research excellence. Through our
Portal you can explore our research profile and discover ways to collaborative
opportunities.









As Canada’s leading open and online-by-design research university, Athabasca
University is committed to collaborative and co-created research solutions.
Through partnerships with community groups, industry, and other academic
collaborators we ask and answer complex questions to create knowledge that is
transformative, engineered for impact, and minimizes barriers to accessible,
engaging, and responsive research.

Athabasca University is also home to IDEA LAB the Athabasca River Basin Research
Institute (ARBRI) and the Athabasca University Geophysical Observatory (AUGO).

Athabasca University respectfully acknowledges that we live and work on the
Traditional Lands of the Indigenous Peoples (First Nations, Inuit, Métis) of
Canada. We honor the ancestry, heritage, and gifts of the Indigenous Peoples and
give thanks to them.


Open Access at AU
Being open is core to who we are at AU. Open Access (OA) promotes the
democratization of knowledge, fosters inclusivity by removing barriers, empowers
scholars to innovate collaboratively, and helps maximize the impact of research
for the public good. Through Pure, we are promoting the discoverability of AU
researchers’ OA outputs and OA enable outcomes and impacts.
Explore our OA Publications

For Visitors
Media enquiries Partnership enquiries University website Research assistant
opportunities

For Athabasca University Staff


Staff Pure Account Login Staff guides & FAQ


UN SUSTAINABLE DEVELOPMENT GOALS

In September 2015, 193 countries agreed to adopt a set of global goals to end
poverty, protect the planet and ensure prosperity for all. Click on a goal to
the right to explore how our researchers and their work are contributing towards
achieving it.

 *  * 6 Researchers
    * 5 Research Outputs
    * 2 Research units

 *  * 6 Researchers
    * 20 Research Outputs
    * 4 Research units

 *  * 78 Researchers
    * 552 Research Outputs
    * 9 Research units

 *  * 46 Researchers
    * 22 Research Outputs
    * 6 Research units

 *  * 30 Researchers
    * 38 Research Outputs
    * 6 Research units

 *  * 10 Researchers
    * 3 Research Outputs
    * 1 Research units

 *  * 12 Researchers
    * 38 Research Outputs
    * 7 Research units

 *  * 37 Researchers
    * 36 Research Outputs
    * 6 Research units

 *  * 29 Researchers
    * 9 Research Outputs
    * 3 Research units

 *  * 33 Researchers
    * 22 Research Outputs
    * 4 Research units

 *  * 29 Researchers
    * 23 Research Outputs
    * 7 Research units

 *  * 17 Researchers
    * 26 Research Outputs
    * 4 Research units

 *  * 29 Researchers
    * 58 Research Outputs
    * 7 Research units

 *  * 8 Researchers
    * 21 Research Outputs
    * 2 Research units

 *  * 15 Researchers
    * 12 Research Outputs
    * 5 Research units

 *  * 37 Researchers
    * 46 Research Outputs
    * 7 Research units

 *  * 12 Researchers


COLLABORATIONS AND TOP RESEARCH AREAS FROM THE LAST FIVE YEARS

This map shows how AU researchers collaborate with colleagues around the world.
The size of the dot will increase to reflect more collaborations. Click dots and
donuts to bring up details or Select a country/territory from the list


DIVE INTO DETAILS

Select a country/territory to view shared publications and projects

Close

Select a country/territory from the list



Powered by Pure, Scopus & Elsevier Fingerprint Engine™

All content on this site: Copyright © 2024 Elsevier B.V. or its licensors and
contributors. All rights are reserved, including those for text and data mining,
AI training, and similar technologies. For all open access content, the Creative
Commons licensing terms apply

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



Athabasca University data protection policy

About web accessibility





Report vulnerability

Contact us