Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only" default-locale="en-GB"> | |
<info> | |
<title>Minimal style for grant proposals</title> | |
<!--<id>http://csl.mendeley.com/styles/20448741/minimal-grant-proposals</id>--> | |
<id>http://www.zotero.org/styles/minimal-grant-proposals</id> | |
<link href="http://www.zotero.org/styles/minimal-grant-proposals" rel="self"/> | |
<author> | |
<name>Anton Crombach</name> | |
<email>[email protected]</email> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from matplotlib import pylab # .exe install is on sourceforge | |
import numpy# easy_install numpy | |
from mpl_toolkits.basemap import Basemap # easy_install basemap | |
# functions to create some random data points and convert them to meters via the map projection | |
def create_points_in_lon_lat(N=10000): | |
return zip(numpy.random.standard_normal(N)*360, numpy.random.standard_normal(N) * 45) | |
def convert_lon_lat_points_to_meters_using_transform(points, tran): | |
# maybe there is a better way to get long/lat into meters but this works ok |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Copyright: This document has been placed in the public domain. | |
""" | |
Taylor diagram (Taylor, 2001) implementation. | |
Note: If you have found these software useful for your research, I would | |
appreciate an acknowledgment. | |
""" |