maint: updating urls etc

This commit is contained in:
Matthew Ryan Dillon 2021-01-05 18:57:08 -07:00
parent 6d989733c5
commit 52226b0eba
6 changed files with 17 additions and 17 deletions

View file

@ -7,14 +7,14 @@ parameters.
What is it? What is it?
----------- -----------
[AKIndices](http://akindices.akdillon.net) is a Flask-driven web-app that [AKIndices](https://akindices.akdillon.net) is a Flask-driven web-app that
builds on the AKExtract project to provide an easy-to-use interface for working builds on the AKExtract project to provide an easy-to-use interface for working
with SNAP datasets. with SNAP datasets.
Prerequisites Prerequisites
------------- -------------
- [AKExtract](http://github.com/thermokarst/akextract) - [AKExtract](https://github.com/thermokarst/akextract)
- Flask (0.10.1) - Flask (0.10.1)
- SQLAlchemy (1.0.5) - SQLAlchemy (1.0.5)
- psycopg2 (2.6.1) - psycopg2 (2.6.1)
@ -26,4 +26,4 @@ Contact
------- -------
Do you have an idea for a feature? Find a bug? Do you have an idea for a feature? Find a bug?
Reach me at [mrdillon@alaska.edu](mailto:mrdillon@alaska.edu) Reach me at [matthew@akdillon.net](mailto:matthew@akdillon.net)

View file

@ -4,7 +4,7 @@
<title>{{ config['TITLE'] }}</title> <title>{{ config['TITLE'] }}</title>
<link href="/static/css/bootstrap-readable.min.css" rel="stylesheet"> <link href="/static/css/bootstrap-readable.min.css" rel="stylesheet">
<link href="/static/css/akindices.css" rel="stylesheet"> <link href="/static/css/akindices.css" rel="stylesheet">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="/static/js/bootstrap.min.js"></script> <script src="/static/js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
</head> </head>
@ -21,9 +21,9 @@
<div id="footer"> <div id="footer">
<p class="text-muted credit"> <p class="text-muted credit">
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/80x15.png" /></a> This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>. <a rel="license" href="https://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/3.0/80x15.png" /></a> This work is licensed under a <a rel="license" href="https://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.
<br> <br>
<small>Created by <a href="mailto:mrdillon@alaska.edu">Matthew Dillon</a>, {{ config['COPYRIGHT_YEAR'] }}.</small> <small>Created by <a href="mailto:matthew@akdillon.net">Matthew Dillon</a>, {{ config['COPYRIGHT_YEAR'] }}.</small>
</p> </p>
</div> </div>
</div> </div>

View file

@ -29,7 +29,7 @@
</dd> </dd>
</dl> </dl>
<h3>Emission Scenario Details (from <a href="http://www.snap.uaf.edu/faq.php#faq_4">SNAP</a>)</h3> <h3>Emission Scenario Details (from <a href="https://uaf-snap.org/methods-overview/model-selection/">SNAP</a>)</h3>
<dl class="dl-horizontal"> <dl class="dl-horizontal">
<dt>Scenario A1B</dt> <dt>Scenario A1B</dt>
<dd> <dd>

View file

@ -52,7 +52,7 @@
<script> <script>
var map = L.map('map').setView([{{ lat }}, {{ lon }}], 5); var map = L.map('map').setView([{{ lat }}, {{ lon }}], 5);
L.tileLayer('http://{s}.tile.opentopomap.org/{z}/{x}/{y}.png', { L.tileLayer('https://{s}.tile.opentopomap.org/{z}/{x}/{y}.png', {
maxZoom: 18, maxZoom: 18,
attribution: '{{ community_name }}, AK' attribution: '{{ community_name }}, AK'
}).addTo(map); }).addTo(map);

View file

@ -197,18 +197,18 @@
group. It does not aim to replace, modify, or build on SNAP's work, but rather provide an alternative 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.</dd> means for users to explore and understand the data.</dd>
<dt>How</dt> <dt>How</dt>
<dd>AKIndices is built with <a href="http://www.python.org" target="_blank">python</a>. Check out <dd>AKIndices is built with <a href="https://www.python.org" target="_blank">python</a>. Check out
<a href="http://github.com/thermokarst/AKExtract" target="_blank">AKExtract</a> and <a href="https://github.com/thermokarst/AKExtract" target="_blank">AKExtract</a> and
<a href="http://github.com/thermokarst/AKIndices" target="_blank">AKIndices</a> on GitHub for more info <a href="https://github.com/thermokarst/AKIndices" target="_blank">AKIndices</a> on GitHub for more info
on how to install on your own machine, fork the project, or submit on how to install on your own machine, fork the project, or submit
<a href="http://github.com/thermokarst/AKIndices/issues" target="_blank">bug reports.</a> <a href="https://github.com/thermokarst/AKIndices/issues" target="_blank">bug reports.</a>
In a nutshell, AKExtract takes a list of communities and their coordinates, as well as SNAP datasets, In a nutshell, AKExtract 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. AKIndices and extracts the air temperature data from the data point closest to a community's location. AKIndices
is the front-end for interacting with that extracted data. is the front-end for interacting with that extracted data.
</dd> </dd>
<dt>Who</dt> <dt>Who</dt>
<dd>This project is the work of <a href="mailto:mrdillon@alaska.edu">Matthew Dillon.</a> <dd>This project is the work of <a href="mailto:mrdillon@alaska.edu">Matthew Dillon.</a>
While this project would not exist without <a href="http://www.snap.uaf.edu" target="_blank">SNAP</a>, While this project would not exist without <a href="https://uaf-snap.org/" target="_blank">SNAP</a>,
AKIndices is <em>not endorsed or supported by SNAP in any way.</em> Before utilizing the derived data AKIndices is <em>not endorsed or supported by SNAP in any way.</em> Before utilizing the derived data
from AKIndices make sure to take a look at SNAP's page to learn about the science from AKIndices make sure to take a look at SNAP's page to learn about the science
and the methods behind their products.<br> and the methods behind their products.<br>
@ -216,10 +216,10 @@
</dl> </dl>
<h4>This product is provided as-is, with no warranty express or implied. Use at your own risk.</h4> <h4>This product is provided as-is, with no warranty express or implied. Use at your own risk.</h4>
<h4>Commercial use disclaimer: It is the sole responsibility of the user to execute any agreements <h4>Commercial use disclaimer: It is the sole responsibility of the user to execute any agreements
with SNAP <a href="http://www.snap.uaf.edu/people.php?topic=data#contact" target="_blank">regarding commercial with SNAP <a href="https://uaf-snap.org/contact/" target="_blank">regarding commercial
use</a> of the SNAP data (potentially including the derived products found on this page).</h4> use</a> of the SNAP data (potentially including the derived products found on this page).</h4>
<h4>Question? Comment? Find a problem? <a href="mailto:mrdillon@alaska.edu">Email me</a> <h4>Question? Comment? Find a problem? <a href="mailto:matthew@akdillon.net">Email me</a>
or <a href="http://github.com/thermokarst/AKIndices/issues" target="_blank">submit a bug report!</a></h4> or <a href="https://github.com/thermokarst/AKIndices/issues" target="_blank">submit a bug report!</a></h4>
</div> </div>
{% endblock %} {% endblock %}

View file

@ -6,7 +6,7 @@ class Config:
APP_NAME = 'AKIndices' APP_NAME = 'AKIndices'
APP_VERSION = '0.2.0' APP_VERSION = '0.2.0'
TITLE = 'AKIndices' TITLE = 'AKIndices'
COPYRIGHT_YEAR = 2015 COPYRIGHT_YEAR = 2021
CSRF_ENABLED = True CSRF_ENABLED = True
DEBUG = False DEBUG = False