(Emery, 1900)







the itis logo
The report logo for the ITIS data page




  • Home


  • About ITIS

    • About ITIS Page


    • What's New


    • Organizational Information

      • Background Information


      • Organization and Partners


      • Memorandum of Understanding


      • Data Development History and Data Quality



    • Standards and Database Documentation


    • Frequently Asked Questions

      • What is an ITIS TSN?


      • Glossary of ITIS Terms?


      • How Do I Cite ITIS?


      • How Do I Link to ITIS?


      • What is the format of a download file?



    • Contact Us



  • Data Access and Tools

    • Data Access Information


    • ITIS Tools


    • Advanced Search


    • Web Services

      • Web Service Information


      • Description of ITIS Web Services


      • Developing a Client


      • ITIS Solr Web Services


      • ITIS Solr WS Examples



    • Hierarchical Report


    • Compare Names



  • Get ITIS Data

    • Full Database Download

      • Instructions


      • Database Files



    • Download Data in TWB Format



  • Submit and Update Data

    • Data Submission Information


    • Submission Requirements and Guidelines


    • ITIS Taxonomic Workbench




Go to Print Version



Technomyrmex setifer 

(Emery, 1900)
Taxonomic Serial No.: 575201













(Download Help)

Technomyrmex setifer

TSN 575201






 Taxonomy and Nomenclature
















































       
  Kingdom: Animalia  
  Taxonomic Rank: Species  
 Synonym(s):  
  Common Name(s):  
       
 
Taxonomic Status:


   
  Current Standing: valid
 
       
 
Data Quality Indicators:


   
 
Record Credibility Rating:

verified - standards met

 
       


 Taxonomic Hierarchy




























































































       
 Kingdom
Animalia 
– Animal, animaux, animals
 
    Subkingdom
Bilateria 
 
       Infrakingdom
Protostomia 
 
          Superphylum
Ecdysozoa 
 
             Phylum
Arthropoda 
– Artrpode, arthropodes, arthropods
 
                Subphylum
Hexapoda 
– hexapods
 
                   Class
Insecta 
– insects, hexapoda, inseto, insectes
 
                      Subclass
Pterygota 
– insects ails, winged insects
 
                         Infraclass
Neoptera 
– modern, wing-folding insects
 
                            Superorder
Holometabola 
 
                               Order
Hymenoptera 
– abelha, formiga, vespa, ants, bees, wasps
 
                                  Suborder
Apocrita 
– abeilles, fourmis, gupes vritables, narrow-waisted hymenopterans, ants, bees, true wasps
 
                                     Infraorder
Aculeata 
 
                                        Superfamily
Vespoidea 
– vespoid wasps
 
                                           Family
Formicidae 
– ants, fourmis
 
                                              Subfamily
Dolichoderinae 
 
                                                 Genus
Technomyrmex Mayr, 1872
 
                                                    SpeciesTechnomyrmex setifer (Emery, 1900) 
    Direct Children:  
                                                       Subspecies

Technomyrmex setifer javanus (Forel, 1905)
 
                                                       Subspecies

Technomyrmex setifer setifer (Emery, 1900)
 
       

 References
































































































       
  Expert(s):    
  Expert:    
  Notes:    
  Reference for:    
       
 
Other Source(s):
   
 Source:

Hymenoptera Name Server, website (version 0.021)
 
 Acquired:2001  
 Notes:http://atbi.biosci.ohio-state.edu:8880/hymenoptera/nomenclator.home_page  
 Reference for:
Technomyrmex setifer 
 
    
 
Publication(s):
   
  Author(s)/Editor(s):    
  Publication Date:    
  Article/Chapter Title:    
  Journal/Book Name, Vol. No.:    
  Page(s):    
  Publisher:    
  Publication Place:    
  ISBN/ISSN:    
  Notes:    
  Reference for:    
       


 Geographic Information





















       
 
Geographic Division:
  
       
 
Jurisdiction/Origin:
  
 

 

   


 Comments












       
  Comment:  
 

 

   




//Array variable to store data returned from SOLR server
var dataArray=[];

/**
* @description: javascript callback function which will be called after asynchronous call to SOLR
* @param: SOLR Data
**/
function on_SubordinateTaxaReturn(data)

$('#results').empty();
var docs = data.facet_counts.facet_pivot.product;
var groupDoc = data.grouped.rankID.groups;
var suboradinateTaxa = 0;
var rank = "";
var verifiedStandardsMet =0;
var verifiedMinStandardsMet = 0;
var unverified = 0;
var unverifiedReview = 0;
var credibility="";
var outTable = "";
var rankName="";
var totalVerifiedStandardsMet=0;
var totalVerifiedMinStandardsMet=0;
var totalUnverified=0;
var arrayIndex=0;
var percentStandardsMet="";
var offSiteSources=[];
//the number of rank objects returned from the solr query
var totalNumberOfRanks = docs.length;
//The rank of the item for which the subordinate taxa is being calculated
var searchTermRank = "220";
var pieChartConfig = [];

dataArray=[];
var dataExists = false;

//HTML Table header
outTable += "";
outTable += "";
outTable += "";
outTable += "
"
outTable += " ";
outTable += " ";
outTable += "";
rank = docs[rankIndex].value;
searchTermRank="220";

//Make sure not to include the results for the rank of the search term in the generated results.
if(Number(rank) > Number(searchTermRank))
unverified=0;
verifiedStandardsMet=0;
verifiedMinStandardsMet=0;
unverifiedReview=0;
for(j=0; j 0)
dataExists=true;

//keep a running tally of verifiedMinStandardsMet and totalVerifiedMinStandardsMet
if(docs[rankIndex].pivot[j].value.trim().toUpperCase() ==="Minimum taxonomic/nomenclature review".toUpperCase())
verifiedMinStandardsMet = docs[rankIndex].pivot[j].count;
totalVerifiedMinStandardsMet+=verifiedMinStandardsMet;

//keep a running tally of verifiedStandardsMet and totalVerifiedStandardsMet
if(docs[rankIndex].pivot[j].value.trim().toUpperCase() ==="TWG standards met".toUpperCase())
verifiedStandardsMet = docs[rankIndex].pivot[j].count;
totalVerifiedStandardsMet+=verifiedStandardsMet;

//keep a running tally of unverified and totalUnverified
if(docs[rankIndex].pivot[j].value.trim().toUpperCase() ==="No review; untreated NODC data".toUpperCase())
unverified=docs[rankIndex].pivot[j].count;
totalUnverified+=unverified;

//keep a running tally of unverified and totalUnverified
if(docs[rankIndex].pivot[j].value.trim().toUpperCase() === "No review; non-peer reviewed source".toUpperCase())
unverifiedReview=docs[rankIndex].pivot[j].count;
totalUnverified+=unverifiedReview;


percentStandardsMet = docs[rankIndex].pivot[j].value;



for(var a=0;a 0)
if(rank==groupDoc[a].doclist.docs[0].rankID)
rankName=groupDoc[a].doclist.docs[0].rank;
break;




dataArray[arrayIndex] = new SubordinateTaxa(rank,rankName,verifiedStandardsMet,verifiedMinStandardsMet,unverified+unverifiedReview,percentStandardsMet);;
arrayIndex++;

}
} //END of SOLR data parsing
if (dataExists)
//SORT DATA based on Rank ID by ascending order
dataArray=sortDataByRankID(dataArray,0);

for(var arrayNewIndex = 0;arrayNewIndex<dataArray.length;arrayNewIndex++)
outTable += generateSubordinateTaxaColumnTD("Subordinate Taxa", dataArray[arrayNewIndex].rankName, dataArray[arrayNewIndex].taxonomicTotal);

outTable += "";
//Subordinate Taxa Column
outTable += generateSubordinateTaxaColumnTD("Subordinate Taxa", "ALL", (totalVerifiedStandardsMet + totalVerifiedMinStandardsMet + totalUnverified));
outTable += "
  ";
outTable += " ";
outTable += "
 Subordinate Taxa";
outTable += "
 Rank";
outTable += "
 Verified Standards Met ";
outTable += "
 Verified Min Standards Met";
outTable += "
 Unverified";
outTable += "
Percent Standards Met";

//Parse SOLR document to get the related data to array
for(var rankIndex = 0; rankIndex 0)
outTable += "
" + dataArray[arrayNewIndex].rankName + "";

//hyperlink the data
if(dataArray[arrayNewIndex].standardsMet>0)
outTable += generateSubordinateTaxaColumnTD("TWG standards met", dataArray[arrayNewIndex].rankName, dataArray[arrayNewIndex].standardsMet);
//just display the data
else
outTable += "
" + dataArray[arrayNewIndex].standardsMet + "";
//hyperlink the data
if(dataArray[arrayNewIndex].minStandardsMet>0)
outTable += generateSubordinateTaxaColumnTD("Minimum taxonomic/nomenclature review", dataArray[arrayNewIndex].rankName, dataArray[arrayNewIndex].minStandardsMet)
//just display the data
else
outTable += "
" + dataArray[arrayNewIndex].minStandardsMet + "";
//hyperlink the data
if(dataArray[arrayNewIndex].unverified>0)
outTable += generateSubordinateTaxaColumnTD("Unverified", dataArray[arrayNewIndex].rankName, dataArray[arrayNewIndex].unverified)
//just display the data
else
outTable += "
" + dataArray[arrayNewIndex].unverified + "";

//Chart should appear in this column
outTable += "
";
outTable += "";
var configuration =
id: 'percentStandardsMet' + dataArray[arrayNewIndex].rankName,
data: [["Verified Standards Met", dataArray[arrayNewIndex].standardsMet],
["Verified Min. Standards Met", dataArray[arrayNewIndex].minStandardsMet],
["Unverified", dataArray[arrayNewIndex].unverified]
]
;

pieChartConfig.push (configuration);



//Generate and Display "All" row of the table:
if( (totalVerifiedStandardsMet + totalVerifiedMinStandardsMet + totalUnverified) > 0)
outTable += "
ALL ";


//Verified Standards Met Column
if(totalVerifiedStandardsMet>0)
outTable += generateSubordinateTaxaColumnTD("TWG standards met", "ALL", totalVerifiedStandardsMet);
else
outTable += "
" + totalVerifiedStandardsMet + ""

//Verified Minimum Standards Met Column
if(totalVerifiedMinStandardsMet>0)
outTable += generateSubordinateTaxaColumnTD("Minimum taxonomic/nomenclature review", "ALL", totalVerifiedMinStandardsMet);
else
outTable += "
" + totalVerifiedMinStandardsMet + ""

//Unverified Column
if(totalUnverified>0)
outTable += generateSubordinateTaxaColumnTD("Unverified", "ALL", totalUnverified);
else
outTable += "
" + totalUnverified + ""

//Chart should appear in this column
outTable += "
percentStandardsMetAll";
outTable += "";
var configuration =
id: 'percentStandardsMetAll',
data: [
["Verified Standards Met", totalVerifiedStandardsMet],
["Verified Min. Standards Met", totalVerifiedMinStandardsMet],
["Unverified", totalUnverified]
]
;
pieChartConfig.push (configuration);

//Data doesn't exist
else
outTable += "
 ";
outTable += "
  ";
outTable += "
  ";


outTable += "";
outTable += "";
outTable += "";
outTable += "";
outTable += "";

$('#results').prepend("
" + outTable + "");
generateSubordinateTaxaTblHeader();

if (dataExists)

generatePieChart(pieChartConfig);

}

/**
* Description: generates a C3 pie chart for a given container and dataset.
* @param: configurations: A javascript array that contains objects cotainerName, an array of[data to plot]
* @returns none
**/
function generatePieChart(pieChartConfig)
//generate a chart for each configuration:
for (var configIndex = 0; configIndex < pieChartConfig.length; configIndex++)
var chartConfiguration = createPieChartConfig("#" + pieChartConfig[configIndex].id, pieChartConfig[configIndex].data);
c3.generate(chartConfiguration);



/**
* Description: builds the column for the subordinate taxa table. This includes building the hyperlink to generate the valid taxa list for the rank.
* @param: percentStandardsMet
* @param: rankName
* @param: column (string) data that is visible to the user as the clickable hyperlink.
* @returns a string which defines a table cell in the subordinate taxa table.
**/
function generateSubordinateTaxaColumnTD(percentStandardsMet, rankName, columnData)
return "
" + columnData + "";


/**
* @description: function to create SOLR query and return data to be processed
**/
function on_searchSubordinateTaxa()

var url = ITIS_SOLR+'/?q=hierarchyTSN:(*$575201$*)&group=true&group.field=rankID&rows=-1&fl=rankID,rank&fq=usage:(valid or accepted)&wt=json&facet=true&facet.pivot=!key=productrankID,credibilityRating&facet.pivot.mincount=0&facet.limit=-1&callback=?&json.wrf=on_SubordinateTaxaReturn';
$.getJSON(url);

/**
* @description: Dynamically generates the Subordinate Taxa Table header.
* @param : none
* @return: none
**/
function generateSubordinateTaxaTblHeader()
url = ITIS_SOLR +'/?q=tsn:(575201)&wt=json';

//Generate The Results Header and get the data for the header if
$.get(url).done(function(data)
var taxaHeading = " " + data.response.docs[0].rank + " " + formatRankName(data.response.docs[0].nameWOInd,data.response.docs[0].rankID);
if (hasTaxonAuthor(data.response.docs[0].taxonAuthor) > 0)
taxaHeading += " " + formatTaxonAuthor(data.response.docs[0].taxonAuthor) + " contains:";
else
taxaHeading += " contains:";

$('#subordinateTaxaTableHeader').html(taxaHeading);

).fail(function()
console.error("houston we have a problem generating the initial Subordinate Taxa Table Header.");
).always(function()
console.log("always executes. put clean up code in here");
);

$(document).ready(function()
//initially generate the table header for the given search
generateSubordinateTaxaTblHeader();
//issue a solr query to generate the subordinate taxa table.
on_searchSubordinateTaxa();
);














 
 Subordinate Taxa  Rank  Verified Standards Met  Verified Min Standards Met  Unverified
Percent Standards Met
 
LOADING...
 











A gray graphic bar
Search on:

 Any Name or TSN


 Common Name


 Scientific Name


 TSN


In:
every
Animal
Plant
Fungal
Bacteria
Protozoa
Chromista
Archaea  Kingdom
exactly
for
containing
starting with
ending with  

 





Go
to Advanced Search and Report




Disclaimer:
ITIS taxonomy is based on the latest scientific consensus available,
and is provided as a general reference source for interested parties.
However, it is not a legal authority for statutory or regulatory purposes.
While every effort has been made to provide the most reliable and up-to-date
information available, ultimate legal requirements with respect to species
are contained in provisions of treaties to which the United States is a
party, wildlife statutes, regulations, and any applicable notices that have
been published in the Federal Register. For further information on U.S.
legal requirements with respect to protected taxa, please contact the
U.S. Fish and Wildlife Service.





A gray bar




 

Popular posts from this blog

Invision Community Contents History See also References External links Navigation menuProprietaryinvisioncommunity.comIPS Community ForumsIPS Community Forumsthis blog entry"License Changes, IP.Board 3.4, and the Future""Interview -- Matt Mecham of Ibforums""CEO Invision Power Board, Matt Mecham Is a Liar, Thief!"IPB License Explanation 1.3, 1.3.1, 2.0, and 2.1ArchivedSecurity Fixes, Updates And Enhancements For IPB 1.3.1Archived"New Demo Accounts - Invision Power Services"the original"New Default Skin"the original"Invision Power Board 3.0.0 and Applications Released"the original"Archived copy"the original"Perpetual licenses being done away with""Release Notes - Invision Power Services""Introducing: IPS Community Suite 4!"Invision Community Release Notes

Canceling a color specificationRandomly assigning color to Graphics3D objects?Default color for Filling in Mathematica 9Coloring specific elements of sets with a prime modified order in an array plotHow to pick a color differing significantly from the colors already in a given color list?Detection of the text colorColor numbers based on their valueCan color schemes for use with ColorData include opacity specification?My dynamic color schemes

Tom Holland Mục lục Đầu đời và giáo dục | Sự nghiệp | Cuộc sống cá nhân | Phim tham gia | Giải thưởng và đề cử | Chú thích | Liên kết ngoài | Trình đơn chuyển hướngProfile“Person Details for Thomas Stanley Holland, "England and Wales Birth Registration Index, 1837-2008" — FamilySearch.org”"Meet Tom Holland... the 16-year-old star of The Impossible""Schoolboy actor Tom Holland finds himself in Oscar contention for role in tsunami drama"“Naomi Watts on the Prince William and Harry's reaction to her film about the late Princess Diana”lưu trữ"Holland and Pflueger Are West End's Two New 'Billy Elliots'""I'm so envious of my son, the movie star! British writer Dominic Holland's spent 20 years trying to crack Hollywood - but he's been beaten to it by a very unlikely rival"“Richard and Margaret Povey of Jersey, Channel Islands, UK: Information about Thomas Stanley Holland”"Tom Holland to play Billy Elliot""New Billy Elliot leaving the garage"Billy Elliot the Musical - Tom Holland - Billy"A Tale of four Billys: Tom Holland""The Feel Good Factor""Thames Christian College schoolboys join Myleene Klass for The Feelgood Factor""Government launches £600,000 arts bursaries pilot""BILLY's Chapman, Holland, Gardner & Jackson-Keen Visit Prime Minister""Elton John 'blown away' by Billy Elliot fifth birthday" (video with John's interview and fragments of Holland's performance)"First News interviews Arrietty's Tom Holland"“33rd Critics' Circle Film Awards winners”“National Board of Review Current Awards”Bản gốc"Ron Howard Whaling Tale 'In The Heart Of The Sea' Casts Tom Holland"“'Spider-Man' Finds Tom Holland to Star as New Web-Slinger”lưu trữ“Captain America: Civil War (2016)”“Film Review: ‘Captain America: Civil War’”lưu trữ“‘Captain America: Civil War’ review: Choose your own avenger”lưu trữ“The Lost City of Z reviews”“Sony Pictures and Marvel Studios Find Their 'Spider-Man' Star and Director”“‘Mary Magdalene’, ‘Current War’ & ‘Wind River’ Get 2017 Release Dates From Weinstein”“Lionsgate Unleashing Daisy Ridley & Tom Holland Starrer ‘Chaos Walking’ In Cannes”“PTA's 'Master' Leads Chicago Film Critics Nominations, UPDATED: Houston and Indiana Critics Nominations”“Nominaciones Goya 2013 Telecinco Cinema – ENG”“Jameson Empire Film Awards: Martin Freeman wins best actor for performance in The Hobbit”“34th Annual Young Artist Awards”Bản gốc“Teen Choice Awards 2016—Captain America: Civil War Leads Second Wave of Nominations”“BAFTA Film Award Nominations: ‘La La Land’ Leads Race”“Saturn Awards Nominations 2017: 'Rogue One,' 'Walking Dead' Lead”Tom HollandTom HollandTom HollandTom Hollandmedia.gettyimages.comWorldCat Identities300279794no20130442900000 0004 0355 42791085670554170004732cb16706349t(data)XX5557367