jgrib-commits Mailing List for Java GRIB reader
Status: Beta
Brought to you by:
kjellr
You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
(6) |
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
(4) |
Dec
|
| 2005 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2006 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
(43) |
Aug
(44) |
Sep
(18) |
Oct
(1) |
Nov
(1) |
Dec
|
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(10) |
Nov
(2) |
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
|
1
|
2
|
3
|
4
|
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
|
26
|
27
|
28
|
29
(2) |
30
|
31
|
|
|
From: Tor C. B. <to...@us...> - 2006-03-29 11:48:51
|
Update of /cvsroot/jgrib/jgrib/src/net/sourceforge/jgrib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv515/src/net/sourceforge/jgrib Modified Files: GribPDSParamTable.java Log Message: Try default GRIB table if undefined center Index: GribPDSParamTable.java =================================================================== RCS file: /cvsroot/jgrib/jgrib/src/net/sourceforge/jgrib/GribPDSParamTable.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** GribPDSParamTable.java 30 Mar 2005 07:34:27 -0000 1.7 --- GribPDSParamTable.java 29 Mar 2006 11:48:43 -0000 1.8 *************** *** 526,529 **** --- 526,530 ---- } } + GribPDSParamTable def = null; //search matching table ( - ,table(1..3)) for (int i = paramTables.length - 1; i >= 0; i--){ *************** *** 535,542 **** return table; } } ! throw new NotSupportedException("Grib table not supported; cent " ! + center + ",sub " + subcenter + ",table " + number); // System.out.println("cent, sub, tab: "+center+" "+subcenter+" "+number); --- 536,554 ---- return table; } + if (table.center_id == -1 && table.table_number == -1){ + def = table; + } } ! String msg = "Grib table not supported; cent " ! + center + ",sub " + subcenter + ",table " + number; ! if (def != null) ! { ! System.out.println(msg + ". Using " + def.center_id + ", " + def.table_number ! + " " + def.filename); ! def.readParameterTable(); ! return def; ! } ! throw new NotSupportedException(msg); // System.out.println("cent, sub, tab: "+center+" "+subcenter+" "+number); *************** *** 726,728 **** } - --- 738,739 ---- |
|
From: Tor C. B. <to...@us...> - 2006-03-29 11:48:51
|
Update of /cvsroot/jgrib/jgrib/tables In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv515/tables Modified Files: tablelookup.lst Log Message: Try default GRIB table if undefined center Index: tablelookup.lst =================================================================== RCS file: /cvsroot/jgrib/jgrib/tables/tablelookup.lst,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** tablelookup.lst 30 Mar 2005 07:34:28 -0000 1.6 --- tablelookup.lst 29 Mar 2006 11:48:43 -0000 1.7 *************** *** 16,17 **** --- 16,19 ---- 74: -1: 128: ukmetoffice_AML2.tab + -1: -1: 160: ecmwf_160.tab + //-1: -1: -1: ncep_opn.tab |