You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(115) |
Aug
(120) |
Sep
(137) |
Oct
(170) |
Nov
(461) |
Dec
(263) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(120) |
Feb
(74) |
Mar
(35) |
Apr
(74) |
May
(245) |
Jun
(356) |
Jul
(240) |
Aug
(115) |
Sep
(78) |
Oct
(225) |
Nov
(98) |
Dec
(271) |
2009 |
Jan
(132) |
Feb
(84) |
Mar
(74) |
Apr
(56) |
May
(90) |
Jun
(79) |
Jul
(83) |
Aug
(296) |
Sep
(214) |
Oct
(76) |
Nov
(82) |
Dec
(66) |
2010 |
Jan
(46) |
Feb
(58) |
Mar
(51) |
Apr
(77) |
May
(58) |
Jun
(126) |
Jul
(128) |
Aug
(64) |
Sep
(50) |
Oct
(44) |
Nov
(48) |
Dec
(54) |
2011 |
Jan
(68) |
Feb
(52) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
1
(7) |
2
(14) |
3
(6) |
4
(8) |
5
(6) |
6
(3) |
7
(2) |
8
(22) |
9
(9) |
10
(23) |
11
(14) |
12
(22) |
13
(7) |
14
(3) |
15
(22) |
16
(13) |
17
(18) |
18
(21) |
19
(9) |
20
|
21
(3) |
22
(6) |
23
(5) |
24
|
25
|
26
(3) |
27
|
28
(1) |
29
(11) |
30
(1) |
31
(12) |
|
|
|
Revision: 6705 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6705&view=rev Author: jswhit Date: 2008年12月28日 16:07:10 +0000 (2008年12月28日) Log Message: ----------- simplify calculation of geostationary limb Modified Paths: -------------- trunk/toolkits/basemap/lib/mpl_toolkits/basemap/proj.py Modified: trunk/toolkits/basemap/lib/mpl_toolkits/basemap/proj.py =================================================================== --- trunk/toolkits/basemap/lib/mpl_toolkits/basemap/proj.py 2008年12月26日 23:20:56 UTC (rev 6704) +++ trunk/toolkits/basemap/lib/mpl_toolkits/basemap/proj.py 2008年12月28日 16:07:10 UTC (rev 6705) @@ -94,20 +94,21 @@ elif self.projection == 'geos': self._proj4 = pyproj.Proj(projparams) # find major and minor axes of ellipse defining map proj region. - delta = 0.01 - lats = np.arange(0,90,delta) - lon_0 = projparams['lon_0'] - lons = lon_0*np.ones(len(lats),'d') - x, y = self._proj4(lons, lats) - yi = (y > 1.e20).tolist() - ny = yi.index(1)-1 - height = y[ny] - lons = np.arange(lon_0,lon_0+90,delta) - lats = np.zeros(len(lons),'d') - x, y = self(lons, lats) - xi = (x > 1.e20).tolist() - nx = xi.index(1)-1 - width = x[nx] + # h is measured from surface of earth at equator. + h = projparams['h'] + self.rmajor + # latitude of horizon on central meridian + lonmax = 90.-(180./np.pi)*np.arcsin(self.rmajor/h) + # longitude of horizon on equator + latmax = 90.-(180./np.pi)*np.arcsin(self.rminor/h) + # truncate to nearest hundredth of a degree (to make sure + # they aren't slightly over the horizon) + latmax = int(100*latmax)/100. + lonmax = int(100*lonmax)/100. + # width and height of visible projection + P = pyproj.Proj(proj='geos',a=self.rmajor,\ + b=self.rminor,lat_0=0,lon_0=0,h=projparams['h']) + x1,y1 = P(0.,latmax); x2,y2 = P(lonmax,0.) + width = x2; height = y1 self._height = height self._width = width if (llcrnrlon == -180 and llcrnrlat == -90 and This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.