Changeset 1020
- Timestamp:
- 08/02/12 12:54:01 (10 months ago)
- Location:
- MGET/Branches/Jason/PythonPackage/src/GeoEco/DataProducts
- Files:
-
- 7 modified
-
Aviso.py (modified) (4 diffs)
-
HYCOM.py (modified) (4 diffs)
-
NASA/OceanColor.py (modified) (4 diffs)
-
NASA/PODAAC.py (modified) (4 diffs)
-
NOAA/NODC.py (modified) (4 diffs)
-
NOAA/OSCAR.py (modified) (4 diffs)
-
UMaineOMG.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
MGET/Branches/Jason/PythonPackage/src/GeoEco/DataProducts/Aviso.py
r968 r1020 1274 1274 1275 1275 AddArgumentMetadata(AvisoGriddedSSH.CreateClimatologicalArcGISRasters, u'binType', 1276 typeMetadata=UnicodeStringTypeMetadata(allowedValues=[u'Daily', u'Monthly', u'Cumulative' ], makeLowercase=True),1276 typeMetadata=UnicodeStringTypeMetadata(allowedValues=[u'Daily', u'Monthly', u'Cumulative', u'ENSO Daily', u'ENSO Monthly', u'ENSO Cumulative'], makeLowercase=True), 1277 1277 description=_( 1278 1278 u"""Climatology bins to use, one of: … … 1309 1309 from the entire dataset. The Bin Duration parameter is ignored. 1310 1310 1311 * ENSO Daily, ENSO Monthly, ENSO Cumulative - the same as above, 1312 except each of the bins above will be split into three, based on the 1313 phase of the `El Nino Southern Oscillation (ENSO) <http://en.wikipedia.org/wiki/ENSO>`_, 1314 as determined by the Oceanic Nino Index (ONI) calculated by the 1315 `NOAA NCEP Climate Prediction Center <http://www.cpc.ncep.noaa.gov/products/analysis_monitoring/ensostuff/ensoyears.shtml>`_. 1316 The ONI classifies each month into one of three phases: neutral, El 1317 Nino, or La Nina. This tool first classifies input images according 1318 to their dates into ENSO phases (it downloads ONI data from the 1319 `NOAA Earth System Research Laboratory <http://www.esrl.noaa.gov/psd/data/climateindices/list/>`_), 1320 then produces a climatology bin for each phase. For example, if you 1321 request ENSO Cumulative bins, three bins will be produced: one for 1322 all images occurring in neutral months, one for all in El Nino 1323 months, and one for all in La Nina months. If you request ENSO 1324 Monthly bins, 36 bins will be produced: one for each combination of 1325 the 12 months and the three ENSO phases. 1326 1311 1327 For Daily and Monthly, to adjust when the bins start (e.g. to center a 1312 1328 4-bin seasonal climatology on solstices and equinoxes), use the Start … … 1386 1402 if 1-day bins, "Xday" if multi-day bins (X is replaced by the 1387 1403 duration), "Monthly" if 1-month bins, "Xmonth" if multi-month bins, 1388 or "Cumulative". 1404 or "Cumulative". If an ENSO bin type is used, "ENSO_" will be 1405 prepended to those strings (e.g. "ENSO_Daily", "ENSO_Monthly"). 1389 1406 1390 1407 * %(ClimatologyBinName)s - name of the climatology bin corresponding … … 1394 1411 replaced by the last day), "monthXX" for 1-month bins (XX is 1395 1412 replaced by the month), "monthXXtoYY" (XX is replaced by the first 1396 month of the bin, YY by the last month), or "cumulative". 1413 month of the bin, YY by the last month), or "cumulative". If an ENSO 1414 bin type is used, "neutral_", "ElNino_", and "LaNina_" will be 1415 prepended to those strings for each of the three ENSO phased rasters 1416 (e.g. "neutral_cumulative", "ElNino_cumulative", and 1417 "LaNina_cumulative" when "ENSO Cumulative" bins are requested). 1397 1418 1398 1419 * %(Statistic)s - statistic that was calculated, in lowercase and with -
MGET/Branches/Jason/PythonPackage/src/GeoEco/DataProducts/HYCOM.py
r974 r1020 2385 2385 2386 2386 AddArgumentMetadata(HYCOMGOMl0043D.CreateClimatologicalArcGISRasters, u'binType', 2387 typeMetadata=UnicodeStringTypeMetadata(allowedValues=[u'Daily', u'Monthly', u'Cumulative' ], makeLowercase=True),2387 typeMetadata=UnicodeStringTypeMetadata(allowedValues=[u'Daily', u'Monthly', u'Cumulative', u'ENSO Daily', u'ENSO Monthly', u'ENSO Cumulative'], makeLowercase=True), 2388 2388 description=_( 2389 2389 u"""Climatology bins to use, one of: … … 2420 2420 from the entire dataset. The Bin Duration parameter is ignored. 2421 2421 2422 * ENSO Daily, ENSO Monthly, ENSO Cumulative - the same as above, 2423 except each of the bins above will be split into three, based on the 2424 phase of the `El Nino Southern Oscillation (ENSO) <http://en.wikipedia.org/wiki/ENSO>`_, 2425 as determined by the Oceanic Nino Index (ONI) calculated by the 2426 `NOAA NCEP Climate Prediction Center <http://www.cpc.ncep.noaa.gov/products/analysis_monitoring/ensostuff/ensoyears.shtml>`_. 2427 The ONI classifies each month into one of three phases: neutral, El 2428 Nino, or La Nina. This tool first classifies input images according 2429 to their dates into ENSO phases (it downloads ONI data from the 2430 `NOAA Earth System Research Laboratory <http://www.esrl.noaa.gov/psd/data/climateindices/list/>`_), 2431 then produces a climatology bin for each phase. For example, if you 2432 request ENSO Cumulative bins, three bins will be produced: one for 2433 all images occurring in neutral months, one for all in El Nino 2434 months, and one for all in La Nina months. If you request ENSO 2435 Monthly bins, 36 bins will be produced: one for each combination of 2436 the 12 months and the three ENSO phases. 2437 2422 2438 For Daily and Monthly, to adjust when the bins start (e.g. to center a 2423 2439 4-bin seasonal climatology on solstices and equinoxes), use the Start … … 2474 2490 if 1-day bins, "Xday" if multi-day bins (X is replaced by the 2475 2491 duration), "Monthly" if 1-month bins, "Xmonth" if multi-month bins, 2476 or "Cumulative". 2492 or "Cumulative". If an ENSO bin type is used, "ENSO_" will be 2493 prepended to those strings (e.g. "ENSO_Daily", "ENSO_Monthly"). 2477 2494 2478 2495 * %(ClimatologyBinName)s - name of the climatology bin corresponding … … 2482 2499 replaced by the last day), "monthXX" for 1-month bins (XX is 2483 2500 replaced by the month), "monthXXtoYY" (XX is replaced by the first 2484 month of the bin, YY by the last month), or "cumulative". 2501 month of the bin, YY by the last month), or "cumulative". If an ENSO 2502 bin type is used, "neutral_", "ElNino_", and "LaNina_" will be 2503 prepended to those strings for each of the three ENSO phased rasters 2504 (e.g. "neutral_cumulative", "ElNino_cumulative", and 2505 "LaNina_cumulative" when "ENSO Cumulative" bins are requested). 2485 2506 2486 2507 * %(Statistic)s - statistic that was calculated, in lowercase and with -
MGET/Branches/Jason/PythonPackage/src/GeoEco/DataProducts/NASA/OceanColor.py
r989 r1020 1385 1385 1386 1386 AddArgumentMetadata(OceanColorLevel3SMITimeSeries.CreateClimatologicalArcGISRasters, u'binType', 1387 typeMetadata=UnicodeStringTypeMetadata(allowedValues=[u'Daily', u'Monthly', u'Cumulative' ], makeLowercase=True),1387 typeMetadata=UnicodeStringTypeMetadata(allowedValues=[u'Daily', u'Monthly', u'Cumulative', u'ENSO Daily', u'ENSO Monthly', u'ENSO Cumulative'], makeLowercase=True), 1388 1388 description=_( 1389 1389 u"""Climatology bins to use, one of: … … 1420 1420 from the entire dataset. The Bin Duration parameter is ignored. 1421 1421 1422 * ENSO Daily, ENSO Monthly, ENSO Cumulative - the same as above, 1423 except each of the bins above will be split into three, based on the 1424 phase of the `El Nino Southern Oscillation (ENSO) <http://en.wikipedia.org/wiki/ENSO>`_, 1425 as determined by the Oceanic Nino Index (ONI) calculated by the 1426 `NOAA NCEP Climate Prediction Center <http://www.cpc.ncep.noaa.gov/products/analysis_monitoring/ensostuff/ensoyears.shtml>`_. 1427 The ONI classifies each month into one of three phases: neutral, El 1428 Nino, or La Nina. This tool first classifies input images according 1429 to their dates into ENSO phases (it downloads ONI data from the 1430 `NOAA Earth System Research Laboratory <http://www.esrl.noaa.gov/psd/data/climateindices/list/>`_), 1431 then produces a climatology bin for each phase. For example, if you 1432 request ENSO Cumulative bins, three bins will be produced: one for 1433 all images occurring in neutral months, one for all in El Nino 1434 months, and one for all in La Nina months. If you request ENSO 1435 Monthly bins, 36 bins will be produced: one for each combination of 1436 the 12 months and the three ENSO phases. 1437 1422 1438 For Daily and Monthly, to adjust when the bins start (e.g. to center a 1423 1439 4-bin seasonal climatology on solstices and equinoxes), use the Start … … 1493 1509 if 1-day bins, "Xday" if multi-day bins (X is replaced by the 1494 1510 duration), "Monthly" if 1-month bins, "Xmonth" if multi-month bins, 1495 or "Cumulative". 1511 or "Cumulative". If an ENSO bin type is used, "ENSO_" will be 1512 prepended to those strings (e.g. "ENSO_Daily", "ENSO_Monthly"). 1496 1513 1497 1514 * %(ClimatologyBinName)s - name of the climatology bin corresponding … … 1501 1518 replaced by the last day), "monthXX" for 1-month bins (XX is 1502 1519 replaced by the month), "monthXXtoYY" (XX is replaced by the first 1503 month of the bin, YY by the last month), or "cumulative". 1520 month of the bin, YY by the last month), or "cumulative". If an ENSO 1521 bin type is used, "neutral_", "ElNino_", and "LaNina_" will be 1522 prepended to those strings for each of the three ENSO phased rasters 1523 (e.g. "neutral_cumulative", "ElNino_cumulative", and 1524 "LaNina_cumulative" when "ENSO Cumulative" bins are requested). 1504 1525 1505 1526 * %(Statistic)s - statistic that was calculated, in lowercase and with -
MGET/Branches/Jason/PythonPackage/src/GeoEco/DataProducts/NASA/PODAAC.py
r960 r1020 1492 1492 1493 1493 AddArgumentMetadata(MODISL3SSTTimeSeries.CreateClimatologicalArcGISRasters, u'binType', 1494 typeMetadata=UnicodeStringTypeMetadata(allowedValues=[u'Daily', u'Monthly', u'Cumulative' ], makeLowercase=True),1494 typeMetadata=UnicodeStringTypeMetadata(allowedValues=[u'Daily', u'Monthly', u'Cumulative', u'ENSO Daily', u'ENSO Monthly', u'ENSO Cumulative'], makeLowercase=True), 1495 1495 description=_( 1496 1496 u"""Climatology bins to use, one of: … … 1527 1527 from the entire dataset. The Bin Duration parameter is ignored. 1528 1528 1529 * ENSO Daily, ENSO Monthly, ENSO Cumulative - the same as above, 1530 except each of the bins above will be split into three, based on the 1531 phase of the `El Nino Southern Oscillation (ENSO) <http://en.wikipedia.org/wiki/ENSO>`_, 1532 as determined by the Oceanic Nino Index (ONI) calculated by the 1533 `NOAA NCEP Climate Prediction Center <http://www.cpc.ncep.noaa.gov/products/analysis_monitoring/ensostuff/ensoyears.shtml>`_. 1534 The ONI classifies each month into one of three phases: neutral, El 1535 Nino, or La Nina. This tool first classifies input images according 1536 to their dates into ENSO phases (it downloads ONI data from the 1537 `NOAA Earth System Research Laboratory <http://www.esrl.noaa.gov/psd/data/climateindices/list/>`_), 1538 then produces a climatology bin for each phase. For example, if you 1539 request ENSO Cumulative bins, three bins will be produced: one for 1540 all images occurring in neutral months, one for all in El Nino 1541 months, and one for all in La Nina months. If you request ENSO 1542 Monthly bins, 36 bins will be produced: one for each combination of 1543 the 12 months and the three ENSO phases. 1544 1529 1545 For Daily and Monthly, to adjust when the bins start (e.g. to center a 1530 1546 4-bin seasonal climatology on solstices and equinoxes), use the Start … … 1615 1631 if 1-day bins, "Xday" if multi-day bins (X is replaced by the 1616 1632 duration), "Monthly" if 1-month bins, "Xmonth" if multi-month bins, 1617 or "Cumulative". 1633 or "Cumulative". If an ENSO bin type is used, "ENSO_" will be 1634 prepended to those strings (e.g. "ENSO_Daily", "ENSO_Monthly"). 1618 1635 1619 1636 * %(ClimatologyBinName)s - name of the climatology bin corresponding … … 1623 1640 replaced by the last day), "monthXX" for 1-month bins (XX is 1624 1641 replaced by the month), "monthXXtoYY" (XX is replaced by the first 1625 month of the bin, YY by the last month), or "cumulative". 1642 month of the bin, YY by the last month), or "cumulative". If an ENSO 1643 bin type is used, "neutral_", "ElNino_", and "LaNina_" will be 1644 prepended to those strings for each of the three ENSO phased rasters 1645 (e.g. "neutral_cumulative", "ElNino_cumulative", and 1646 "LaNina_cumulative" when "ENSO Cumulative" bins are requested). 1626 1647 1627 1648 * %(Statistic)s - statistic that was calculated, in lowercase and with -
MGET/Branches/Jason/PythonPackage/src/GeoEco/DataProducts/NOAA/NODC.py
r955 r1020 2512 2512 2513 2513 AddArgumentMetadata(AVHRRPathfinderSSTTimeSeries.CreateClimatologicalArcGISRasters, u'binType', 2514 typeMetadata=UnicodeStringTypeMetadata(allowedValues=[u'Daily', u'Monthly', u'Cumulative' ], makeLowercase=True),2514 typeMetadata=UnicodeStringTypeMetadata(allowedValues=[u'Daily', u'Monthly', u'Cumulative', u'ENSO Daily', u'ENSO Monthly', u'ENSO Cumulative'], makeLowercase=True), 2515 2515 description=_( 2516 2516 u"""Climatology bins to use, one of: … … 2547 2547 from the entire dataset. The Bin Duration parameter is ignored. 2548 2548 2549 * ENSO Daily, ENSO Monthly, ENSO Cumulative - the same as above, 2550 except each of the bins above will be split into three, based on the 2551 phase of the `El Nino Southern Oscillation (ENSO) <http://en.wikipedia.org/wiki/ENSO>`_, 2552 as determined by the Oceanic Nino Index (ONI) calculated by the 2553 `NOAA NCEP Climate Prediction Center <http://www.cpc.ncep.noaa.gov/products/analysis_monitoring/ensostuff/ensoyears.shtml>`_. 2554 The ONI classifies each month into one of three phases: neutral, El 2555 Nino, or La Nina. This tool first classifies input images according 2556 to their dates into ENSO phases (it downloads ONI data from the 2557 `NOAA Earth System Research Laboratory <http://www.esrl.noaa.gov/psd/data/climateindices/list/>`_), 2558 then produces a climatology bin for each phase. For example, if you 2559 request ENSO Cumulative bins, three bins will be produced: one for 2560 all images occurring in neutral months, one for all in El Nino 2561 months, and one for all in La Nina months. If you request ENSO 2562 Monthly bins, 36 bins will be produced: one for each combination of 2563 the 12 months and the three ENSO phases. 2564 2549 2565 For Daily and Monthly, to adjust when the bins start (e.g. to center a 2550 2566 4-bin seasonal climatology on solstices and equinoxes), use the Start … … 2609 2625 if 1-day bins, "Xday" if multi-day bins (X is replaced by the 2610 2626 duration), "Monthly" if 1-month bins, "Xmonth" if multi-month bins, 2611 or "Cumulative". 2627 or "Cumulative". If an ENSO bin type is used, "ENSO_" will be 2628 prepended to those strings (e.g. "ENSO_Daily", "ENSO_Monthly"). 2612 2629 2613 2630 * %(ClimatologyBinName)s - name of the climatology bin corresponding … … 2617 2634 replaced by the last day), "monthXX" for 1-month bins (XX is 2618 2635 replaced by the month), "monthXXtoYY" (XX is replaced by the first 2619 month of the bin, YY by the last month), or "cumulative". 2636 month of the bin, YY by the last month), or "cumulative". If an ENSO 2637 bin type is used, "neutral_", "ElNino_", and "LaNina_" will be 2638 prepended to those strings for each of the three ENSO phased rasters 2639 (e.g. "neutral_cumulative", "ElNino_cumulative", and 2640 "LaNina_cumulative" when "ENSO Cumulative" bins are requested). 2620 2641 2621 2642 * %(Statistic)s - statistic that was calculated, in lowercase and with -
MGET/Branches/Jason/PythonPackage/src/GeoEco/DataProducts/NOAA/OSCAR.py
r968 r1020 806 806 807 807 AddArgumentMetadata(OSCAR5DayThirdDegreeCurrents.CreateClimatologicalArcGISRasters, u'binType', 808 typeMetadata=UnicodeStringTypeMetadata(allowedValues=[u'Daily', u'Monthly', u'Cumulative' ], makeLowercase=True),808 typeMetadata=UnicodeStringTypeMetadata(allowedValues=[u'Daily', u'Monthly', u'Cumulative', u'ENSO Daily', u'ENSO Monthly', u'ENSO Cumulative'], makeLowercase=True), 809 809 description=_( 810 810 u"""Climatology bins to use, one of: … … 841 841 from the entire dataset. The Bin Duration parameter is ignored. 842 842 843 * ENSO Daily, ENSO Monthly, ENSO Cumulative - the same as above, 844 except each of the bins above will be split into three, based on the 845 phase of the `El Nino Southern Oscillation (ENSO) <http://en.wikipedia.org/wiki/ENSO>`_, 846 as determined by the Oceanic Nino Index (ONI) calculated by the 847 `NOAA NCEP Climate Prediction Center <http://www.cpc.ncep.noaa.gov/products/analysis_monitoring/ensostuff/ensoyears.shtml>`_. 848 The ONI classifies each month into one of three phases: neutral, El 849 Nino, or La Nina. This tool first classifies input images according 850 to their dates into ENSO phases (it downloads ONI data from the 851 `NOAA Earth System Research Laboratory <http://www.esrl.noaa.gov/psd/data/climateindices/list/>`_), 852 then produces a climatology bin for each phase. For example, if you 853 request ENSO Cumulative bins, three bins will be produced: one for 854 all images occurring in neutral months, one for all in El Nino 855 months, and one for all in La Nina months. If you request ENSO 856 Monthly bins, 36 bins will be produced: one for each combination of 857 the 12 months and the three ENSO phases. 858 843 859 For Daily and Monthly, to adjust when the bins start (e.g. to center a 844 860 4-bin seasonal climatology on solstices and equinoxes), use the Start … … 897 913 if 1-day bins, "Xday" if multi-day bins (X is replaced by the 898 914 duration), "Monthly" if 1-month bins, "Xmonth" if multi-month bins, 899 or "Cumulative". 915 or "Cumulative". If an ENSO bin type is used, "ENSO_" will be 916 prepended to those strings (e.g. "ENSO_Daily", "ENSO_Monthly"). 900 917 901 918 * %(ClimatologyBinName)s - name of the climatology bin corresponding … … 905 922 replaced by the last day), "monthXX" for 1-month bins (XX is 906 923 replaced by the month), "monthXXtoYY" (XX is replaced by the first 907 month of the bin, YY by the last month), or "cumulative". 924 month of the bin, YY by the last month), or "cumulative". If an ENSO 925 bin type is used, "neutral_", "ElNino_", and "LaNina_" will be 926 prepended to those strings for each of the three ENSO phased rasters 927 (e.g. "neutral_cumulative", "ElNino_cumulative", and 928 "LaNina_cumulative" when "ENSO Cumulative" bins are requested). 908 929 909 930 * %(Statistic)s - statistic that was calculated, in lowercase and with -
MGET/Branches/Jason/PythonPackage/src/GeoEco/DataProducts/UMaineOMG.py
r939 r1020 1750 1750 1751 1751 AddArgumentMetadata(ROMSCoSiNE3D.CreateClimatologicalArcGISRasters, u'binType', 1752 typeMetadata=UnicodeStringTypeMetadata(allowedValues=[u'Daily', u'Monthly', u'Cumulative' ], makeLowercase=True),1752 typeMetadata=UnicodeStringTypeMetadata(allowedValues=[u'Daily', u'Monthly', u'Cumulative', u'ENSO Daily', u'ENSO Monthly', u'ENSO Cumulative'], makeLowercase=True), 1753 1753 description=_( 1754 1754 u"""Climatology bins to use, one of: … … 1785 1785 from the entire dataset. The Bin Duration parameter is ignored. 1786 1786 1787 * ENSO Daily, ENSO Monthly, ENSO Cumulative - the same as above, 1788 except each of the bins above will be split into three, based on the 1789 phase of the `El Nino Southern Oscillation (ENSO) <http://en.wikipedia.org/wiki/ENSO>`_, 1790 as determined by the Oceanic Nino Index (ONI) calculated by the 1791 `NOAA NCEP Climate Prediction Center <http://www.cpc.ncep.noaa.gov/products/analysis_monitoring/ensostuff/ensoyears.shtml>`_. 1792 The ONI classifies each month into one of three phases: neutral, El 1793 Nino, or La Nina. This tool first classifies input images according 1794 to their dates into ENSO phases (it downloads ONI data from the 1795 `NOAA Earth System Research Laboratory <http://www.esrl.noaa.gov/psd/data/climateindices/list/>`_), 1796 then produces a climatology bin for each phase. For example, if you 1797 request ENSO Cumulative bins, three bins will be produced: one for 1798 all images occurring in neutral months, one for all in El Nino 1799 months, and one for all in La Nina months. If you request ENSO 1800 Monthly bins, 36 bins will be produced: one for each combination of 1801 the 12 months and the three ENSO phases. 1802 1787 1803 For Daily and Monthly, to adjust when the bins start (e.g. to center a 1788 1804 4-bin seasonal climatology on solstices and equinoxes), use the Start … … 1839 1855 if 1-day bins, "Xday" if multi-day bins (X is replaced by the 1840 1856 duration), "Monthly" if 1-month bins, "Xmonth" if multi-month bins, 1841 or "Cumulative". 1857 or "Cumulative". If an ENSO bin type is used, "ENSO_" will be 1858 prepended to those strings (e.g. "ENSO_Daily", "ENSO_Monthly"). 1842 1859 1843 1860 * %(ClimatologyBinName)s - name of the climatology bin corresponding … … 1847 1864 replaced by the last day), "monthXX" for 1-month bins (XX is 1848 1865 replaced by the month), "monthXXtoYY" (XX is replaced by the first 1849 month of the bin, YY by the last month), or "cumulative". 1866 month of the bin, YY by the last month), or "cumulative". If an ENSO 1867 bin type is used, "neutral_", "ElNino_", and "LaNina_" will be 1868 prepended to those strings for each of the three ENSO phased rasters 1869 (e.g. "neutral_cumulative", "ElNino_cumulative", and 1870 "LaNina_cumulative" when "ENSO Cumulative" bins are requested). 1850 1871 1851 1872 * %(Statistic)s - statistic that was calculated, in lowercase and with
