
it.tidalwave.bluebill.taxonomy.birds.birdsofindia.BirdsOfIndia2009Generator Maven / Gradle / Ivy
The newest version!
/***********************************************************************************************************************
*
* blueBill Resources - open source birding
* Copyright (C) 2009-2011 by Tidalwave s.a.s. (http://www.tidalwave.it)
*
***********************************************************************************************************************
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
***********************************************************************************************************************
*
* WWW: http://bluebill.tidalwave.it
* SCM: https://java.net/hg/bluebill~resources-src
*
**********************************************************************************************************************/
package it.tidalwave.bluebill.taxonomy.birds.birdsofindia;
import it.tidalwave.bluebill.taxonomy.birds.BirdTaxonomyImporter;
import javax.annotation.Nonnull;
import java.io.File;
import it.tidalwave.bluebill.taxonomy.birds.DefaultTranslator;
import it.tidalwave.bluebill.taxonomy.birds.GeneratorSupport;
import static it.tidalwave.bluebill.taxonomy.elmo.ElmoTaxonomyVocabulary.*;
/***********************************************************************************************************************
*
* @author Fabrizio Giudici
* @version $Id$
*
**********************************************************************************************************************/
public class BirdsOfIndia2009Generator extends GeneratorSupport
{
public static final String TAXONOMY_NAME = "Birds of India 2009";
public static final String TAXONOMY_FILE_NAME = "BirdsOfIndia2009";
public static void main (final @Nonnull String ... args)
throws Exception
{
new BirdsOfIndia2009Generator(args[0]).execute();
}
public BirdsOfIndia2009Generator (final @Nonnull String baseDir)
{
super(baseDir, TAXONOMY_NAME, TAXONOMY_FILE_NAME);
}
@Nonnull
public BirdTaxonomyImporter run()
throws Exception
{
final BirdsOfIndia2009Importer importer = new BirdsOfIndia2009Importer();
importer.setTaxonTranslator(new DefaultTranslator(BirdsOfIndia2009Importer.class, "BirdsOfIndia1996ToCatalogueOfLifeTranslations.config"));
importer.setIdentifierMapFile(new File(resourcesFolder, "TaxonIdMap.txt.gz"));
importer.setSourceResourceName("Checklist of the birds of India.txt");
importer.run(repository, ID_TAXONOMY_PREFIX + "BirdsOfIndia/2009");
return importer;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy