[kepler-code] r28781 - trunk/modules/science-pipes-backend/config/workflow-iteration
barseghian at ecoinformatics.org
barseghian at ecoinformatics.org
Fri Oct 7 16:48:22 PDT 2011
Author: barseghian
Date: 2011-10-07 16:48:22 -0700 (Fri, 07 Oct 2011)
New Revision: 28781
Added:
trunk/modules/science-pipes-backend/config/workflow-iteration/survivorship-data-config.xml
Modified:
trunk/modules/science-pipes-backend/config/workflow-iteration/akn-data-config.xml
trunk/modules/science-pipes-backend/config/workflow-iteration/server.deployment.properties
Log:
changes for survivorship and hardcodes
Modified: trunk/modules/science-pipes-backend/config/workflow-iteration/akn-data-config.xml
===================================================================
--- trunk/modules/science-pipes-backend/config/workflow-iteration/akn-data-config.xml 2011-10-07 23:45:36 UTC (rev 28780)
+++ trunk/modules/science-pipes-backend/config/workflow-iteration/akn-data-config.xml 2011-10-07 23:48:22 UTC (rev 28781)
@@ -9,20 +9,20 @@
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
<bean id="aknDataProvider" class="edu.cornell.birds.is.bap.data.akn.AKNDataProviderImpl">
- <property name="pathToParentDirectory" value="c:\temp\bap-data\ebird"/>
+ <property name="pathToParentDirectory" value="/Users/derik/dev2/bap-data/ebird"/>
<property name="dataFormat" value="BMDEv1.38" />
<property name="collectionDescription" value="This dataset was downloaded from the Avian Knowledge Network (http://www.avianknowledge.net/content/download/packages/observation_data/project/ebird_all/) on Jan. 18, 2010. It contains an extract of all eBird data in the AKN system as of Jan. 15, 2010. Invalid records have been excised from this dataset. The format of the data is BMDE v1.38 (http://www.avianknowledge.net/content/contribute/the-bird-monitoring-data-exchange)." />
</bean>
<bean id="aknSubsetDataProvider" class="edu.cornell.birds.is.bap.data.akn.AKNDataProviderImpl">
- <property name="pathToParentDirectory" value="c:\temp\bap-data\ebird"/>
+ <property name="pathToParentDirectory" value="/Users/derik/dev2/bap-data/ebird/species"/>
<property name="indexFileName" value="index-subset.txt"/>
<property name="dataFormat" value="BMDEv1.38" />
<property name="collectionDescription" value="This dataset was downloaded from the Avian Knowledge Network (http://www.avianknowledge.net/content/download/packages/observation_data/project/ebird_all/) on Jan. 18, 2010. It contains an extract of all eBird data in the AKN system as of Jan. 15, 2010. Invalid records have been excised from this dataset. The format of the data is BMDE v1.38 (http://www.avianknowledge.net/content/contribute/the-bird-monitoring-data-exchange)." />
</bean>
<bean id="aknPFWSubsetDataProvider" class="edu.cornell.birds.is.bap.data.akn.AKNDataProviderImpl">
- <property name="pathToParentDirectory" value="c:\temp\bap-data\pfw"/>
+ <property name="pathToParentDirectory" value="/Users/derik/dev2/bap-data/pfw"/>
<property name="indexFileName" value="index-subset.txt"/>
<property name="dataFormat" value="BMDEv1.38" />
<property name="collectionDescription" value="This dataset was downloaded from the Avian Knowledge Network (http://www.avianknowledge.net/content/download/packages/observation_data/project/pfw/) on Feb. 25, 2010. It contains an extract of all PFW data in the AKN system as of Feb. 25, 2010. Invalid records have been excised from this dataset. The format of the data is BMDE v1.38 (http://www.avianknowledge.net/content/contribute/the-bird-monitoring-data-exchange)." />
Modified: trunk/modules/science-pipes-backend/config/workflow-iteration/server.deployment.properties
===================================================================
--- trunk/modules/science-pipes-backend/config/workflow-iteration/server.deployment.properties 2011-10-07 23:45:36 UTC (rev 28780)
+++ trunk/modules/science-pipes-backend/config/workflow-iteration/server.deployment.properties 2011-10-07 23:48:22 UTC (rev 28781)
@@ -20,6 +20,9 @@
akn.data.config.pathToParentDirectory = /web/tmp/bap-config-do-not-delete/bap-data/ebird
akn.data.config.pathToParentDirectory.pfw = /web/tmp/bap-config-do-not-delete/bap-data/pfw
+#from survivorship-data-config.xml
+survivorship.data.config.pathToParentDirectory = /web/tmp/bap-config-do-not-delete/bap-data/survivorship
+
# from repository-conf/amazon.xml
amazon.s3.bucketName = sciencepipes
Added: trunk/modules/science-pipes-backend/config/workflow-iteration/survivorship-data-config.xml
===================================================================
--- trunk/modules/science-pipes-backend/config/workflow-iteration/survivorship-data-config.xml (rev 0)
+++ trunk/modules/science-pipes-backend/config/workflow-iteration/survivorship-data-config.xml 2011-10-07 23:48:22 UTC (rev 28781)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<beans xmlns="http://www.springframework.org/schema/beans"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:tx="http://www.springframework.org/schema/tx"
+ xmlns:aop="http://www.springframework.org/schema/aop"
+ xsi:schemaLocation="
+ http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
+ http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
+ http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
+
+ <bean id="survivorshipDataProvider" class="edu.cornell.birds.is.bap.data.survivorship.SurvivorshipDataProviderImpl">
+ <property name="pathToParentDirectory" value="${survivorship.data.config.pathToParentDirectory}"/>
+ <property name="dataFormat" value="TODO dataFormat (csv)" />
+ <property name="description" value="TODO dataset description" />
+ </bean>
+
+</beans>
\ No newline at end of file
Property changes on: trunk/modules/science-pipes-backend/config/workflow-iteration/survivorship-data-config.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
More information about the Kepler-cvs
mailing list