duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
| WITH RECURSIVE | |
| x(i) AS ( VALUES (0) | |
| UNION ALL SELECT i + 1 | |
| FROM x | |
| WHERE i < 101), | |
| Z(Ix, Iy, Cx, Cy, X, Y, I) AS ( | |
| SELECT | |
| Ix, | |
| Iy, | |
| X :: FLOAT, |
| from osgeo import gdal | |
| import matplotlib.pyplot as plt | |
| import numpy as np | |
| from mpl_toolkits.basemap import Basemap | |
| # Plotting 2070 projected August (8) precip from worldclim | |
| gdata = gdal.Open("D:/jon/datasets/worldclim/future/pr/gf45pr70_usa/gf45pr708.tif") | |
| geo = gdata.GetGeoTransform() | |
| data = gdata.ReadAsArray() |
| from disco.worker.classic.func import task_output_stream | |
| class S3Output(object): | |
| """ | |
| Output stream for S3. | |
| key from each reduce becomes key name in S3 | |
| If gzip param is True, it gzips before uploading. | |
| AWS_KEY, AWS_SECRET and BUCKET_NAME in params is required. | |
| """ | |
| def __init__(self,stream,params): |
| ; A REPL-based, annotated Seesaw tutorial | |
| ; Please visit https://github.com/daveray/seesaw for more info | |
| ; | |
| ; This is a very basic intro to Seesaw, a Clojure UI toolkit. It covers | |
| ; Seesaw's basic features and philosophy, but only scratches the surface | |
| ; of what's available. It only assumes knowledge of Clojure. No Swing or | |
| ; Java experience is needed. | |
| ; | |
| ; This material was first presented in a talk at @CraftsmanGuild in | |
| ; Ann Arbor, MI. |