[kepler-code] r28780 - trunk/modules/science-pipes-backend/config/kepler

barseghian at ecoinformatics.org barseghian at ecoinformatics.org
Fri Oct 7 16:45:36 PDT 2011


Author: barseghian
Date: 2011-10-07 16:45:36 -0700 (Fri, 07 Oct 2011)
New Revision: 28780

Added:
   trunk/modules/science-pipes-backend/config/kepler/survivorship-data-config.xml
Modified:
   trunk/modules/science-pipes-backend/config/kepler/actor-application-context.xml
   trunk/modules/science-pipes-backend/config/kepler/akn-data-config.xml
   trunk/modules/science-pipes-backend/config/kepler/wildfinder-data-config.xml
Log:
accomodate survivorship
change some hardcodes for my benefit

Modified: trunk/modules/science-pipes-backend/config/kepler/actor-application-context.xml
===================================================================
--- trunk/modules/science-pipes-backend/config/kepler/actor-application-context.xml	2011-10-07 23:41:17 UTC (rev 28779)
+++ trunk/modules/science-pipes-backend/config/kepler/actor-application-context.xml	2011-10-07 23:45:36 UTC (rev 28780)
@@ -9,6 +9,7 @@
        <list>
 			<value>akn-data-config.xml</value>
 	        <value>wildfinder-data-config.xml</value>
+	        <value>survivorship-data-config.xml</value>
        </list>
      </constructor-arg>
    </bean>

Modified: trunk/modules/science-pipes-backend/config/kepler/akn-data-config.xml
===================================================================
--- trunk/modules/science-pipes-backend/config/kepler/akn-data-config.xml	2011-10-07 23:41:17 UTC (rev 28779)
+++ trunk/modules/science-pipes-backend/config/kepler/akn-data-config.xml	2011-10-07 23:45:36 UTC (rev 28780)
@@ -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)." />

Added: trunk/modules/science-pipes-backend/config/kepler/survivorship-data-config.xml
===================================================================
--- trunk/modules/science-pipes-backend/config/kepler/survivorship-data-config.xml	                        (rev 0)
+++ trunk/modules/science-pipes-backend/config/kepler/survivorship-data-config.xml	2011-10-07 23:45:36 UTC (rev 28780)
@@ -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="/Users/derik/dev2/bap-data/survivorship"/>
+		<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/kepler/survivorship-data-config.xml
___________________________________________________________________
Added: svn:mime-type
   + text/plain

Modified: trunk/modules/science-pipes-backend/config/kepler/wildfinder-data-config.xml
===================================================================
--- trunk/modules/science-pipes-backend/config/kepler/wildfinder-data-config.xml	2011-10-07 23:41:17 UTC (rev 28779)
+++ trunk/modules/science-pipes-backend/config/kepler/wildfinder-data-config.xml	2011-10-07 23:45:36 UTC (rev 28780)
@@ -9,7 +9,7 @@
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
 
 	<bean id="wildfinderDatasetConfig" class="edu.cornell.birds.is.bap.actor.crossingboundaries.dataset.WildFinderDatasetConfig">
-		<property name="fileLocation" value="C:/temp/bap-data/crossingboundaries/ecoregion-species.2010-06-17.txt"/>
+		<property name="fileLocation" value="/Users/derik/dev2/bap-data/crossingboundaries/ecoregion-species.2010-06-17.txt"/>
 		<property name="hasHeader" value="true" />
 		<property name="columnDelimiter" value="	" /> <!-- tab character -->
 		<property name="datasetType" value="wildfinder.ecoregion.species.occurrence" />
@@ -17,7 +17,7 @@
 	</bean>
 
 	<bean id="wildfinderAreaDatasetConfig" class="edu.cornell.birds.is.bap.actor.crossingboundaries.dataset.WildFinderDatasetConfig">
-		<property name="fileLocation" value="C:/temp/bap-data/crossingboundaries/ecoregion-areas.2010-06-17.txt"/>
+		<property name="fileLocation" value="/Users/derik/dev2/bap-data/crossingboundaries/ecoregion-areas.2010-06-17.txt"/>
 		<property name="hasHeader" value="true" />
 		<property name="columnDelimiter" value="	" /> <!-- tab character -->
 		<property name="datasetType" value="wildfinder.ecoregion.area" />
@@ -25,7 +25,7 @@
 	</bean>
 
 	<bean id="wildfinderPlantDatasetConfig" class="edu.cornell.birds.is.bap.actor.crossingboundaries.dataset.WildFinderDatasetConfig">
-		<property name="fileLocation" value="C:/temp/bap-data/crossingboundaries/ecoregions-plants.2010-07-23.txt"/>
+		<property name="fileLocation" value="/Users/derik/dev2/bap-data/crossingboundaries/ecoregions-plants.2010-07-23.txt"/>
 		<property name="hasHeader" value="true" />
 		<property name="columnDelimiter" value="	" /> <!-- tab character -->
 		<property name="datasetType" value="wildfinder.ecoregion.plant.richness_summary" />		



More information about the Kepler-cvs mailing list