Download a pdf of the NISbase Documentation
During the past decade dozens of non-indigenous species (NIS) database
workshops have been held around the world. At the end of those meetings
the general consensus is almost always the same; we need to develop better
ways to share our data. If you’ve attended one of these workshops
recently, it is likely you have heard terms like “XML” and “distributed
databases” touted as the answer to our prayers. Well, NISbase is
a relatively simple lightweight XML based distributed database system designed
for NIS information by the Smithsonian Environmental Research Center and
the USGS.
To test NISbase yourself, go to the current version of the portal website.
The major concepts of NISbase were inspired by other distributed database systems being developed, particularly DiGIR (Distributed Generic Information Retrieval). DiGIR is currently being developed to share museum specimen collections by programs such as the Species Analyst and the MaNIS (Mammal Networked Information System). A DiGIR implementation of NISbase is currently under consideration and promises to add many improvements to the current system.
DiGIR http://digir.net
Species Analyst http://speciesanalyst.net/index.html
MaNIS http://elib.cs.berkeley.edu/manis/
NISbase, like DiGIR, functions as a distributed system of portals and data providers (Figure 1).
Figure 1. Basic NISbase schematic.

The portal’s web interface allows the user to search records on more than one data provider at a time. Think of the analogy of searching one of the many travel planning sites (a.k.a. portals) for the best airfare from multiple airlines (a.k.a. data providers), this method is much more efficient than searching each airline’s website individually. With NISbase, a user would search for NIS with the portal (Figure 2) and retrieve information from multiple NIS databases simultaneously. Search results are returned as a single table (Figure 3) with links to further information from the original data providers (Figure 4).
Figure 2. The NISbase Portal Search Form.

Figure 3. NISbase merged results table.

Figure 4. A species summary web page example.

The current implementation of NISbase takes advantage of the way many websites display their NIS information, one species at a time and in the form of species summaries or fact sheets (see Figure 4). Furthermore, websites that have search capabilities for their NIS information allow the user to search other simple fields such as common name, species name and taxonomic group.
Some online NIS databases contain more searchable fields than NISbase. To accommodate these databases we are developing an advanced version of NISbase to allow the user to search on these advanced fields such as invasion pathway, habitat invaded, and date of first observation.
If your website can dynamically create an html table from your NIS database, you should be able to create the XML results needed to participate in NISbase. If you’re unfamiliar with XML, a visit to the following website can be helpful. http://www.w3schools.com/xml.
Provider Requirements:
Once a query is submitted to the NISbase portal all selected database providers will be sent an http request of the following generic format.
http://providerIPaddress/../providerpage?Parameter1=X&PArameter2=Y
The current parameters passed to the provider by the portal are…
The following example is a search request to the USGS-NAS database provider for all fish with a common name containing the word “oscar”
http://nas.er.usgs.gov/queries/SpResultsXML.asp?ComName=oscar&Genus=&Spec
ies=&State=&Group=&Size=10
If other providers were selected they would receive similar requests from the portal. In this example, the database provider page “SpResultsXML.asp” is required to interpret the search parameters and return valid XML results in the NISbase format. The following is the XML returned from the USGS-NAS database provider for the previously mentioned search.
<?xml version="1.0" encoding="iso-8859-1" ?>
<!DOCTYPE X SYSTEM "http://invasions.si.edu/nemesis/SpQueryResults.dtd">
- <X>
- <TAXON>
<Taxa_SciName>Astronotus ocellatus</Taxa_SciName>
<Taxa_CommonName>oscar</Taxa_CommonName>
<Taxa_ITIS>169772</Taxa_ITIS>
<Taxa_Group>Fishes</Taxa_Group>
- <Record>
<Record_Source>USGS-NAS</Record_Source>
<Record_ID>436</Record_ID>
<Factsheet_URL>http://nas.er.usgs.gov/queries/SpFactSheet.asp?
speciesID=436</Factsheet_URL>
<Factsheet_Name>USGS-NAS FactSheet</Factsheet_Name>
<Collection_URL>http://nas.er.usgs.gov/queries/spCollections.asp?
SpeciesID=436</Collection_URL>
<Collection_Name>USGS-NAS Collection Info</Collection_Name>
</Record>
</TAXON>
</X>
Provider Metadata
A provider is added to the NISbase portal by adding some
basic metadata to an XML file called InvServers.xml. The portal search
page accesses this information
so that users can select the databases they wish to search and to ensure
that the data is sent to the correct URLs. The current InvServers.xml file
can be
viewed at the following URL.
http://invasions.si.edu/nemesis/merge/InvServers.xml
Here is the current listing for the USGS-NAS database.
- <DATA_SOURCE>
<NAME>USGS-NAS</NAME>
<NAME_LONG>NAS Database (Nonidigenous Aquatic Species Database)</NAME_LONG>
<URL>http://nas.er.usgs.gov/queries/SpResultsXML.asp</URL>
<HOME>http://nas.er.usgs.gov/</HOME>
<OWNER>United States Geological Service</OWNER>
<LOGO>http://nas.er.usgs.gov/images/c_usgsid.gif</LOGO>
<ECOSYSTEM>Freshwater</ECOSYSTEM>
<SCOPE>Animals</SCOPE>
<SPATIAL>All USA</SPATIAL>
<DATATYPES>Fact sheets; Collection Records; Maps; Images</DATATYPES>
</DATA_SOURCE>
Basic Provider Implementation
Advanced Provider Implementation
Portal Requirements:
The portal is responsible for creating the search page based on a list of available data providers. Searches from the portal are passed to each provider and when XML results are returned the portal merges the results from the providers and formats it into one HTML table of results. The portal is currently developed using JSP but other scripting languages may also be used.
Portal Installation:
Portal Mirrors:
We encourage others to install the NISbase portal on their servers as it potentially lessens the load on the original portal server. We will make available a list of all known mirrored portals to allow users to find an alternative selection.
Thematic Portals:
We also encourage the development of thematic NISbase portals. An example thematic portal currently under consideration is NISbase-Pacific which will bring together NIS databases from Hawaii and other pacific islands. Other potential NISbase thematic portals might include NISbase-Weeds, NISbase-Fish, NISbase-Asia.
Thematic portals will likely have slightly different looks, sets of data providers, and modified search terms.