# # Name Assigning Authority / Name Mapping Authority Lookup Table # Last change: 2008.05.15 # Reload from: http://ark.nlm.nih.gov/etc/natab # Mirrored at: http://www.cdlib.org/inside/diglib/ark/natab # To register: mailto:ark@cdlib.org?Subject=naareg # Process with: Perl script at end of this file (optional) # # Each NAA appears at the beginning of a line with the NAA Number # first, a colon, and an ARK or URL to a statement of naming policy # (see http://ark.cdlib.org for an example). # All the NMA hostports that service an NAA are listed, one per # line, indented, after the corresponding NAA line. # # National Library of Medicine 12025: http://www.nlm.nih.gov/xxx/naapolicy.html ark.nlm.nih.gov USNLM foobar.zaf.org UCSF # # Library of Congress 12026: http://www.loc.gov/xxx/naapolicy.html foobar.zaf.org USLC # # National Agriculture Library 12027: http://www.nal.gov/xxx/naapolicy.html foobar.zaf.gov:80 USNAL # # California Digital Library 13030: http://www.cdlib.org/inside/diglib/ark/ ark.cdlib.org CDL # # World Intellectual Property Organization 13038: http://www.wipo.int/xxx/naapolicy.html www.wipo.int WIPO # # University of California San Diego 20775: http://library.ucsd.edu/xxx/naapolicy.html ucsd.edu UCSD # # University of California San Francisco 29114: http://library.ucsf.edu/xxx/naapolicy.html ucsf.edu UCSF # # University of California Berkeley 28722: http://library.berkeley.edu/xxx/naapolicy.html berkeley.edu UCB # # University of California Los Angeles 21198: http://library.ucla.edu/xxx/naapolicy.html ucla.edu UCLA # # Rutgers University 15230: http://rci.rutgers.edu/xxx/naapolicy.html rutgers.edu RU # # Internet Archive 13960: http://www.archive.org/xxx/naapolicy.html archive.org IA # # Digital Curation Centre 64269: http://www.dcc.ac.uk/xxx/naapolicy.html dcc.ac.uk DCC # # New York University 62624: http://library.nyu.edu/xxx/naapolicy.html nyu.edu NYU # # University of North Texas 67531: http://www.library.unt.edu/xxx/naapolicy.html unt.edu UNT # # Ithaka Electronic-Archiving Initiative 27927: http://www.ithaka.org/xxx/naapolicy.html ithaka.org ITHAKA # # Bibliothèque nationale de France / National Library of France 12148: http://www.bnf.fr/xxx/naapolicy.html bnf.fr BNF # # Princeton University 88435: http://diglib.princeton.edu/xxx/naapolicy.html princeton.edu PU # # University of Washington 78428: http://u.washington.edu/xxx/naapolicy.html u.washington.edu UW # # Archives of Region of Västra Götaland and City of Gothenburg, Sweden 89901: http://www.arkivnamnden.org/xxx/naapolicy.html arkivnamnden.org AVGG # # Northwest Digital Archives 80444: http://nwda.wsulibs.wsu.edu/xxx/naapolicy.html nwda.wsulibs.wsu.edu NWDA # # Emory University 25593: http://id.library.emory.edu/xxx/naapolicy.html id.library.emory.edu EMORY # # University of Kansas 25031: http://www.lib.ku.edu/xxx/naapolicy.html www.lib.ku.edu UKANSAS # # Google 78319: http://www.google.com/xxx/naapolicy.html www.google.com GOOGLE # # Centre for Ecology & Hydrology, UK 17101: http://www.ceh.ac.uk/xxx/naapolicy.html www.ceh.ac.uk CEH # # University of Calgary 65323: http://library.ucalgary.ca/xxx/naapolicy.html ucalgary.ca UCALGARY # # University of Chicago 61001: http://www.lib.uchicago.edu/xxx/naapolicy.html uchicago.edu CGU # # Bibliothèque et Archives Nationales du Québec / National Libary and Archives of Quebec 52327: http://www.banq.qc.ca/xxx/naapolicy.html banq.qc.ca BANQ # # National Széchényi Library / National Library of Hungary 39331: http://www.oszk.hu/xxx/naapolicy.html oszk.hu OSZK # # Library and Archives Canada / Bibliothèque et Archives Canada 26677: http://collectionscanada.ca/xxx/naapolicy.html lac.ca LAC # # ----- Special Cases ----- # # Metadata Terms 99152: http://n2t.info/xxx/naapolicy.html n2t.info N2T # #12345: reserved for examples # #--- end of data --- # The following Perl script takes an NAA as argument and outputs # the NMAs in this file listed under any matching NAA. # # my $naa = shift; # while (<>) { # next if (! /^$naa:/); # while (<>) { # last if (! /^[#\s]./); # print "$1\n" if (/^\s+(\S+)/); # } # } # # Create a g/t/nroff-safe version of this table with the UNIX command, # # expand natab | sed 's/\\/\\\e/g' > natab.roff # # end of file