{% extends "base.html" %} {% from "_formhelpers.html" import render_field %} {% block content %}

Air temperature data from over 400 communities, reduced to relevant engineering parameters (Additional info)

Search

{{ form.csrf_token }}
{{ render_field(form.community, class='form-control', id='communityinput') }}
{{ render_field(form.model, class='form-control', id='modelinput') }} Historical (1901-2009) or Projection (2001-2099)
Learn more about the models and scenarios
{{ render_field(form.minyear, class='form-control', id='minyearinput') }}
{{ render_field(form.maxyear, class='form-control', id='maxyearinput') }}

Results

{% if session['avg_temp'] %} {% else %} {% endif %} {# #} {% if session.save %} {% for key, value in session.save|dictsort %} {% endfor %} {% else %} {% endif %}
Community
 
Years
 
Tavg
°C
ATI
°C-days
AFI
°C-days
DTI
°C-days
DFI
°C-days
Type
 
Add/
Remove
Current Search
{{ session['community_data']['name'] }}
{{ session['community_data']['latitude'] }}° N, {{ session['community_data']['longitude'] }}° W
{{ session['minyear'] }} - {{ session['maxyear'] }} {{ session['avg_temp']|round(1) }} {{ session['avg_indices'][0] }} {{ session['avg_indices'][1] }} {{ session['des_indices'][0] }} {{ session['des_indices'][1] }} {{ session['ds_name'][0][0] }} ({{ session['ds_name'][0][1] }})
[no data]
 
Saved Searches
{{ value['community_data']['name'] }}
{{ value['community_data']['latitude'] }}° N, {{ value['community_data']['longitude'] }}° W
{{ value['minyear'] }} - {{ value['maxyear'] }} {{ value['avg_temp']|round(1) }} {{ value['avg_indices'][0] }} {{ value['avg_indices'][1] }} {{ value['des_indices'][0] }} {{ value['des_indices'][1] }} {{ value['ds_name'][0][0] }} ({{ value['ds_name'][0][1] }})
[no data]
NOTE: The parameters calculated by SNAPIndices are based on average monthly temperatures, not average daily temperatures. As well, derived data is provided without any rounding or consideration for significant digits, allowing the user to decide what is appropriate for their analysis.

Info

What
SNAPIndices provides basic engineering climate parameters that are commonly used for engineering and site-development purposes. These parameters include:
  • Tavg: The average (arithmetic mean) air temperature, based on all of the monthly air temperatures for the specified range of years.
  • ATI: The average (arithmetic mean) annual thawing index. The thawing index is the total number of degree-days above the freezing point. The number displayed by SNAPIndices is the average of the annual indices for the specified range of years.
  • AFI: The average (arithmetic mean) annual freezing index. The freezing index is the total number of degree-days below the freezing point. The number displayed by SNAPIndices is the average of the annual indices for the specified range of years.
  • DTI: The design thawing index. The number displayed by SNAPIndices is the arithmetic mean of the three warmest thawing indices for the specified range of years. If less than three years are displayed, the DTI is listed as 'None.' Typically, the DTI is calculated over a 30-year or 10-year time span.
  • DFI: The design freezing index. The number displayed by SNAPIndices is the arithmetic mean of the three coolest freezing indices for the specified range of years. If less than three years are displayed, the DFI is listed as 'None.' Typically, the DFI is calculated over a 30-year or 10-year time span.
Why
SNAPIndices provides quick and simple access to the massive amounts of data released by the SNAP group. It does not aim to replace, modify, or build on SNAP's work, but rather provide an alternative means for users to explore and understand the data.
How
SNAPIndices is built with python. Check out the GitHub pages for SNAPExtract and SNAPIndices for more info on how to install on your own machine, fork the project, or submit bug reports. In a nutshell, SNAPExtract takes a list of communities and their coordinates, as well as SNAP datasets, and extracts the air temperature data from the data point closest to a community's location. SNAPIndices is the front-end for interacting with that extracted data.
Who
This project would not exist without SNAP – take a look at their page to learn about the science and the methods behind their products. On that note, SNAPIndices is not endorsed or supported by SNAP in any way. Similarly, this product is provided as-is, with no warranty express or implied. Use at your own risk.
{% endblock %}