diff --git a/CREDITS b/CREDITS index 8b80ac038..102bc3d2b 100644 --- a/CREDITS +++ b/CREDITS @@ -1,59 +1,65 @@ CERN DOCUMENT SERVER SOFTWARE (CDSware) CREDITS =============================================== Revision: $Id$ Several people outside the CDSware Development Team contributed to the project: - Thierry Thomas Patches for compiling CDSware on FreeBSD. - Frédéric Gobry Patches for building CDSware out of its source tree, with wildcard expansion and localstatedir patch, and numerous other patches. - Tiberiu Dondera Patches for the WebSubmit engine and the admin interface. - Guido Pelzer Contributions to the German translation. - Valerio Gracco Contributions to the Italian translation. - Tullio Basaglia Contributions to the Italian translation. - Flavio C. Coelho Contributions to the Portuguese translation. - Lyuba Vasilevskaya Contributions to the Russian translation. - Maria Gomez Marti Contributions to the Spanish translation. - Magaly Bascones Dominguez Contributions to the Spanish translation. - Urban Andersson Contributions to the Swedish translation. - Eric Grand Contributions to the French translation. - Theodoros Theodoropoulos Contributions to the Greek translation. - Vasyl Ostrovskyi Contributions to the Ukrainian translation. - Ferran Jorba Contributions to the Catalan translation. Cleanup of the BibFormat Admin Guide. Their help is greatly appreciated. +A thesaurus for cataloguing CERES (California Environmental Resources +Evaluation System) resources, maintained by the Information Center for +the Environment (University of California, Davis) is kindly used as an +example ontology for automatic document classification. + + - end of file - diff --git a/config/cdsnavbar.wml b/config/cdsnavbar.wml index 2839df25c..9ad1428cf 100644 --- a/config/cdsnavbar.wml +++ b/config/cdsnavbar.wml @@ -1,445 +1,464 @@ ## $Id$ ## This file defines CDSware navbar and subnavbars. ## This file is part of the CERN Document Server Software (CDSware). ## Copyright (C) 2002, 2003, 2004, 2005 CERN. ## ## The CDSware is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## The CDSware is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDSware; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. ## You probably went here from "config.wml", so let's continue with ## its numerotation of CDSware configuration parts... ################################ ## Part 4: CDS navigation bar ## ################################ ## The navigation bar and sub-bars are defined here. You may modify ## the definitions now, if you wish, and if you really know what you ## are doing. :-). After that return to "config.wml" file, and the ## main CDSware source directory, and type "make clean && make". #use wml::des::navbar ## navbar admin:
+
## navbar admin-howto:
   
+## navbar admin-bibclassify: + + + + + + + + +
    + + + +
+ +
+ ## navbar admin-bibconvert:
   
## navbar admin-bibedit:
   
## navbar admin-bibformat:
   
## navbar admin-bibharvest:
   
## navbar admin-bibindex:
   
## navbar admin-bibrank:
   
## navbar admin-bibsched:
   
## navbar admin-bibupload:
   
## navbar admin-webaccess:
   
## navbar admin-webalert:
   
## navbar admin-webbasket:
   
## navbar admin-webcomment:
   
## navbar admin-webmessage:
   
## navbar admin-websearch:
   
## navbar admin-websession:
   
## navbar admin-webstyle:
   
## navbar admin-websubmit:
   
## navbar admin-webstat:
   
## End of file. Please return to "config.wml" file, and the main CDSware ## source directory, and type "make clean && make". diff --git a/configure.ac b/configure.ac index 7c1a98b54..f5a32031a 100644 --- a/configure.ac +++ b/configure.ac @@ -1,689 +1,697 @@ ## $Id$ ## Purpose: CERN Document Server Software (CDSware) main configure.ac file. ## Note: If you change this file, please run "autoreconf" to regenerate the "configure" script. ## This file is part of the CERN Document Server Software (CDSware). ## Copyright (C) 2002, 2003, 2004, 2005 CERN. ## ## The CDSware is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## The CDSware is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDSware; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. ## Initialize autoconf and automake: -AC_INIT(cdsware, 0.9.0.20051220, cds.support@cern.ch) -AM_INIT_AUTOMAKE(cdsware, 0.9.0.20051220) +AC_INIT(cdsware, 0.9.0.20060427, cds.support@cern.ch) +AM_INIT_AUTOMAKE(cdsware, 0.9.0.20060427) ## Check for install: AC_PROG_INSTALL ## Define WEBDIR directory: AC_ARG_WITH(webdir, AC_HELP_STRING([--with-webdir], [specify where the web files go (e.g. /var/www/cdsware/)]), WEBDIR=${withval}) if test -z "$WEBDIR"; then AC_MSG_ERROR([ You have not used the "--with-webdir" argument that should define the installation directory for Web programs and documents. Example: "--with-webdir=/var/www/cdsware/".]) fi ## Define WEBURL URL: AC_ARG_WITH(weburl, AC_HELP_STRING([--with-weburl], [specify URL where web files will be reached (e.g. http://cdsdev.cern.ch/cdsware/)]), WEBURL=${withval}) if test -z "$WEBURL"; then AC_MSG_ERROR([ You have not used the "--with-weburl" argument that should define the corresponding URL where the site will be reached. Example: "--with-weburl=http://webserver.domain.com/cdsware/".]) fi ## Define DBHOST database host: AC_ARG_WITH(dbhost, AC_HELP_STRING([--with-dbhost], [specify DB server (e.g. cdsdb.cern.ch)]), DBHOST=${withval}) if test -z "$DBHOST"; then AC_MSG_ERROR([ You have not used the "--with-dbhost" argument that should define which DB server to use. Example: "--with-dbhost=sqlserver.domain.com".]) fi ## Define DBNAME database name: AC_ARG_WITH(dbname, AC_HELP_STRING([--with-dbname], [specify DB name (e.g. cdsware)]), DBNAME=${withval}) if test -z "$DBNAME"; then AC_MSG_ERROR([ You have not used the "--with-dbname" argument that should define DB name. Example: "--with-dbname=cdsware".]) fi ## Define DBUSER user name: AC_ARG_WITH(dbuser, AC_HELP_STRING([--with-dbuser], [specify DB user name (e.g. cdsware)]), DBUSER=${withval}) if test -z "$DBUSER"; then AC_MSG_ERROR([ You have not used the "--with-dbuser" argument that should define DB user name. Example: "--with-dbuser=cdsware".]) fi ## Define DBPASS user password: AC_ARG_WITH(dbpass, AC_HELP_STRING([--with-dbpass], [specify DB user password (e.g. myp1ss)]), DBPASS=${withval}) if test -z "$DBPASS"; then AC_MSG_ERROR([ You have not used the "--with-dbpass" argument that should define DB user password. Example: "--with-dbpass=myp1ss".]) fi ## Check for gettext support AM_GNU_GETTEXT(external) ## Check for WML: AC_PATH_PROG(WML, wml) if test -z "$WML"; then AC_MSG_ERROR([ WML (Website META Language) was not found in your PATH. Please install it first. Available from .]) fi ## Set option -c in WML so that it can work from a separate build tree WML="${WML} -c" ## Check for MySQL client: AC_PATH_PROG(MYSQL, mysql) if test -z "$MYSQL"; then AC_MSG_ERROR([ MySQL command-line client was not found in your PATH. Please install it first. Available from .]) fi ## Check for Python: AC_MSG_CHECKING(for python) AC_ARG_WITH(python, AC_HELP_STRING([--with-python], [path to a specific Python binary (optional)]), PYTHON=${withval}) if test -n "$PYTHON"; then AC_MSG_RESULT($PYTHON) else AC_PATH_PROG(PYTHON, python) if test -z "$PYTHON"; then AC_MSG_ERROR([ Python was not found in your PATH. Please either install it in your PATH or specify --with-python configure option. Python is available from .]) fi fi ## Check for Python version and modules: AC_MSG_CHECKING(for required Python modules) $PYTHON ${srcdir}/configure-tests.py if test $? -ne 0; then AC_MSG_ERROR([Please fix the above Python problems before continuing.]) fi AC_MSG_RESULT(found) ## Check for PHP: AC_PATH_PROG(PHP, php) if test -z "$PHP"; then AC_MSG_ERROR([ PHP standalone command-line executable (i.e. not compiled as Apache module!) was not found in your PATH. Please install it first. Available from .]) fi ## Check for Acrobat Reader: AC_PATH_PROG(ACROREAD, acroread) if test -z "$ACROREAD"; then AC_MSG_WARN([ Acrobat Reader was not found in your PATH. It is used in the WebSubmit module for automatic conversion of submitted documents. You can continue without it but you will miss some CDSware functionality. We recommend you to install it first and to rerun the configure script. Acrobat Reader is available from .]) fi ## Check for gzip: AC_PATH_PROG(GZIP, gzip) if test -z "$GZIP"; then AC_MSG_WARN([ Gzip was not found in your PATH. It is used in the WebSubmit module to compress the data submitted in an archive. You can continue without it but you will miss some CDSware functionality. We recommend you to install it first and to rerun the configure script. Gzip is available from .]) fi ## Check for gunzip: AC_PATH_PROG(GUNZIP, gunzip) if test -z "$GUNZIP"; then AC_MSG_WARN([ Gunzip was not found in your PATH. It is used in the WebSubmit module to correctly deal with submitted compressed files. You can continue without it but you will miss some CDSware functionality. We recommend you to install it first and to rerun the configure script. Gunzip is available from .]) fi ## Check for tar: AC_PATH_PROG(TAR, tar) if test -z "$TAR"; then AC_MSG_WARN([ Tar was not found in your PATH. It is used in the WebSubmit module to pack the submitted data into an archive. You can continue without it but you will miss some CDSware functionality. We recommend you to install it first and to rerun the configure script. Tar is available from .]) fi ## Check for ps2pdf: AC_PATH_PROG(PS2PDF, ps2pdf) if test -z "$PS2PDF"; then AC_MSG_WARN([ ps2pdf was not found in your PATH. It is used in the WebSubmit module to convert submitted PostScripts into PDF. You can continue without it but you will miss some CDSware functionality. We recommend you to install it first and to rerun the configure script. PS2PDF is available from .]) fi ## Check for pdftotext: AC_PATH_PROG(PDFTOTEXT, pdftotext) if test -z "$PDFTOTEXT"; then AC_MSG_WARN([ pdftotext was not found in your PATH. It is used for the fulltext indexation of PDF files. You can continue without it but you may miss fulltext searching capability of CDSware. We recomend you to install it first and to rerun the configure script. pdftotext is available from . ]) fi ## Check for pstotext: AC_PATH_PROG(PSTOTEXT, pstotext) if test -z "$PSTOTEXT"; then AC_MSG_WARN([ pstotext was not found in your PATH. It is used for the fulltext indexation of PDF and PostScript files. You can continue without it but you may miss fulltext searching capability of CDSware. We recomend you to install it first and to rerun the configure script. pstotext is available from . ]) fi ## Check for ps2ascii: AC_PATH_PROG(PSTOASCII, ps2ascii) if test -z "$PSTOASCII"; then AC_MSG_WARN([ ps2ascii was not found in your PATH. It is used for the fulltext indexation of PostScript files. You can continue without it but you may miss fulltext searching capability of CDSware. We recomend you to install it first and to rerun the configure script. ps2ascii is available from . ]) fi ## Check for antiword: AC_PATH_PROG(ANTIWORD, antiword) if test -z "$ANTIWORD"; then AC_MSG_WARN([ antiword was not found in your PATH. It is used for the fulltext indexation of Microsoft Word files. You can continue without it but you may miss fulltext searching capability of CDSware. We recomend you to install it first and to rerun the configure script. antiword is available from . ]) fi ## Check for catdoc: AC_PATH_PROG(CATDOC, catdoc) if test -z "$CATDOC"; then AC_MSG_WARN([ catdoc was not found in your PATH. It is used for the fulltext indexation of Microsoft Word files. You can continue without it but you may miss fulltext searching capability of CDSware. We recomend you to install it first and to rerun the configure script. catdoc is available from . ]) fi ## Check for wvText: AC_PATH_PROG(WVTEXT, wvText) if test -z "$WVTEXT"; then AC_MSG_WARN([ wvText was not found in your PATH. It is used for the fulltext indexation of Microsoft Word files. You can continue without it but you may miss fulltext searching capability of CDSware. We recomend you to install it first and to rerun the configure script. wvText is available from . ]) fi ## Check for ppthtml: AC_PATH_PROG(PPTHTML, ppthtml) if test -z "$PPTHTML"; then AC_MSG_WARN([ ppthtml was found in your PATH. It is used for the fulltext indexation of Microsoft PowerPoint files. You can continue without it but you may miss fulltext searching capability of CDSware. We recomend you to install it first and to rerun the configure script. ppthtml is available from . ]) fi ## Check for xlhtml: AC_PATH_PROG(XLHTML, xlhtml) if test -z "$XLHTML"; then AC_MSG_WARN([ xlhtml was found in your PATH. It is used for the fulltext indexation of Microsoft Excel files. You can continue without it but you may miss fulltext searching capability of CDSware. We recomend you to install it first and to rerun the configure script. xlhtml is available from . ]) fi ## Check for html2text: AC_PATH_PROG(HTMLTOTEXT, html2text) if test -z "$HTMLTOTEXT"; then AC_MSG_WARN([ html2text was found in your PATH. It is used for the fulltext indexation of Microsoft PowerPoint and Excel files. You can continue without it but you may miss fulltext searching capability of CDSware. We recomend you to install it first and to rerun the configure script. html2text is available from . ]) fi ## Check for Giftext: AC_PATH_PROG(GIFTEXT, giftext) if test -z "$GIFTEXT"; then AC_MSG_WARN([ Giftext was not found in your PATH. It is used in the WebSubmit module to create an icon from a submitted picture. You can continue without it but you will miss some CDSware functionality. We recommend you to install it first and to rerun the configure script. Giftext is available from .]) fi ## Check for file: AC_PATH_PROG(FILE, file) if test -z "$FILE"; then AC_MSG_WARN([ File was not found in your PATH. It is used in the WebSubmit module to check the validity of the submitted files. You can continue without it but you will miss some CDSware functionality. We recommend you to install it first and to rerun the configure script. File is available from .]) fi ## Check for convert: AC_PATH_PROG(CONVERT, convert) if test -z "$CONVERT"; then AC_MSG_WARN([ Convert was not found in your PATH. It is used in the WebSubmit module to create an icon from a submitted picture. You can continue without it but you will miss some CDSware functionality. We recommend you to install it first and to rerun the configure script. Convert is available from .]) fi ## Check for CLISP: AC_MSG_CHECKING(for clisp) AC_ARG_WITH(clisp, AC_HELP_STRING([--with-clisp], [path to a specific CLISP binary (optional)]), CLISP=${withval}) if test -n "$CLISP"; then AC_MSG_RESULT($CLISP) else AC_PATH_PROG(CLISP, clisp) if test -z "$CLISP"; then AC_MSG_WARN([ GNU CLISP was not found in your PATH. It is used by the WebStat module to produce statistics about CDSware usage. (Alternatively, SBCL or CMUCL can be used instead of CLISP.) You can continue without it but you will miss this feature. We recommend you to install it first (if you don't have neither CMUCL nor SBCL) and to rerun the configure script. GNU CLISP is available from .]) fi fi ## Check for CMUCL: AC_MSG_CHECKING(for cmucl) AC_ARG_WITH(cmucl, AC_HELP_STRING([--with-cmucl], [path to a specific CMUCL binary (optional)]), CMUCL=${withval}) if test -n "$CMUCL"; then AC_MSG_RESULT($CMUCL) else AC_PATH_PROG(CMUCL, cmucl) if test -z "$CMUCL"; then AC_MSG_CHECKING(for lisp) # CMUCL can also be installed under `lisp' exec name AC_PATH_PROG(CMUCL, lisp) fi if test -z "$CMUCL"; then AC_MSG_WARN([ CMUCL was not found in your PATH. It is used by the WebStat module to produce statistics about CDSware usage. (Alternatively, CLISP or SBCL can be used instead of CMUCL.) You can continue without it but you will miss this feature. We recommend you to install it first (if you don't have neither CLISP nor SBCL) and to rerun the configure script. CMUCL is available from .]) fi fi ## Check for SBCL: AC_MSG_CHECKING(for sbcl) AC_ARG_WITH(sbcl, AC_HELP_STRING([--with-sbcl], [path to a specific SBCL binary (optional)]), SBCL=${withval}) if test -n "$SBCL"; then AC_MSG_RESULT($SBCL) else AC_PATH_PROG(SBCL, sbcl) if test -z "$SBCL"; then AC_MSG_WARN([ SBCL was not found in your PATH. It is used by the WebStat module to produce statistics about CDSware usage. (Alternatively, CLISP or CMUCL can be used instead of SBCL.) You can continue without it but you will miss this feature. We recommend you to install it first (if you don't have neither CLISP nor CMUCL) and to rerun the configure script. SBCL is available from .]) fi fi ## Check for gnuplot: AC_PATH_PROG(GNUPLOT, gnuplot) if test -z "$GNUPLOT"; then AC_MSG_WARN([ Gnuplot was not found in your PATH. It is used by the BibRank module to produce graphs about download and citation history. You can continue without it but you will miss these graphs. We recommend you to install it first and to rerun the configure script. Gnuplot is available from .]) fi ## Substitute variables: AC_SUBST(VERSION) AC_SUBST(WML) AC_SUBST(MYSQL) AC_SUBST(PHP) AC_SUBST(PYTHON) AC_SUBST(WEBDIR) AC_SUBST(CLIDIR) AC_SUBST(WEBURL) AC_SUBST(DBHOST) AC_SUBST(DBNAME) AC_SUBST(DBUSER) AC_SUBST(DBPASS) AC_SUBST(PDFTOTEXT) AC_SUBST(PSTOTEXT) AC_SUBST(PSTOASCII) AC_SUBST(ANTIWORD) AC_SUBST(CATDOC) AC_SUBST(WVTEXT) AC_SUBST(PPTHTML) AC_SUBST(XLHTML) AC_SUBST(HTMLTOTEXT) AC_SUBST(localstatedir, `eval echo "${localstatedir}"`) AC_SUBST(CACHEDIR) AC_SUBST(CLISP) AC_SUBST(CMUCL) AC_SUBST(SBCL) AC_SUBST(GNUPLOT) AC_SUBST(DJPEG) AC_SUBST(CONVERT) AC_SUBST(GIFTEXT) AC_SUBST(JPEGSIZE) AC_SUBST(PNMSCALE) AC_SUBST(PPMQUANT) AC_SUBST(PPMTOGIF) AC_SUBST(GIFINTER) AC_SUBST(GIFRSIZE) ## Define output files: AC_CONFIG_FILES([config.nice \ Makefile \ po/Makefile.in \ config/Makefile \ config/configbis.wml \ modules/Makefile \ modules/bibconvert/Makefile \ modules/bibconvert/bin/Makefile \ modules/bibconvert/bin/bibconvert \ modules/bibconvert/doc/Makefile \ modules/bibconvert/doc/admin/Makefile \ modules/bibconvert/doc/hacking/Makefile \ modules/bibconvert/etc/Makefile \ modules/bibconvert/lib/Makefile \ modules/bibmatch/Makefile \ modules/bibmatch/bin/Makefile \ modules/bibmatch/bin/bibmatch \ modules/bibmatch/doc/Makefile \ modules/bibmatch/doc/admin/Makefile \ modules/bibmatch/etc/Makefile \ modules/bibmatch/lib/Makefile \ modules/bibedit/Makefile \ modules/bibedit/bin/Makefile \ modules/bibedit/bin/refextract \ modules/bibedit/bin/xmlmarclint \ modules/bibedit/doc/Makefile \ modules/bibedit/doc/admin/Makefile \ modules/bibedit/doc/hacking/Makefile \ modules/bibedit/etc/Makefile \ modules/bibedit/lib/Makefile \ modules/bibedit/web/Makefile \ modules/bibedit/web/admin/Makefile \ modules/bibformat/Makefile \ modules/bibformat/bin/Makefile \ modules/bibformat/bin/bibformat \ modules/bibformat/bin/bibreformat \ modules/bibformat/doc/Makefile \ modules/bibformat/doc/admin/Makefile \ modules/bibformat/doc/hacking/Makefile \ modules/bibformat/lib/Makefile \ modules/bibformat/lib/core/Makefile \ modules/bibformat/lib/common/Makefile \ modules/bibformat/web/Makefile \ modules/bibformat/web/admin/Makefile \ modules/bibharvest/Makefile \ modules/bibharvest/bin/Makefile \ modules/bibharvest/bin/bibharvest \ modules/bibharvest/bin/oaiharvest \ modules/bibharvest/bin/oaiarchive \ modules/bibharvest/doc/Makefile \ modules/bibharvest/doc/admin/Makefile \ modules/bibharvest/doc/hacking/Makefile \ modules/bibharvest/lib/Makefile \ modules/bibharvest/web/Makefile \ modules/bibharvest/web/admin/Makefile \ + modules/bibclassify/Makefile + modules/bibclassify/bin/Makefile + modules/bibclassify/bin/bibclassify + modules/bibclassify/doc/Makefile \ + modules/bibclassify/doc/admin/Makefile \ + modules/bibclassify/doc/hacking/Makefile \ + modules/bibclassify/etc/Makefile + modules/bibclassify/lib/Makefile modules/bibindex/Makefile \ modules/bibindex/bin/Makefile \ modules/bibindex/bin/bibindex \ modules/bibindex/bin/bibstat \ modules/bibindex/doc/Makefile \ modules/bibindex/doc/admin/Makefile \ modules/bibindex/doc/hacking/Makefile \ modules/bibindex/lib/Makefile \ modules/bibindex/web/Makefile \ modules/bibindex/web/admin/Makefile \ modules/bibrank/Makefile \ modules/bibrank/bin/Makefile \ modules/bibrank/bin/bibrank \ modules/bibrank/bin/bibrankgkb \ modules/bibrank/doc/Makefile \ modules/bibrank/doc/admin/Makefile \ modules/bibrank/doc/hacking/Makefile \ modules/bibrank/etc/Makefile \ modules/bibrank/etc/bibrankgkb.cfg \ modules/bibrank/etc/demo_jif.cfg \ modules/bibrank/etc/template_single_tag_rank_method.cfg \ modules/bibrank/lib/Makefile \ modules/bibrank/web/Makefile \ modules/bibrank/web/admin/Makefile \ modules/bibsched/Makefile \ modules/bibsched/bin/Makefile \ modules/bibsched/bin/bibsched \ modules/bibsched/bin/bibtaskex \ modules/bibsched/doc/Makefile \ modules/bibsched/doc/admin/Makefile \ modules/bibsched/doc/hacking/Makefile \ modules/bibupload/Makefile \ modules/bibupload/bin/Makefile \ modules/bibupload/bin/bibupload \ modules/bibupload/doc/Makefile \ modules/bibupload/doc/admin/Makefile \ modules/bibupload/doc/hacking/Makefile \ modules/elmsubmit/Makefile \ modules/elmsubmit/bin/Makefile \ modules/elmsubmit/bin/elmsubmit \ modules/elmsubmit/doc/Makefile \ modules/elmsubmit/doc/admin/Makefile \ modules/elmsubmit/doc/hacking/Makefile \ modules/elmsubmit/etc/Makefile \ modules/elmsubmit/etc/elmsubmit.cfg \ modules/elmsubmit/lib/Makefile \ modules/elmsubmit/lib/magic/Makefile \ modules/miscutil/Makefile \ modules/miscutil/bin/Makefile \ modules/miscutil/bin/dbexec \ modules/miscutil/bin/dbtest \ modules/miscutil/bin/testsuite \ modules/miscutil/lib/Makefile \ modules/miscutil/demo/Makefile \ modules/miscutil/sql/Makefile \ modules/miscutil/web/Makefile \ modules/miscutil/doc/Makefile \ modules/miscutil/doc/hacking/Makefile \ modules/webaccess/Makefile \ modules/webaccess/bin/Makefile \ modules/webaccess/bin/authaction \ modules/webaccess/bin/webaccessadmin \ modules/webaccess/doc/Makefile \ modules/webaccess/doc/admin/Makefile \ modules/webaccess/doc/hacking/Makefile \ modules/webaccess/lib/Makefile \ modules/webaccess/web/Makefile \ modules/webaccess/web/admin/Makefile \ modules/webalert/Makefile \ modules/webalert/bin/Makefile \ modules/webalert/bin/alertengine \ modules/webalert/doc/Makefile \ modules/webalert/doc/admin/Makefile \ modules/webalert/doc/hacking/Makefile \ modules/webalert/lib/Makefile \ modules/webalert/web/Makefile \ modules/webhelp/Makefile \ modules/webhelp/web/Makefile \ modules/webhelp/web/hacking/Makefile \ modules/webhelp/web/admin/Makefile \ modules/webhelp/web/admin/howto/Makefile \ modules/websearch/Makefile \ modules/websearch/bin/Makefile \ modules/websearch/bin/webcoll \ modules/websearch/doc/Makefile \ modules/websearch/doc/admin/Makefile \ modules/websearch/doc/hacking/Makefile \ modules/websearch/lib/Makefile \ modules/websearch/web/Makefile \ modules/websearch/web/admin/Makefile \ modules/websession/Makefile \ modules/websession/bin/Makefile \ modules/websession/doc/Makefile \ modules/websession/doc/admin/Makefile \ modules/websession/doc/hacking/Makefile \ modules/websession/lib/Makefile \ modules/websession/web/Makefile \ modules/webstat/Makefile \ modules/webstat/bin/Makefile \ modules/webstat/bin/webstat \ modules/webstat/doc/Makefile \ modules/webstat/doc/admin/Makefile \ modules/webstat/doc/hacking/Makefile \ modules/webstat/etc/Makefile \ modules/webstat/lib/Makefile \ modules/webstyle/Makefile \ modules/webstyle/css/Makefile \ modules/webstyle/doc/Makefile \ modules/webstyle/doc/admin/Makefile \ modules/webstyle/doc/hacking/Makefile \ modules/webstyle/img/Makefile \ modules/webstyle/lib/Makefile \ modules/webcomment/Makefile \ modules/webcomment/doc/Makefile \ modules/webcomment/doc/admin/Makefile \ modules/webcomment/doc/hacking/Makefile \ modules/webcomment/lib/Makefile \ modules/webcomment/web/Makefile \ modules/webcomment/web/admin/Makefile \ modules/webbasket/Makefile \ modules/webbasket/doc/Makefile \ modules/webbasket/doc/admin/Makefile \ modules/webbasket/doc/hacking/Makefile \ modules/webbasket/lib/Makefile \ modules/webbasket/web/Makefile \ modules/webmessage/Makefile \ modules/webmessage/bin/Makefile \ modules/webmessage/bin/webmessageadmin \ modules/webmessage/doc/Makefile \ modules/webmessage/doc/admin/Makefile \ modules/webmessage/doc/hacking/Makefile \ modules/webmessage/lib/Makefile \ modules/webmessage/web/Makefile \ modules/websubmit/Makefile \ modules/websubmit/bin/Makefile \ modules/websubmit/bin/thumbmaker \ modules/websubmit/etc/Makefile \ modules/websubmit/etc/bibconvert/Makefile \ modules/websubmit/etc/bibconvert/KB/Makefile \ modules/websubmit/etc/bibconvert/config/Makefile \ modules/websubmit/etc/bibconvert/config/EDSPICTcreate.tpl \ modules/websubmit/etc/bibconvert/config/EDSRPICTcreate.tpl \ modules/websubmit/etc/bibconvert/config/EDSTEXTcreate.tpl \ modules/websubmit/etc/bibconvert/config/EDSRTEXTcreate.tpl \ modules/websubmit/doc/Makefile \ modules/websubmit/doc/admin/Makefile \ modules/websubmit/doc/hacking/Makefile \ modules/websubmit/lib/Makefile \ modules/websubmit/lib/functions/Makefile \ modules/websubmit/web/Makefile \ modules/websubmit/web/admin/Makefile \ ]) AC_CONFIG_COMMANDS(.wmlrc, [ cat<.wmlrc -Iconfig -I${srcdir}/config EOF ]) ## Finally, write output files: AC_OUTPUT ## Write help: AC_MSG_RESULT([****************************************************************************]) AC_MSG_RESULT([** Your CERN Document Server Software (CDSware) installation is now ready **]) AC_MSG_RESULT([** for building. You have entered the following parameters: **]) AC_MSG_RESULT([** - CDSware main install directory: ${prefix}]) AC_MSG_RESULT([** - Web install directory: $WEBDIR]) AC_MSG_RESULT([** - Web home URL: $WEBURL]) AC_MSG_RESULT([** - DB server: $DBHOST]) AC_MSG_RESULT([** - DB name: $DBNAME]) AC_MSG_RESULT([** - DB username: $DBUSER]) AC_MSG_RESULT([** - DB password: $DBPASS]) AC_MSG_RESULT([** - Python executable: $PYTHON]) AC_MSG_RESULT([** - CLISP executable: $CLISP]) AC_MSG_RESULT([** - CMUCL executable: $CMUCL]) AC_MSG_RESULT([** - SBCL executable: $SBCL]) AC_MSG_RESULT([** Here are the steps to continue the building process: **]) AC_MSG_RESULT([** 1) Customize self-explanatory config file './config/config.wml'. **]) AC_MSG_RESULT([** 2) Type 'make' to build your customized CDSware installation. **]) AC_MSG_RESULT([** 3) Type 'make create-tables' if you have not created tables before. **]) AC_MSG_RESULT([** 4) Type 'make install' to install the system. **]) AC_MSG_RESULT([** 5) Type 'make create-demo-site' to install and test the demo site. **]) AC_MSG_RESULT([** Good luck, and thanks for choosing the CERN Document Server Software. **]) AC_MSG_RESULT([** -- CDS Development Group **]) AC_MSG_RESULT([****************************************************************************]) ## end of file diff --git a/modules/Makefile.am b/modules/Makefile.am index 62d9142cc..5b15e3cb2 100644 --- a/modules/Makefile.am +++ b/modules/Makefile.am @@ -1,22 +1,22 @@ ## $Id$ ## This file is part of the CERN Document Server Software (CDSware). ## Copyright (C) 2002, 2003, 2004, 2005 CERN. ## ## The CDSware is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## The CDSware is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDSware; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. -SUBDIRS = bibconvert bibedit bibharvest bibmatch bibsched bibindex bibrank bibupload bibformat elmsubmit miscutil webstyle websession webhelp webbasket webalert websearch websubmit webaccess webmessage webstat webcomment +SUBDIRS = bibclassify bibconvert bibedit bibharvest bibmatch bibsched bibindex bibrank bibupload bibformat elmsubmit miscutil webstyle websession webhelp webbasket webalert websearch websubmit webaccess webmessage webstat webcomment CLEANFILES = *~ diff --git a/modules/bibclassify/.cvsignore b/modules/bibclassify/.cvsignore new file mode 100644 index 000000000..a3409fca7 --- /dev/null +++ b/modules/bibclassify/.cvsignore @@ -0,0 +1,5 @@ +Makefile +Makefile.in +z_* +*.O +*~ \ No newline at end of file diff --git a/modules/Makefile.am b/modules/bibclassify/Makefile.am similarity index 79% copy from modules/Makefile.am copy to modules/bibclassify/Makefile.am index 62d9142cc..812bcc0d9 100644 --- a/modules/Makefile.am +++ b/modules/bibclassify/Makefile.am @@ -1,22 +1,22 @@ ## $Id$ ## This file is part of the CERN Document Server Software (CDSware). ## Copyright (C) 2002, 2003, 2004, 2005 CERN. ## ## The CDSware is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## The CDSware is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDSware; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. -SUBDIRS = bibconvert bibedit bibharvest bibmatch bibsched bibindex bibrank bibupload bibformat elmsubmit miscutil webstyle websession webhelp webbasket webalert websearch websubmit webaccess webmessage webstat webcomment +SUBDIRS = bin etc doc lib CLEANFILES = *~ diff --git a/modules/bibclassify/bin/.cvsignore b/modules/bibclassify/bin/.cvsignore new file mode 100644 index 000000000..ccb27e30c --- /dev/null +++ b/modules/bibclassify/bin/.cvsignore @@ -0,0 +1,6 @@ +Makefile +Makefile.in +z_* +*.O +*~ +bibclassify diff --git a/modules/Makefile.am b/modules/bibclassify/bin/Makefile.am similarity index 77% copy from modules/Makefile.am copy to modules/bibclassify/bin/Makefile.am index 62d9142cc..d08fc668a 100644 --- a/modules/Makefile.am +++ b/modules/bibclassify/bin/Makefile.am @@ -1,22 +1,24 @@ ## $Id$ ## This file is part of the CERN Document Server Software (CDSware). ## Copyright (C) 2002, 2003, 2004, 2005 CERN. ## ## The CDSware is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## The CDSware is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDSware; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. -SUBDIRS = bibconvert bibedit bibharvest bibmatch bibsched bibindex bibrank bibupload bibformat elmsubmit miscutil webstyle websession webhelp webbasket webalert websearch websubmit webaccess webmessage webstat webcomment +bin_SCRIPTS = bibclassify -CLEANFILES = *~ +EXTRA_DIST = bibclassify.in + +CLEANFILES = *~ *.tmp bibclassifyc diff --git a/modules/bibclassify/bin/bibclassify.in b/modules/bibclassify/bin/bibclassify.in new file mode 100644 index 000000000..96a2f5661 --- /dev/null +++ b/modules/bibclassify/bin/bibclassify.in @@ -0,0 +1,52 @@ +#!/usr/bin/python2.3 +## -*- mode: python; coding: utf-8; -*- +## +## This file is part of the CERN Document Server Software (CDSware). +## Copyright (C) 2002, 2003, 2004, 2005 CERN. +## +## The CDSware is free software; you can redistribute it and/or +## modify it under the terms of the GNU General Public License as +## published by the Free Software Foundation; either version 2 of the +## License, or (at your option) any later version. +## +## The CDSware is distributed in the hope that it will be useful, but +## WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with CDSware; if not, write to the Free Software Foundation, Inc., +## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. + +"""CDSware BibClassify. + It extracts keywords from a pdf or text file based on a thesaurus. + +Usage: bibclassify [options] + Examples: + bibclassify -f file.pdf -k thesaurus.txt -o TEXT + bibclassify -t file.txt -K ontology.rdf -m SLOW + + Specific options: + -f, --pdffile=FILENAME name of the pdf file to be classified + -t, --textfile=FILENAME name of the text file to be classified + -k, --thesaurus=FILENAME name of the text thesaurus (taxonomy) + -K, --ontology=FILENAME name of the RDF or OWL ontology (experimental) + -o, --output=HTML|TEXT output list of keywords in either HTML or text + -n, --nkeywords=NUMBER max number of keywords to be found + -m, --mode=FAST|SLOW processing mode: FAST (run on abstract and selected pages), SLOW (run on whole document - more accurate) + + General options: + -h, --help print this help and exit + -V, --version print version and exit + +""" + +try: + import sys + from cdsware.bibclassifylib import main +except ImportError, e: + print "Error: %s" % e + import sys + sys.exit(1) + +main() diff --git a/modules/bibclassify/doc/.cvsignore b/modules/bibclassify/doc/.cvsignore new file mode 100644 index 000000000..f0878fb91 --- /dev/null +++ b/modules/bibclassify/doc/.cvsignore @@ -0,0 +1,8 @@ +Makefile +Makefile.in +z_* +*.O +*~ +*.py +*.shtml +*.html \ No newline at end of file diff --git a/modules/Makefile.am b/modules/bibclassify/doc/Makefile.am similarity index 79% copy from modules/Makefile.am copy to modules/bibclassify/doc/Makefile.am index 62d9142cc..f9de00106 100644 --- a/modules/Makefile.am +++ b/modules/bibclassify/doc/Makefile.am @@ -1,22 +1,22 @@ ## $Id$ ## This file is part of the CERN Document Server Software (CDSware). ## Copyright (C) 2002, 2003, 2004, 2005 CERN. ## ## The CDSware is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## The CDSware is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDSware; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. -SUBDIRS = bibconvert bibedit bibharvest bibmatch bibsched bibindex bibrank bibupload bibformat elmsubmit miscutil webstyle websession webhelp webbasket webalert websearch websubmit webaccess webmessage webstat webcomment +SUBDIRS = admin hacking CLEANFILES = *~ diff --git a/modules/bibclassify/doc/admin/.cvsignore b/modules/bibclassify/doc/admin/.cvsignore new file mode 100644 index 000000000..b644e5e86 --- /dev/null +++ b/modules/bibclassify/doc/admin/.cvsignore @@ -0,0 +1,7 @@ +Makefile +Makefile.in +z_* +*.O +*~ +*.shtml +*.html diff --git a/modules/Makefile.am b/modules/bibclassify/doc/admin/Makefile.am similarity index 67% copy from modules/Makefile.am copy to modules/bibclassify/doc/admin/Makefile.am index 62d9142cc..3146be3a1 100644 --- a/modules/Makefile.am +++ b/modules/bibclassify/doc/admin/Makefile.am @@ -1,22 +1,31 @@ ## $Id$ ## This file is part of the CERN Document Server Software (CDSware). ## Copyright (C) 2002, 2003, 2004, 2005 CERN. ## ## The CDSware is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## The CDSware is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDSware; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. -SUBDIRS = bibconvert bibedit bibharvest bibmatch bibsched bibindex bibrank bibupload bibformat elmsubmit miscutil webstyle websession webhelp webbasket webalert websearch websubmit webaccess webmessage webstat webcomment +docdir=$(WEBDIR)/admin/bibclassify -CLEANFILES = *~ +doc_DATA=index.html guide.html + +FILESWML = $(wildcard $(srcdir)/*.wml) +EXTRA_DIST = $(FILESWML:$(srcdir)/%=%) + +CLEANFILES = $(doc_DATA) *~ *.tmp + +%.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(top_srcdir)/config/cdsnavbar.wml + $(WML) -o\(ALL-LANG_*\)+LANG_EN:$@ $< + $(PYTHON) $(top_srcdir)/po/i18n_update_wml_target.py en $@ diff --git a/modules/Makefile.am b/modules/bibclassify/doc/admin/guide.html.wml similarity index 61% copy from modules/Makefile.am copy to modules/bibclassify/doc/admin/guide.html.wml index 62d9142cc..c999f489b 100644 --- a/modules/Makefile.am +++ b/modules/bibclassify/doc/admin/guide.html.wml @@ -1,22 +1,29 @@ +## -*- mode: html; coding: utf-8; -*- ## $Id$ ## This file is part of the CERN Document Server Software (CDSware). ## Copyright (C) 2002, 2003, 2004, 2005 CERN. ## ## The CDSware is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## The CDSware is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -## General Public License for more details. +## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDSware; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. -SUBDIRS = bibconvert bibedit bibharvest bibmatch bibsched bibindex bibrank bibupload bibformat elmsubmit miscutil webstyle websession webhelp webbasket webalert websearch websubmit webaccess webmessage webstat webcomment +#include "cdspage.wml" \ + title="BibClassify Admin Guide" \ + navtrail_previous_links="/admin/> > /admin/bibclassify/>BibClassify Admin" \ + navbar_name="admin" \ + navbar_select="bibclassify-admin-guide" -CLEANFILES = *~ +

Version <: print generate_pretty_revision_date_string('$Id$'); :> + +

FIXME. diff --git a/modules/Makefile.am b/modules/bibclassify/doc/admin/index.html.wml similarity index 64% copy from modules/Makefile.am copy to modules/bibclassify/doc/admin/index.html.wml index 62d9142cc..73cb98032 100644 --- a/modules/Makefile.am +++ b/modules/bibclassify/doc/admin/index.html.wml @@ -1,22 +1,29 @@ ## $Id$ ## This file is part of the CERN Document Server Software (CDSware). ## Copyright (C) 2002, 2003, 2004, 2005 CERN. ## ## The CDSware is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## The CDSware is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -## General Public License for more details. +## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDSware; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. -SUBDIRS = bibconvert bibedit bibharvest bibmatch bibsched bibindex bibrank bibupload bibformat elmsubmit miscutil webstyle websession webhelp webbasket webalert websearch websubmit webaccess webmessage webstat webcomment +#include "cdspage.wml" \ + title="BibClassify Admin" \ + navtrail_previous_links="/admin/>" \ + navbar_name="admin" \ + navbar_select="bibclassify" -CLEANFILES = *~ +

+
BibClassify Admin Guide
+
Everything you want to know about configuring and running BibClassify.
+
diff --git a/modules/bibclassify/doc/hacking/.cvsignore b/modules/bibclassify/doc/hacking/.cvsignore new file mode 100644 index 000000000..f0878fb91 --- /dev/null +++ b/modules/bibclassify/doc/hacking/.cvsignore @@ -0,0 +1,8 @@ +Makefile +Makefile.in +z_* +*.O +*~ +*.py +*.shtml +*.html \ No newline at end of file diff --git a/modules/bibclassify/doc/hacking/Makefile.am b/modules/bibclassify/doc/hacking/Makefile.am new file mode 100644 index 000000000..e69de29bb diff --git a/modules/bibclassify/etc/.cvsignore b/modules/bibclassify/etc/.cvsignore new file mode 100644 index 000000000..d4766d920 --- /dev/null +++ b/modules/bibclassify/etc/.cvsignore @@ -0,0 +1,5 @@ +Makefile +Makefile.in +z_* +*.O +*~ diff --git a/modules/bibclassify/etc/CERESTheme.rdf b/modules/bibclassify/etc/CERESTheme.rdf new file mode 100644 index 000000000..1e4cf116d --- /dev/null +++ b/modules/bibclassify/etc/CERESTheme.rdf @@ -0,0 +1,23369 @@ + + + + + + + + + + + + Theme terms used for cataloguing CERES (California Environmental Resources + Evaluation System) resources. + CERES Theme Thesaurus + + + + + + + ADL Feature Types + + + + Changed from a D + Abiotic factors + + + + + Abiotic processes + + + + + Absorption + + + + Collisions + Damage to property + Property damage + Wrecks + + + + Accidents + + + + + + + + Acclimation + Acclimatization + + + + + + + + + + + Accounting + + + + Acid precipitation + + + Acid rain + + + + + Acidification + + + + + + Acidity + + + + + Acids + + + + + Acoustic properties + + + + + + + Acoustics + + + + Defense (law) + Lawsuits + Litigation + Suits (law) + + Actions & defenses + + + + Demonstrators + Militants + Political activists + Protesters + + Activists + + + + + + + + + + + + Activity patterns + + + + + + Adaptation (behavior) + + Short term behavioral modifications in response to changed or changing conditions. + + + + Adaptation (biology) + + + + + Adaptation (evolution) + + + + + Evolutionary changes in structure, morphology, or physiology of populations that enhance their ability to survive and reproduce in the prevailing environmental conditions. These changes are genetic modifications that occur over long periods of time. + + + + Public administration + + + + + + + + + + Administration + + + + Administrative ability + + + + + Administrative boundaries + + + + + + + + Administrative competence + + + + + Administrative law + + + + + + + + + + + + Administrative procedures + + + + + Adsorption + + + + + + Adult + + + + Continuing education + + Adult education + + + + + + Aeration + + + + + Aerobiology + + + + Aviation + + Aeronautics + + Science, art, or practice of aircraft operation and/or aerial navigation. + + + + + Aerosol + + + + Aerospace telemeter + + Aerospace telemetry + + + + + Age + + + + Elderly persons + Elderly people + Older persons + Older people + Senior citizens + + + Aged persons + + + + + + + Aggressive behavior + + + + + Agonistic behavior + + + + Agricultural resources conservation + Conservation of agricultural resources + + + Agricultural conservation + + + + + Diversification of agriculture + Diversified farming + + Agricultural diversification + + + + Agroecology + + Agricultural ecology + + + + + Agricultural economics + + + + + Agricultural equipment + + + + + + + + + + Agricultural facilities + + + + + Farm workers + Farmworkers + Field laborers + + + Agricultural laborers + + + + + + + + + + Agricultural land + Land used primarily for the production of plant or animal crops. + + + + + Agricultural machinery + + + + + + + + + + + + + + + + + + + + + + + Agricultural methods + + + + + Agricultural pests + + + + + + Agricultural planning + + + + + Agricultural policy + + + + + Agricultural pollutants + + + + + Agricultural pollution + + + + + Agricultural preserves + + + + + + + + Agricultural product + + + + + + + + + + Agricultural production + + + + + Agricultural productivity + + + + + + + + + Agricultural resources + + + + + + Agricultural run-off + + + + + Agricultural waste + + + + + Husbandry + + + + + + + + + + + + + + + + + + + + + + + + + + + Agriculture + + + + + + + + + + + + + + + + Agritourism + + + + + Agrochemicals + + + + + Agroindustry + + + + + Agronomic value + + + + + + Agronomy + + + + Agrosystem + + + + + + + + + Air + + + + + + Air bases + + + + + Air pollutant + + + + + Air pollution + + + + + + Air quality + + + + + + + + + + Air quality control + + + + Air pollution control + + + Air quality management + + + + + + + Air temperature + + + + + + Aircraft + + + + + + + Airplanes + + + + + + Alarm reaction + + + + + Alcohols + + + + + Alfalfa + + + + Limu + + + Algae + + + + + Algae blooms + Microalgal blooms + + + + Algal blooms + + + + + Algicides + + + + + Algology + + + + + Foreign workers + + + Alien laborers + Laborers who seek work outside their own country. Search under MIGRANT LABORERS for those who regularly migrate within the same country. + + + + Enemy aliens + Foreigners + + + Aliens + + For persons who are not citizens of the country in which they reside. + + + + + Allelopathy + + + + + Allergens + + + + Allergic diseases + + Allergies + + + + + + Allergy + + + + + Alluvial plain + A plain underlain by fluvial deposits, including allivial (fluvial) fans, and lacustrine deposits (stream-transported materialsthat have accumulated in lakes). + + + + + Alluviums + + + + + Alternative energy + + + + + Altitude + + + + + Aluminum + + + + + Ambulance Areas + + + + + Ambulance response areas + + + + + Amino acids + + + + + + + + Amphibians + + + Cold-blooded vertebrate animals in the class Amphibia, which contains the following orders: Anura, which are frogs and toads; Caudata, which are salamandars and newts; and Apoda, which are burrowing caecilians found in the sub-tropical regions. + + + + + Anadromous fishes + Fish that are born and reared in freshwater, move to the ocean to grow and mature, and return to freshwater to reproduce (e.g., salmon, steelhead, and shad). + + + + + Anaerobic treatment + + + + + + + + + + + + + + + Analysis + A detailed examination of a body of data, a series of decisions, or the implications of one or more policies, and a determination of what this examination reveals about the nature, function, and/or relationships in effect. + + + + + Analytical method + + + + + + + + + + + + + + + + + + + Anatomy + + + + + + Androgenous organisms + + + + Behavior of animals + Ethology + + + + + + + + + + + + + + + + + + + + + + + + + Animal behavior + + + + + + + + + + Animal corridor + + + + + Animal displacement + + + + + Animal ecology + + + + Experimental animals + Experimentation on animals + Laboratory animals + + Animal experimentation + + + + + + + + Domestic animal dwellings + Habitations of domestic animals + + + + + Animal housing + + + + + Livestock industry + + + + Animal industry + + + + Animal-plant interactions + Animals and plants + Plant-animal interactions + Plant-animal relationships + Plants and animals + + Animal-plant relationships + + + + + Animal reproduction + + + + + Animal rights + + + + Animal skins + + + + + + Animal traps + + + + + + Animal treatment + + + + + + + + + Humane societies + + Animal welfare organizations + + + + + + + Animalia + + + + + Fauna + Wildlife + + + + + + + + + + + + + + + + + Animals + + + + + + + + + + + + + + + + + + + + + + + + + + + Animals in human situations + + + + Animals (not systematic) + + + + + Animals (taxonomy) + + + + + + Anions + + + + Acquisition of territory + Cession of territory + + Annexations + + + + + + + + + Anthropogenic factor + + + + + Anthropology + + + + + + Antibody + + + + + Antipollution incentives + + + + Ecaudata + Salientia + + + Anura + + + + + Apiculture + + + + + + + + Applied ecology + + + + + + + Applied nutrition + + + + + Applied research + + + + + + + + + + + + + + + Applied sciences + + + + Alternative technology + Appropriate technologies + Soft technology + + + Appropriate technology + + + + + Aquariums + + + + + Aquatic fauna + Marine animals + Marine life + Ocean life + Sea animals + Sea life + Water animals + + + + + + + + Aquatic animals + + + + + Animals that live entirely in the water. + + + + Hydrobiology + Water biology + + + + + Aquatic biology + + + + + + Aquatic birds + + + + + Aquatic ecology + + + + + Aquatic ecosystem + + + + + Aquatic habitats + + + + + + Aquatic invertebrates + + + + + + Aquatic mammals + + + + + + Aquatic microorganisms + + + + Aquatic species + + + + + + + Aquatic organisms + + + + Aquatic reserves + + + Aquatic parks and reserves + + + + Aquatic flora + Hydrophytes + Water plants + Waterplants + + + + + Aquatic plants + + + + + + + + + + Aquatic resources + + + + + + + + Aquatic sciences + + + + Water sports + + + Aquatic sports + + + + + + Aquifer + + + + + Arachnida + + + + Arboretum + + + + + + + Archaeology + + + + + + Architectural design + + + + + Architectural engineering + + + + + + Architectural & site components + + + Elements that, together, contribute to the make-up and appearance of structures. + + + + + + Architectural structures + + + + Area research + Foreign area studies + + Area studies + Here are entered general works on area studies, and with local +subdivision, works on area studies carried out in specific places. Works +on area studies about a particular region, country, etc. are entered +under the name of the region, country, etc. with the subdivision Study +and teaching or Research. + + + + + Arid lands + + + + Dryland agriculture + Dryland farming + + Arid regions agriculture + + + + + Arid regions ecology + + + + + Arid zones + + + + Arrests + + + + + Arroyos + + + + + + + + + + + + Art + + + + + + + Art activities + + + + Art schools + Art education + + + + + Arts festivals + + Art festivals + + + + + + Art museums + + + + + Art work + Artwork + + + + + + Arthropoda + + + + + Artificial pollination + + + + + Earth satellites + Orbiting vehicles + Satellite vehicles + Sputniks + + + Artificial satellites + + + + + Art work + Artwork + + + + + Assessment criteria + + + + + Assimilation + + + + Aid (relief) + Economic assistance + Federal subsidies + Government lending + Government subsidies + Monetary assistance + Public welfare + Relief (aid) + Subsidies + + + + Assistance + + + + + + + + Astronomical observation + + + + + Astronomy + + + + + + + + + + + + + Atmosphere + + + + + + + Atmospheric aerosol + + + + + Atmospheric chemistry + + + + + Atmospheric components + + + + + Atmospheric composition + + + + + Atmospheric emissions + + + + + Atmospheric layering + + + + + + + Atmospheric monitoring + + + + + Atmospheric ozone + + + + + Atmospheric particulates + + + + + Atmospheric physics + + + + + + + + + + + + + + + + + + + + Atmospheric pollutants + + + + + Atmospheric pollution + + + + + Atmospheric precipitation + + + + + + Atmospheric processes + + + + + Atmospheric sciences + + + + + + + + + + + Atmospheric structure + + + + + Attacks on humans + + + + + Audit + + + + + Auditoriums + + + + Authority body + + + + Writers + + + Authors + + + + Autoecology + + + + + + + Automobile driving + + + + + + + Automobile inspections + + + + + + + Automobile travel + + + + + Autos (automobiles) + Cars + Cars (automobiles) + Gasoline automobiles + Motorcars (automobiles) + + + + Automobiles + + + + + + Fall + + Autumn + + + + + Avalanche protection + + + + + Avalanches + + + + + + + + Aviaries + + + + + + + Aviculture + + + + + Avifauna + + + + Prizes + Rewards + Rewards & prizes + Trophies + + Awards + + + + Awards of merit + + + + Germs + Microbes + + Bacteria + + + + + + + Bacterial Flora + + + + + Bactericide + + + + Equilibrium + + Balance (fish) + + + + + + Barns + + + + + Barrier beach + A narrow elongated sand ridge rising slightly above the high tide level and extending generally parallel with the shoreline but separated from it by a lagoon or marsh. + + + + Barrier reef + + + + + Barrier reefs + + + + + Baseline monitoring + + + + + Basicity + + + + + Basins (bodies of water) + + + + + Bathyspheres + Strongly built diving spheres used for deep-sea observation and study. + + + + Coves + Estuaries + Gulfs + Inlets + Sounds (geomorphology) + + + + Bays + + + + + + Bathing beaches + Beach + Boat landings + Seashores + Strands + + Beaches + + + + + + + + Ursidae + + + + Bears + + + + + Beef cattle + + + + + + Beehives + + + + Benevolent institutions + + + + Benthal organisms + Benthic organisms + Benthonic organisms + + + Benthos + Animal or plant life living in direct association with the substrate of a lake, river, or sea at any depth of water. + + + + + Bibliographical centers + + + + Bicycle paths + Bike paths + Bike trails + Bikeways + Cycle routes + Cycling paths + + Bicycle trails + + + + + Big game + + + + Deep-sea fishing + + Big game fishing + + + + + + Big game hunting + + + + + Bioaccumulation + + + + + + + Biochemical processes + + + + + + + + + + + Biochemical substances + + + + Biological chemistry + Physiological chemistry + + + Biochemistry + + + + Bioclimatics + Biometeorology + + + Bioclimatology + + + + + Bioconcentration factor + + + + + Biodegradability + + + + + Biodegradable pollutants + + + + + + Biodegradation + + + + Biological diversification + Biological diversity + Biotic diversity + + + + + + + Biodiversity + + + + Biodiversity or biological diversity is the sum total of the variety of life and its interactions and can be subdivided into 1) Genetic Diversity 2) Species Diversity, and 3) Ecological or Ecosystem Diversity. + + + + Biological engineering + Life science engineering + + + Bioengineering + + + + + Bioethics + + + + Biogeographic regions + + + + + Biogeography + + + + + Biological analysis + + + + + + + Biological attributes + + + + + + Biological control + + + + + Biological cycle + + + + + Biological development + + + + Conservation of biological diversity + Maintenance of biological diversity + Preservation of biological diversity + + + Biological diversity conservation + + + + + + Biological effect + + + + + Biological indicator + + + + + + + + Biological monitoring + + + + + Biological pest control + + + + + + + + Biological pollutants + + + + + Biological pollution + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Biological processes + + + + + Biological production + + + + Biological production rate + + + Biological productivity + + + + + Biological reserves + + + + + + Biological resources + + + + + + Biological treatment + + + + + Biological waste treatment + + + + + Biologists + + + + + + + + + + + + + + + + + + + + + + + + + + + + Biology + + + + + + + + + + + + + + + + Bioluminescence + The emission of light from living organisms. + + + + + Biomarkers + + + + + + + + Biomass + + The total mass (at any given time) of living organisms of one or more species per unit of space (species biomass) or of all the species in a biotic community (community biomass). + + + + Bioenergy + Biofuels + Biological fuels + + + Biomass energy + + + + Biological mechanics + + Biomechanics + + + For the study of the mechanics of biological and especially muscular activity. + + + + + Biomonitoring methods + + + + + Biophysics + + + + + + + + + + + + + Biosphere + Organisms and ecosystems. + + + + + Biosphere reserves + A management model of the U.N. Man and the Biosphere program in which a core area is preserved free from human disturbances surrounded by buffer zones. + + + + + Biota + All the living organisms found within any one area. + + + + Biotechnological issues + + + + + + + + + Biotechnology + + + + Biocenoses + Biocoenoses + Biogeoecology + Biological communities + Biomes + Ecological communities + Ecosystems + Natural communities + + + + Biotic communities + + + + + Biotic factor + + + + + + + Biotic processes + + + + + Biotope order + + + + + Biotope protection + + + + Biotope networks + Biotopes + The smallest geographic unit of land or habitat in which environmental conditions and the associated organisms living there are uniform. + + + + + Bird sanctuary + + + + Aves + Chicks + Nestlings + + + + + + + + + + + Birds + + + + + + + + + + + Birds (not systematic) + + + + + Raptores + Raptorial birds + Raptors + + + + + + Birds of prey + + + + + Birth defects + + + + + Animal bites + Insect bites + Stings & bites + + Bites & stings + + + + + Snowstorms + + Blizzards + + + + + + Blood + + + + Blue collar workers + + + + Boating + + + + Boats + + + + + + + + + + + + + + + + Bodies of water + + + + + + + + + + + + + Boroughs (municipal subdivision) + + + + + Botanical conservatories + + + + Botanical conservatory + + + + Arboretums + Botanic gardens + + + + Botanical gardens + + + + Flora + Native plants + Phytography + Phytology + Vascular plants + Vegetable kingdom + + + + + + + + + + + Botany + + + + + + Benthic fish + Bottom fish + + + + + Boulders + + + Detached and rounded or much-worn masses of rock. + + + + Borders + Borders (geography) + Boundary lines + Geographical boundaries + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Boundaries + + + + + + + + Boys + + + Human males, ages 0-16. + + + + + Brackish water + + + + + + + + Breakwaters + Offshore structures protecting a habor or beach from the force of waves (websters). + + + + + + + Breeding + + + + + + Breeding birds + + + + Viaducts + + Bridges + + Structures erected over a depression or obstacle, as over a river, gorge, roadway, etc., carrying a roadway and/or walkway for vehicles or persons. Search under SWING BRIDGES for bridges that move horizontally and under VERTICAL LIFT BRIDGES for bridges that lift vertically. + + + + + Brooding + + + + + Brook + + + + + Brown tide + + + + Muscology + + Bryology + + + + + Building construction + + + + + + Building materials + + + + + + Building permit + + + + + Building regulations + + + + Edifices + Structures + + + + + + Buildings + + + For buildings in general; includes buildings with indeterminate functions and buildings distinguished by attributes other than function. Search under other FACILITIES NTs for buildings that serve particular functions (e.g., AGRICULTURAL FACILITIES). Search also under the subdivision -- STRUCTURES used with ethnic, racial, and regional groups, and classes of persons (Appendix A). Search also under the subdivision --BUILDINGS used with names of corporate bodies and named events (Appendix D). + + + + + Built environment + + + + + Buoys + + + + Bureaucracy + + + + + Bus lines + + + + Business & finance + + Links from TGM1 'Business and finance' added. + + + + + Business + + + + + + + + + + + Business classification + + + + Commercial districts + Downtown districts + + Business districts + Areas in towns or cities used for commerical purposes; usually defined and limited by zoning ordinances. + + + + Companies + + + Business enterprises + + + + + + For organizations and undertakings concerned with the supply and distribution of goods and services. Search under COMMERCIAL FACILITIES (and NTs) for facilities where goods and services are bought and sold. + + + + + Butterflies + + + + + Buttes + + + + + + + CALVEG + + + + California Environmental Quality Act + + CEQA + + + The basic goal of the California Environmental Quality Act (CEQA) (Pub. Res. + Code §21000 et seq.) is to develop and maintain a high-quality environment now + and in the future, while the specific goals of CEQA are for California's public + agencies to: + + 1) identify the significant environmental effects of their actions; and, either + 2) avoid those significant environmental effects, where feasible; or + 3) mitigate those significant environmental effects, where feasible. Please refer to http://ceres.ca.gov/topic/env_law/ceqa/summary.html for further definition. + + + + CERES + + + + CHT + The Coastal Hazard Thesaurus created by Scripps Institution of Oceanography and the Department of Boating and Waterways. + + + + + CNDDB/Holland + + + + + CWHR + California Wildlife Habitat Relationships + + + + + + Calendar + + + + + Camouflage (biology) + + + + + + + + Camping + + + + + + Camping site + + + + + + + + + Canals + + + + + + + Cancer + + + + + Candidate species + A native species or subspecies of a bird, mammal, fish, amphibian, reptile, or plant that the Fish and Game Commission has formally noticed as being under review by the California Department and Fish and Game for addition to either the list of endangered species or the list of threatened species, or a species for which the Fish and Game Commission has published a notice of proposed regulation to add the species to either list [California Endangered Species Act - Fish and Game Code, Sec. 2068]. + + + + + + Canidae + + + + + Cannablism + + + + Chasms + Gorges + Gulches + Gullies + Ravines + + Canyons + + For valleys between precipitous walls. Search under CLIFFS for very steep, perpendicular, or overhanging faces of rock, earth, or glacial ice of considerable height. + + + + Coastlines + Headlands + Necks (coasts) + Points (coasts) + + Capes (coasts) + + + + + + + Capitols + + + + + Carbon cycle (biogeochemistry) + + + + + Carbon dioxide + + + + + Carbon monoxide + + + + + Carbon sequestration + + + + + Carcinogens + + + + + Cardiovascular disease + + + + Carnivora + + + Carnivores + + + + + Carrying capacity + + + + + Cash crops + + + + + Catalysis + + + + + Catalyst + + + + + Catch-yield + + + + + Catchment area + + + + + Catchment basin + + + + Category of endangered species + + + + + Bullocks + Calves + Heifers + Oxen + Steers + + + + Cattle + + + + + + + + Cattle ranches + + + + + + Cause-effect relation + + + + + Cavern + + + + Caverns + Caving + Grottoes + Rock shelters + Rockshelters + Spelunking + + Caves + + + Includes the activity of exploring caves. + + + + + Celebrations + + + Includes festivities associated with major events and holidays, as well as smaller festivities such as birthday parties. Search also under the subdivision --COMMEMORATION used with the names of ethnic, racial, and regional groups, and classes of persons (Appendix A); with names of persons (Appendix B); with names of wars (Appendix C); and with corporate bodies and named events (Appendix D). + + + + + Celestial bodies + + + + + + Cells (biology) + + + + Census of population + Population surveys + + + + Census + + + + + + + + Census areas + + + + + Census districts + + + + + Census survey + + + + + Central government + + + + + Chambers of commerce + Associations of businessmen who promote commercial and industrial interests in the community. Includes activities and structures. + + + + River channels + Sounds (geomorphology) + Straits + + Channels + + + + + Chapparal + Elfin forest + + Chaparral + + + + + + Chaparral ecology + + + + + Chemical analysis + + + + + Chemical composition + + + + + Chemical contamination + + + + + Chemical fertilizers + + + + + Chemical hazard + + + + + Chemical pest control + + + + + + + Chemical pollutants + + + + Chemical pollution + + + + Chemical process + + + Chemical processes + + + + + + + + + + + + + + + + + + + + Chemical properties + + + + + + + + + + + + + + + + + + + Chemical reactions + + + + + + + + Chemical substances + + + + + Chemical treatment + + + + + Chemical waste + + + + + + + + + + + + + + + + + + + + + + + + Chemicals + + + + + + + + Chemisorption + + + + + + + + + + + + + + Chemistry + + + + + Chicks + + Chickens + + + + Schoolchildren + + + + Children + + + + + Includes ages 0-16. This heading may be further subdivided by the subdivisions used for classes of persons (Appendix A). Search also under the subdivision --CHILDREN used with names of ethnic, racial, and regional groups (Appendix A), and with names of wars (Appendix C). Search also under other headings beginning with CHILDREN. + + + + + Chlorinated hydrocarbons + + + + + Chlorination + + + + + Chlorofluorocarbons + + + + + Chlorophyll + + + + + Chorology + + + + + Chromatographic analysis + + + + + Chromatography + + + + + Circadian rhythms + + + + + Cities & towns + + For images that focus on structures and sites. Search under CITY & TOWN LIFE for images that focus on activities. + + + + Citizen + + + + Citizen awareness + + + + + Citizen rights + + + + + Citizenship + + + + + Citrus fruit + + + + + City + + + + + City boundaries + + + + Town councils + City councils + + + + + + City government + + + + + City limits + + + + + City managers + + + + Civic planning + Model cities + Town planning + Urban development + Urban planning + + + + + + + + + City planning + + + + + + + + + + + + + City planning districts + + + + Guildhalls (municipal buildings) + Town halls + Village halls + + City & town halls + + + + City views + Skyline views + Topographic views + Townscapes + + Cityscapes + + + + Municipal centers + + Civic centers + + + + + + Civic leaders + + + + Noncooperation + Political violence + Resistance to government + + Civil disobedience + + + + + + + + + + + + + + + Civil engineering + + + + + + + + + + + + Civilization + For the subject of and symbolic representations of civilization. + + + + + + Classification + + + + + + + Cleaning + + + + Land clearing + + Clearing of land + Removal of timber and bushes from land. Search under RECLAMATION OF LAND for bringing wild, waste, or marshy land into a condition for cultivation or other use. + + + + Bluffs + Escarpments + Palisades + Precipices + + Cliffs + + + Very steep, perpendicular, or overhanging faces of rock, earth, or glacial ice of considerable height. Search under CANYONS for images that focus on valleys between cliffs. + + + + + + + + + Climate + + + + The average weather condition at a place as exhibited by temperature, wind velocity, and precipitation. + + + + + Climate effects + + + + + + + + + + + + Climate types + + + + + + + + + + + Climatic alteration + + + + + Climatic change + + + + + + Climatic experiment + + + + + + + Climatic zone + + + + + + Climatological hazards + + + + + + + + Climatology + + The science that deals with climates and their phenomena. + + + + + + Clouds + + + + + + Clubs + Search also under the subdivision --ORGANIZATIONS used with names of racial, ethnic, and regional groups and with classes of persons (Appendix A). + + + + Coal lands + + + Coal + + + + + + Coal mines and mining + + + + + Coast protection + + + + + Coastal areas + + + + + + Coastal development + + + + Coast ecology + Coastal zone ecology + + + Coastal ecology + + + + + + Coastal ecosystems + + + + + Coastal engineering + + + + + Coastal environments + + + + + + + Coastal erosion + + + + + Coastal fishing + + + + Coastal freshwater forests + + Coastal forests + + + + + + + + + + + + + + + + + Coastal hazards + + + + + Coastal health hazards + + + + + Coastal pollution + + + + + + + + Coastal resources + + + + + + + + Coastal water + + + + + Coastal zone planning + + + + Coastal landforms + + + Coasts + + + + + Coexistence + + + + + Combustion engines + + + + + Commercial areas + + + + + + Commercial facilities + + + For facilities associated with the various activities involved in conducting business or trade. + + + + + Commercial fishery + + + + Changed to a descriptor from an entry term. + Commercial fishing + + + + + + Commercial law + + + + + + + + Commercial organizations + + + + + Commodities + Economic goods + Merchandise + + + + Commercial products + + + + + + + Committees + + + Body of persons appointed for a special function. + + + + Common lands + Communal land + Communal lands + + + Commons + + + + + + + + + + + + + + + + + + Communication + + + + + + + + Communities + + + + Regional development + + + Community development + + + + Community councils + + + Community organization + + + + + + Community property + + + + + Commuters + For persons who travel regularly between one place and another. Search under PASSENGERS for general travelers. + + + + + Compaction + + + + + Competition (biological) + + + + Vegetable mold + + + Compost + + + + + Compostable waste + + + + + Composting + + + + + Computer science + + + + + Computer systems + + + + + + + + + + + + + Concentration + + + + + Concentration (process) + + + + + Condensation (process) + + + + Condominium (housing) + Condominium (real property) + Condos + Cotenancy + Horizontal property + + Condominiums + + + + + Conductivity + + + + Conflict of interests + + + + + Congress + + + + + Coniferous forests + + + + Softwood trees + + + Conifers + + + + Historical studies + Imaginary views + Recreations (conjectural works) + + + Conjectural works + + + + + + + Conservation banking + + + + + Land banks + + Conservation banks + + + A conservation bank is a single parcel, or a series of contiguous or +non-contiguous parcels, of habitat which is managed for its natural resource. +values. The resource benefits derived from this management regime are sold +as "credits" to project proponents who seek mitigation opportunities to +compensate for resource impacts elsewhere. Credits may be generated to meet +any number of resource conservation needs, including compensation for +impacts to wetlands, threatened or endangered species, Environmentally +Sensitive Habitat Areas, mudflats, sub-tidal areas, and less sensitive +resources. + + + + + Conservation biology + + + + Conservation servitudes + Nature conservation easements + + Conservation easements + + + + Conservation of natural resources + For the conservation of natural resources. For conservation of historical resources see Historical preservation. For restoration see Environmental restoration and its narrower terms. + + + + + Conservation projects (natural resources) + + + + + Constitutional law + + + + + Consumer groups + + + + + Consumer information + + + + + + Consumer protection + + + + + + + Consumers + + + + + + + Consumption + + + + + + + Contamination + + + + + Contamination of environment + + + + + Continental climate + + + + + Continental shelf + + + + + Continental waters + + + + + Controlled burning + + + + Controlling authority + + + + + Convention + + + + + + Cooperation + + + + + + Consumer cooperatives + Marketing cooperatives + + Cooperatives + + + Enterprises or organizations owned by and operated for the benefit of those using their services. Includes activities and structures. + + + + + Coordination + + + + Authors' rights + + Copyright + + + + Coral + + + + + Coral reef + + + + Maintenance of coral reef productivity + + Coral reef conservation + + + + + Cost benefit + + + + + Cost benefit analysis + + + + + Cost increase + + + + + Cost reduction + + + + + + + + + Costs + + + + + Council districts + + + + + Countryside + + + + + County + + + + + County boundaries + + + + + + County government + + + + Public services + + + County services + + + + + Court + + + + + Court of justice + + + + + Courtship + + + + + Cove + + + + + Cows + + + + Craps + + + + + Craters + + + + + Creek + + + + Crime + + + + + + + Crimes + + + + + + Crisis management + + + + Aerial dusting in agriculture + Aerial spraying in agriculture + + Crop dusting + + + + + + + Crop improvement + + + + + + + Crop plants + + + + + Crop production + + + + + + + + + + Crop protection + + + + Break crops + Rotation of crops + + Crop rotation + + + + Crop production science + Crop sciences + + Crop science + + + + Fields (agriculture) + + Croplands + + + + Land that is suited to or used for crops. + + + + Acrogens + Nonvascular plants + Protophyta + + + Cryptogams + + + + + Cultivated plant + + + + + Cultivation systems + + + + + Cultivation techniques + + + + Cultural buildings + + + + + Cultural facilities + + + + + + + Cultural heritage + + + + + Cultural parks + + + + + Added 2/99 + + + Cultural resources + + + + + + + + Culverts + + For arched drains or sewers. + + + + Bicycling + + + Cycling + + + + + + Dairy farming + + For the care, breeding, feeding, and milking of dairy cattle. Search under MILKING for the milking of cows away from the context of dairy farms. Search under DAIRYING for the production, processing, and manufacture of milk and its products. + + + + + Dairy products + + + + + + Dam construction + + + + + + Damage + + + + + Damage assessment + + + + + Damage prevention + + + + + + + + Dams + + + + + + + + + + + Dancers + Search also under the subdivision --DANCE used with ethnic, racial, and regional groups and with classes of persons (Appendix A). + + + + + Danger + + + + + + + + + Dangerous substances + + + + + Data analysis + + + + + Data collection + + + + Dying + + Death + + Search also under the subdivisions --DEATH & BURIAL, --DEATH MASK used with names of persons (Appendix B). + + + + + Decay + + + + + Deciduous forests + + + + + Deciduous tree + + + + + Decision making + + + + + Decision making support + + + + + + + Decision processes + + + + Decline + + + + + Decomposition + + + + + Decontamination + + + + + Deep-sea disposal + + + + + + + Deer + + + + + + Deer hunting + + + + + War industry + War production + + Defense industry + Includes activities and structures. + + + + + Defensive behavior + + + + + Defoliation + + + + Abnormalities + Malformations + + + Deformities + + + + + Degradability + + + + + + + Degradation + + + + Degradation of natural resources + + + + + Degradation of the environment + + + + + Degradation product + + + + + Delegations + + + + Groups of persons chosen to represent others. + + + + River deltas + + + Deltas + + + + + Self-government + + + Democracy + + + + + + Historical demography + Population studies + + Demography + + + + The statistical study of human populations esp. with reference to size and density, distribution, and vital statistics. + + + + Protests + Public demonstrations + Public protest + Sit-ins + Smoke-ins + + Demonstrations + + + + + + Public displays, usually by a crowd, either in sympathy with or antagonism toward a cause, event, product, etc. Search also under the subdivision --RIOTS & DEMONSTRATIONS used with corporate bodies and named events (Appendix D). + + + + + Density + + + + Dentivores + + + + dentritivores + + + + + Depollution + + + + + Depollution waste + + + + Deposition + + + + + Deregulation + + + + + Desalination + + + + + Desalting processes + + + + Desert fauna + + Desert animals + + + + + + Desert biology + + + + + Desert climate + + + + + Desert resources + + + + + Desert development + Development of desert resources + + Desert resources development + + + + + Desertification + + + + + Desertification control + + + + + Deserts + + + + + + + Sensors + + + Detectors + + + + + Deterioration of the environment + + + + + Development impact fee areas + + + + + Development plans + + + + + Devolution + + + + + Dew + + + + Dice + + + + + Didactics + + + + + Diesel engine + + + + Diesel oil + + Diesel fuels + + + + + Differentiation + + + + Diffuse pollution + + + + Diffuse sources + + + + + Diffusion + + + + + Diffusion of pollutants + + + + + Digitizing + + + + + Dinosaurs + + + + + Disaster clean-up operations + + + + + Disaster contingency plan + + + + + Disaster medicine + + + + + Disaster preparedness + + + + + Disaster prevention + + + + Emergency relief + + + + + + + + + + + + Disaster relief + + + + + + + + + Disaster victims + + + + + + + + Disaster zone + + + + Calamities + Catastrophes + Collisions + Damage to property + Property damage + Wrecks + + + + Disasters + + + + + + + + + + + + + + Includes the event and any resulting damage. Search also under the subdivision --DISASTERS used with corporate bodies and named events (Appendix D). + + + + Discrimination + + For overt discrimination. Search under PREJUDICE for the subject of prejudiced attitudes in general. + + + + + + + + + + + + + + Disease causes + + + + + Disease (Pathology) + + + + Ailments + Illnesses + Maladies + Sickness + + + + + Diseases + + + + Search under SICK PERSONS for images of persons affected with unspecified ailments. Search also under the subdivision --HEALTH & WELFARE used with names of ethnic, racial and regional groups, and with classes of persons (Appendix A). + + + + + Disinfectant + + + + + Disinfection + + + + + Dispersion + + + + + Disposal management + + + + + Disposal sites + + + + + Dissolution + + + + + Distillation + + + + + Distribution + + + + + Disturbance + + + + + Divergence (biology) + + + + + + + Diversion structures (hydraulic engineering) + + + + + Dna + + + + + Docks + + + + + Doctor + + + + + + + + Documentation + + + + + Puppies + + + + Dogs + + + + + Dolphins + + + + Animal husbandry + Barnyard animals + Beasts + Domesticated animals + Farm animals + + + + + Domestic animals + + + + + + Domestic waste + + + + + Dominance + + + + + + + Dormancy (biology) + + + + + Draft legislation + + + + + Drainage districts + + + + + Drainage system + + + + + Drainage water + + + + + Dredged material + + + + + Drift-net fishing + + + + + Drilling installation + + + + + Drinking + + + + Potable water + Tap water + + + + + + Drinking water + + + + + Drinking water protection area + + + + + Drinking water supply + + + + + Drinking water treatment + + + + + Driveways + + + + + Drought control + + + + + Drought hazards + + + + + + Drought + Drouth + Drouths + + + + Droughts + + + + + + + + Dry farming + + + + + Drying + + + + + Ducks + + + + + + Dumping + + + + + Dumping control + + + + + Dumping of waste + + + + + Dust storms + + Includes the event and any resulting damage. + + + + Cottages + Domiciles + Estate houses + Homes + Houses + Mansions + One-family houses + Residences + Residential buildings + Villas + + + + + Dwellings + + Structures designed or used as the living quarters for one or more families. Search under BIRTHPLACES for dwellings that were a place of birth and under ESTATES for grounds and outbuildings associated with dwellings. Search also under the subdivision --STRUCTURES used with names of ethnic, racial, and regional groups, and with classes of persons (Appendix A). Search also under the subdivision --HOMES & HAUNTS used with names of persons (Appendix B). + + + + Bald eagles + Golden eagles + + Eagles + + + + Preschool education + + Early childhood education + + + + World + + + Earth + + + + + + + Earth crust + + + + Geosciences + + + + + + + + + + Earth sciences + + + + + + Earth-sun relationships + + + + + + Earthquake engineering + + + + Quakes (earthquakes) + + + + + + Earthquakes + + + Includes the event and any resulting damage. + + + + + + + Earthwork + + + + Earthworms + + + + + Easement + + + + + Echolocation + + + + + Ecological abundance + + + + + + Ecological adaptations + + + + + Ecological assessment + + + + + Ecological balance + + A state of dynamic equilibrium within a community of organisms in which genetic, species, and ecosystem diversity remain relatively stable, subject to gradual changes through natural succession. + + + + + Ecological community + + + + + Ecological consultant + + + + + + Ecological genetics + + + + + Ecological heterogeneity + + + + + + Ecological load capacity + + + + + Ecological niche + + + + + Ecological parameters + + + + + + + + + + + Ecological processes + + + + + + Ecological products + + + + + Ecological recovery + + + + Ecological risk analysis + Ecological risk estimation + + + Ecological risk assessment + + + + + Ecological sensitive area + + + + Biotic succession + Ecological succession + + A series of dynamic changes in ecosystem structure, function, and species composition over time as a result of which one group of organisms succeeds another through stages leading to a potential natural community or climax stage. + + + + Bionomics + Environmental biology + Oecology + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ecology + + + + + + + + + + Ecomarketing + + + + + + Economic analysis + + + + Deterioration + Economic decay + + + + Deterioration + Economic decline + + + + + Economic development + + + + + + + Economic growth + + + + + Economic incentive + + + + + Economic plan + + + + + Economic planning + + + + Appropriations + Budget + Federal spending + Fiscal policy + Five-year plans + Spending policy + + + + + + Economic policy + + + + + + + + + + + + + Economic & social conditions + + + + + + + + Economic support + + + + + Economic system + + + + Economic & political systems + + + + + + + + + + + + + + + + + Economics + + + + + + + + Economy + + + + + Ecosystem analysis + + + + + Ecosystem degradation + + + + Ecological diversity + + Ecosystem diversity + Diversity of ecosystems and of biotic and abiotic relationships inherent in the biosphere. + + + + + + + Ecosystem functions + The many and varied biotic and abiotic processes that make an ecosystem functional, changing, and interactive. + + + + Management of ecosystems + + + + + Ecosystem management + + + + + + + Ecosystem research + + + + + Ecotones + + + + + Ecotoparasites + + + + + Ecotourism + + + + + Ecotoxicity + + + + + Ecotoxicological evaluation + + + + + Ecotype + + + + + Ecozone + + + + + Edaphology + + + + + General education + + + + + + + Education + + + + + + + + + + + Education policy + + + + Educational buildings + + + Educational facilities + + + + + + Educational institutions + + + + + + Educational organizations + Includes activities and structures. + + + + Pathologic effects + + + + + + Effects on health + + + + Effects on man + + + + + + + + + Effects on the environment + + + + + Effects research + + + + + Efficiency level + + + + + Effluent + + + + + + Eggs + + + + + Corriente del nino + ENSO + El Nino current + El Nino/Southern Oscillation + Holy child current + Nino current + + + + El Nino + + The phenomenon where the normal ocean/atmospheric circulation patterns in the South Pacific Ocean are disrupted, resulting in higher than normal sea surface temperatures in the eastern South Pacific Ocean appearing to cause unusual weather patterns around the world. + + + + + Elasticity + + + + + Elderly person + + + + + Election districts + + + + + Electric automobiles + + + + + + Electric batteries + + + + + Power lines + Power transmission lines + Transmission lines + + Electric lines + + + + + + Electric power supply + + + Electric power + + + + + Electric power distribution + + + + + Electric power generation + + + + Electric companies + Electric light and power industry + Electric power industry + + + Electric utilities + + + + + Electrical storage devices + + + + Galvanism + + + + + Electricity + + + + + + + + + + + + Electricity generation + + + + + Electricity supply + + + + + Electrosmog + + + + Primary education + + Elementary education + + + + + Elementary school buildings + + + + Wapiti + + + Elk + + + + + + Elk hunting + + + + + + Embankments + + + + Chanceries + Legations + + Embassies + + + + + + Embryo + + + + Egg (biology) + Embryogeny + + Embryology + + + For the subject of embryology in general and the activities of embryologists. + + + + + Emergency clothing supply + + + + + Emergency communication systems + + + + Stockpiling of food supplies + + Emergency food supply + + + + Disaster housing + Wartime housing + + + Emergency housing + + + + + + + + + + + + + + Emergency management + + + + + + + Emergency medical services + + + + + + + + + + + + Emergency planning + + + + + Emergency plans + + + + Emergency preparedness + + + + + + + + Emergency response + + + + + + Emergency sanitation + + + + + + Emergency transportation + + + + + + Emergency water supply + + + + + + + + + + + Emission + + + + + + Emission control + + + + + Emission factor + + + + + Emission forecast + + + + + Emission reduction + + + + Emission source + + + + + Emission standards + + + + Personnel + Staff + Workers + + + Employees + + For persons identified as working for another, but where the nature of the activity, occupation, business or industry is not known. Search also under --STAFF used with names of persons (Appendix B) and --PEOPLE used with names of corporate bodies (Appendix D). + + + + Jobs + Labor + Work + + + Employment + + + + + + Emulsification + + + + + Emulsion + + + + Endangered animal + + + + + + Endangered animal species + + + + + Endangered wildlife + + Endangered animals + + + + + + Endangered plant species + + Endangered plants + + + + Endangered populations + + + + + + + + Endangered species + + + + + A native species or subspecies of a bird, mammal, fish, amphibian, reptile, or plant which is in serious danger of becoming extinct throughout all, or a significant portion, of its range due to one or more causes, including loss of habitat, change in habitat, overexploitation, predation, competition, or disease [California Endangered Species Act - Fish and Game Code, Sec. 2062]. + + + + Endangered species (iucn) + + + + + Endemic animals + + + + + Endemic plants + + + + + Endemic species + + + + + + Endoparasites + + + + + Endowments + + + + + + + + Energy + + + + + + Energy balance + + + + Conservation of energy resources + Conservation of power resources + + Energy conservation + + + + + + Consumption of energy + + Energy consumption + + + + + + + + Energy demand + + + + + Energy development + + + + Fuel efficiency + + Energy efficiency + + + + + + Energy facilities + + + + + Energy generation + + + + + + + Energy industries + + + + + Energy legislation + + + + + Energy minerals + + + + + Energy and state + State and energy + + + Energy policy + + + + + + + + + + Energy production + + + + + Energy recovery + + + + Power resources + Power supply + + + + + + + + + + + + + + + + + + + Energy resources + + + + + + Energy saving + + + + + + + + Energy source + + + + + Energy source material + + + + + + Energy storage + + + + + Energy supply + + + + + + + + + + + + + + + + + + + + Energy type + + + + + + + + + Energy utilization + + + + Enforcement + + + + Enforcement of law + + + + Construction + + + + + + + + + + + + + Engineering + + + + + + + + Engineering instruments + + + + + + Engineers + + + + + Motors + Turbines + + + Engines + + + + + Enrichment + + + + + Enterprise zones + + + + + + + Entertainment + + + + + + + + Entomology + + + + + + Environment market + + + + + Environmental administration institutions + + + + + Environmental architecture + + + + + + + + Environmental assessment criteria + + + + Environmental accounting + Environmental compliance auditing + + + Environmental auditing + + + + + + + + Environmental awareness + + + + + Environmental balance + + + + + + + + + + + + Environmental changes + + + + + Environmental chemistry + + + + Environmental citizenship + + + + + Environmental compatibility + + + + + Environmental consciousness + + + + + Environmental consequences + + + + + + + + + + + + + Environmental conservation + + + + + Environmental costs + + + + + Environmental criminal law + + + + + + + Environmental criteria + + + + + + Environmental damage + + + + + + + + + Environmental data + + + + Environmental destruction + Environmental deterioration + + + Environmental degradation + + + + + + + + + + + + Environmental development + + + + + + + + + + + + + + + + + + Environmental economic issues + + + + + Environmental economics + + + + + + + + + + + + + + + Environmental education + + + + Environmental control + Environmental effects + Environmental stresses + + + + Environmental engineering + + + + + + + Environmental enterprises + + + + + Environmental ethics + + + + + Environmental funds + + + + Environmental hazards + + + + Health ecology + Environmental health + + + + + + + Environmental health education + + + + + + Environmental health hazards + + + + + + Environmental health protection + + + + + Environmental history + + + + + + + Environmental impact + + + + + Analysis of environmental impact + Environmental assessment + Environmental impact evaluation + + + Environmental impact analysis + + + + + + Environmental impact study + + + + + Environmental incentives + + + + + Environmental indicators + + + + + Environmental indices + + + + + + + Environmental industry + + + + + Environmental informatics + + + + + + + + + + + + + Environmental information + + + + + Environmental information networks + + + + + Environmental information system + + + + + + + + + + + + Environmental law + + + + + + + Law enforcement + + + + Environmental law enforcement + + + + + + Environmental legislation + + + + + Environmental legislative process + + + + + Environmental liability + + + + + + Environmental licence + + + + + + + + + + + + + + + + + + + + + + Environmental management + + + + + + + + + Environmental value mapping + + Environmental mapping + + + + Natural resources mediation + + Environmental mediation + + + + + Environmental monitoring + + + + + + Environmental permits + + + + + + + + + + + Environmental planning + + + + + + + + + + Environmental plans + + + + Environment & state + Environment and state + Environmental control + State and environment + + + + + + + + + + + + + + + + + Environmental policy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Environmental pollutants + + + + + + + + + + Pollution + + + + + + + + + + + + + Environmental pollution + + + + + + + + + Environmental pollution sources + + + + + + Environmental priorities + + + + + + + + + Environmental problem solving + + + + Environmental quality management + Protection of environment + + + + + + + + + + + + Environmental protection + + + + + + + + + + Environmental protection agency + + + + + Environmental protection associations + + + + + Environmental protection industry + + + + + Environmental protection regulation + + + + + Environmental protection technology + + + + + Environmental psychology + + + + Quality of environment + + + + + + + Environmental quality + + + + + + + + + Environmental quality criteria + + + + + + + + + + Environmental quality objective + + + + + Environmental quality standard + + + + + Environmental reports + + + + + + + + + + + Environmental research + + + + Restoration + + Environmental restoration + + + + The process of returning ecosystems or habitats to their original structure and species composition, requiring a detailed knowledge of the original species, ecosystem functions, and interacting processes involved. + + + + + + Environmental risk assessment + + + + + Environmental risks + + + + Environmental science + + + + Environmental sciences + + + + + + Environmental specimen banking + + + + + Environmental specimen storage + + + + + Environmental statistics + + + + + Environmental studies + + + + Environmental study + + + + + Environmental subsidies + + + + + + + Environmental taxes + + + + + Environmental terminology + + + + + Environmental toxicologist + + + + + Environmental training + + + + + Environmental valuation (economic) + + + + Environmentalism + + + + Environmentally aware behaviour + + + + + Environmentally dangerous substances + + + + + Environmentally friendly product + + + + + Environmentally related diseases + + + + Environmentally responsible behaviour + + + + + Enzyme + + + + + Epidemics + + + + Equalibrium + + + + Household goods + Implements + Tools + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Equipment + + + + + + Equipment & supplies + + + + + Ergonomics + + + + Accelerated erosion + Geologic erosion + Soil erosion + + + + Erosion + + + + + + + + + + + + Erosion control + + + + + Erosion hazards + + + + + + Erosion protection works + + + + + + + + + Estuarine conservation areas + + + + + Estuary + + + + Estuary pollution + + + + Business ethics + Morals + + + + + Ethics + + + + + + + + Architecture + Ethnic architecture + + + + + Ethnic groups + For races or large groups of people classed according to common traits and customs. See also Library of Congress Subject Headings for names of individual groups. + + + + + + + + Ethnobiology + + + + + Ethnobotany + + + + Cultural entomology + + + Ethnoentomology + + + + + Ethnology + + + + Indigenous knowledge systems + + + Ethnoscience + + + + + Ethnozoology + + + + + Eutrophication + + + + + Evacuation of civilians + + + + + Evacuations + + + + + + + + + + + + + + + + Evaluation + + + + + Evaluation criteria + + + + + + Evaluation method + + + + + Evaluation of technology + + + + + Evaluation techniques + + + + + Evaporation + + + + Consumptive use + + + Evapotranspiration + + + + + + + + + + + + + + + + + Events + Event + + + + + Darwinism + Origin of species + + + + Evolution + + + + + + + Animal evolution + Biological evolution + Darwinism + Origin of species + + + + Evolution (biology) + + + + + + + Evolutionary genetics + + + + + Excavation site + + + + Administrative advisory bodies + Commissions of the federal government + Government advisory boards + + Executive advisory bodies + + + + + Executive orders + + + + Presidential power + + + Executive power + + + + + + Exhaust air + + + + + Exhaust gas + + + + + + + + Exhibition facilities + + + + + Exhibits + Expositions + Trade fairs + + Exhibitions + + + Includes activities and general views. Search under EXHIBITION BUILDINGS for images that focus on structures. Search also under the subdivision --EXHIBITIONS used with names of ethnic, racial, and regional groups, and with classes of persons (Appendix A); names of persons (Appendix B); and names of wars (Appendix C). Search also under the subdivision --EXHIBITIONS & DISPLAYS used with corporate bodies and named events (Appendix D). + + + + + + Exotic fishes + + + + + Expenditure + + + + Design of experiments + Statistical design + + Experimental design + + + + + Experimental studies + + + + Experimental study + + + + Tests + + Experiments + + + + + + + + Expert + + + + + Expert system + + + + + Exploitation + + + + + Exploration + + + + Discoverers + + Explorers + + + + + Export + + + + + Export law + + + + + Export of hazardous wastes + + + + + Exposure + + + + + Expropriation + + + + + Externalities + + + + Prehistoric animals + + + + Extinct animals + + + + + + + Extinct birds + + + + + Extinct species (iucn) + + + + + Extinction (biology) + + + + + Extinction (ecological) + + + + + + + + + + + + + Extraction + + + + + Extractive industry + + + + + Extreme environments + + + + County fairs + State fairs + + Fairs + + + + + + + + + Fallow land + + + + Ancestors + Brothers + Daughters + Parents + Siblings + Sisters + Sons + + Families + + Search also under the subdivision --FAMILY used with names of persons (Appendix B). + + + + + Famines + + + + + + + + Farm animal + + + + Agricultural commodities + Agricultural products + Produce + + Farm produce + + + + + + + + + Farm waste + + + + Planters (persons) + + + Farmers + + + + + + + + Farm women's markets + Farmers' markets + + + + + + Crops + Cultivation of soils + Farm crops + Fertilizing + Field work + Planting + Seeding + Sowing + Tilling + + + + + Farming + + + + + + + + For work activities on farms. Search under PLANTS and NTs for specific farm crops. Search also under the subdivision --SUBSISTENCE ACTIVITIES used with indigenous people (Appendix A). + + + + Farmsteads + Farmyards + Pastures + + + + + + + Farms + + + + + + For tracts of land or water devoted to agricultural purposes. + + + + Faro + + + + + Fault + + + + Down + Feathers + + + + + + Federal authority + + + + + + Federal funding + + + + Division of powers + Federal-state relations + Federalism + + + + + Federal government + + + + + + + + + + Federal government agencies + + + + + Federal law + + + + + Federal laws and regulations + + + + + + + + Feeding + + + + + Feral animals + + + + + + Ferns + + + + + + Festivals + + + + + + Business & finance + + Finance + + + + + + + + + Finances + + + + Penalties (criminal law) + + Fines (penalties) + + + + + + + Fire + + + + + + + The simultaneous release of heat, light, and flame, generated by the combustion of flammable material. + + + + + Fire control + + + + Fire companies + + + Fire departments + + + + + Fire districts + + + + Ecopyrology + + Fire ecology + + + + + Fire fighting + + + For general views in which fire engines and equipment are in use. + + + + + Fire hazards + + + + + + + Fire precautions + + + + + + + Fire prevention + + + + + + + + + + + Fire protection + + + + + Fire protection districts + + + + Fire hazard analysis + Fire hazard assessment + Fire risk analysis + Fire risk assessment + + + + + Fire weather + + + + + + Fire lanes + + Firebreaks + + A strip of land cleared to stop the spread of fire, as in a forest or prairie. + + + + Conflagrations + + + Fires + + + + + + + For destructive fires. Includes the event and any resulting damage. Search under FIRE for the general subject of fire and for non-destructive fires. + + + + Fishes + + + + + + + + + + + Fish + + + + + + + + + + Fishing licenses + Fishing permits + Hunting licenses + Hunting permits + Fish and game licenses + + + + + Fish culture + + + + Aquaculture + Fish farming + + + + + Fish hatcheries + + + + + + + Fish kill + + + + + Fish ladders + + + + + + + + Fish screens + + + + Fishery methods + Sea-fisheries + + + + + + + + + Fisheries + + + + + + + + + Fisheries management + + + + Sea farers + + Fishermen + For fishermen away from the context of their activity. Search under FISHING for activities. + + + + Fish conservation + Fisheries conservation + Fishery resources conservation + + Fishery conservation + + + + Fisheries resources + + + + + Fishery resources + + + + Fly fishing + Recreational fishing + Sport fishing + + + + + + + Fishing + + + + + + + + + + Fishing vessels + + Fishing boats + + + + + + Fishing grounds + + + + Fishing tackle + Hunting gear + + + + Fishing & hunting gear + + + For images that focus on the equipment. Search under FISHING and under HUNTING for activities using the equipment. + + + + Fishery industry + Added 2/99 + Fishing industry + + + + Fishing permits + + Fishing licence + + + + + Fishing preserve + + + + + Fishing weirs + + + + + + + + + Flood control + + + + + + + Flood proofing + Flood protection + + + Flood damage prevention + + + + + Flood dams and reservoirs + + + + + Flood forecast + + + + + Flood hazards + + + + + + + Flood runoff + + + + + Flood Zones + + + + + Flooding + + + + Floodplain farming + + Floodplain agriculture + + + + Inundations + + + + + + Floods + + + + + + Includes the event and any resulting damage. + + + + + Flora restoration + + + + + Flow + + + + + Flow field + + + + + Flow of pollutant + + + + Blossoms + Flowering plants + + + + + Flowers + + + + + + Flowing water + + + + + Fog + + + + + + Fog control + + + + + + + + + + + Food + + + + + + + + Food additives + + + + + Food chain + + + + Food webs (ecology) + + + Food chains (ecology) + + + + + + + Food pollutants + + + + + + Food production (agriculture) + + + + + Food storage + + + + + + Food storage buildings + + + + + + + + + + Foodstuff + + + + + Forage crop + + + + Food gathering + Forage + Gathering food + + Foraging + + + Searching for food or provisions. + + + + Low water crossings + River fords + Stream fords + + Fords (stream crossings) + + + Includes the activity of fording. + + + + Forecasts + Prediction + + Forecasting + + + Predicting future events or developments by means other than supernatural practices or interpretation of omens. + + + + + Forest biological reserve + + + + + + Forest biomass + + + + Deforestation + + Forest clearing + + + + Conservation of forests + Forest preservation + Preservation of forests + + + + Forest conservation + + + + + Forest cover destruction + + + + + Forest damage + + + + + Forest deterioration + + + + + + Forest ecology + + + + + Forest ecosystems + + + + + Forest exploitation + + + + + + Forest fires + + + + + + + + + Forest management + + + + + + + Forest mapping + + + + + Forest pest + + + + Forest production + Forest yield + + Forest productivity + + + + + Forest products + + + + + Forest protection + + + + National forests + + + Forest reserves + + + + Forest wetlands + + Forested wetlands + + + + + Forestry law + + + + + Forestry legislation + + + + + Forestry practices + + + + + Forestry product + + + + Woods + Woods (forests) + + + + + + + + Forests + + + + + + + Forums + + + Roman public squares surrounded by monumental buildings. + + + + + Fossil + + + + Fossil energy + + + Fossil fuels + + + + + + Framework legislation + + + + Fakes + Hoaxes + Misrepresentation (law) + + Fraud + + + + + Freedoms + + + + Freeze + Freezing + + + + + + Freight transport + + + + Freshwater resources + + + Fresh water + Freshwater + + + + Freshwater resources + + + Fresh water + Freshwater + + + + + + + Freshwater animals + + + + + Freshwater degradation + + + + + Freshwater ecosystems + + + + + + Freshwater fishes + + + + + Freshwater mammals + + + + + Freshwater microorganisms + + + + Freshwater species + + + + + + Freshwater organisms + + + + + Freshwater plants + + + + Freshwater pollution + + + + + + Frogs + + + + Hoarfrost + + + Frost + + + + + + + + + + Fruit + + + + + + + Fruit cultivation + + + + + Fruit tree + + + + Fuels + + + + + + + + + + + + + + + + + + + Fuel + + + + + + Fuel additive + + + + + Fuel oil + + + + Fuel supply + + + + + Firewood + Woodpiles + + Fuelwood + + + For images that focus on segments of small trees and branches to be used for fires, including woodpiles. Search under WOODCUTTING for activities. + + + + Fagoting + Gathering fuelwood + Wood gathering + Fuelwood gathering + + + + + + Fume + + + + + Fumigants + + + + Benefits (fund raising) + Fund raisers + Fundraisers + Money raising + + Fund raising + + + + + Entertainments, events, etc., to raise money for persons or causes. Search under MEMBERSHIP CAMPAIGNS for the raising of money for organizations through membership drives. + + + + + + + + + + + + + Funding + + + + + Fungi + + + + + + Fungicides + + + + + Fur + + + + + Fur animal + + + + + Fur-bearing animals + + + + Furriers + + Fur trade + + + Search under TRADING POSTS for images that focus on facilities. + + + + GCMD + + + + GEMET + + + + + Galleries & museums + + + Includes activities, structures, and objects displayed. + + + + Betting + Gaming + + + Gambling + Betting of money or valuables on, and often participating in, games of chance or skill. + + + + + Game (animals) + + + + Bird hunting + Fowling + + Game bird hunting + + + + + + + + Game & game birds + + + + + + + + Game preserves + + + + + + + + Games + + + + + Garbage collecting + + + + + Garden waste + + + + Bedding (horticulture) + Fertilizing + Landscape gardening + Planting + Seeding + Sowing + + + + + + Gardening + + + + + + + + + + + + + Gardens + + + + + + + + + + Gas engine + + + + Natural gas fields + + Gas fields + + + + + Gas supply + + + + + Gaseous air pollutants + + + + + Gaseous state + + + + + Gasohol + + + + Gas + + Gasoline + + For the fuel. Search under AUTOMOBILE SERVICE STATIONS and GASOLINE PUMPS for gas pumps. + + + + Internal combustion engines + Petroleum engines + + + Gasoline engines + + + + + Gasoline taxes + + + + + + Gems + + + + + General plan + + + + + Genes + + + + + Genetic conservation + + + + + + Genetic diversity + + + The genetic variability within a population or species; the number and relative abundance of alleles. + + + + + Genetic effects + + + + + Genetic engineering + + + + + Genetic information + + + + + Genetic manipulation + + + + + Genetic pool + + + + Genetic resources + Genetic stocks + + + + + Genetic variation + + + + + + + Genetically modified organisms + + + + + + + + + + + Genetics + + + + + + + + + + Chemical composition of the earth + Chemical geology + Geological chemistry + + + Geochemistry + + + + + Geodesy + + + + + + + + + + + + Geography + + + + + + + + + + + + Geologic hazards + + + + + Geological disasters + + + + Geologic mapping + + Geological mapping + + + + + + + Geological processes + + Those dynamic actions or events that take place below the Earth's surface and result in effects such as earthquakes and volcanism, as well as other geomorphological processes. + + + + Geognosy + Geoscience + + + Geology + + + + + + + + Geomorphic processes + + Added 2/99 + + + + + + + + Geomorphological processes + + + Dynamic actions or events that occur at the Earth's surface due to application of natural forces resulting from gravity, temperature changes, freezing and thawing,chemical reactions, seismic shaking, and the agencies of wind and moving water, ice, and snow. + + + + + Geomorphology + + + + + Geophysics + + + + + + Added 2/99 + Geothermal activity + + + + + Geothermal energy + Geothermal power + Thermal waters + + Geothermal resources + + + + + Germ + + + + + Germ plasm + + + + + Germination + + + + Thermal waters + + Geysers + + Eruptive springs from which hot water, steam, and/or mud are periodically spurted. + + + + + Gifts + + + + + Girls + + + + Glaciated terrain + + Glacial landforms + + + + + Glaciers + + + + + + + Glaciology + + + + + Global conventions + + + + Global environmental changes + + Global environmental change + + + + + Global model + + + + + Global warming + + A projected increase in atmospheric temperatures caused by release into the atmosphere of the gaseous by-products (principally carbon-dioxide) of fossil fuel consumption (greenhouse gases), which trap long-wavelength radiant energy. + + + + Gold bullion + + Gold + + + + + + Gold miners + + + + + Gold discoveries + Gold rush + Gold rushes + + Gold mines and mining + + + + + Gold mining + + + + + + Golf courses + + Golf + + + + + + + Goods and services + + + + + + + + + + + + + + + + + + + + + + + Government + + + + + Administrative bodies + Administrative organization + Executive agencies + Executive departments + Government organizations + Regulatory agencies + + + + + Government agencies + + + + Government (authorities) + + + + + + + + + + Government (cabinet) + + + + + + + Government facilities + + + + + + Government liability + + + + Nationalization + Public ownership + Socialization of industry + State ownership + + Government ownership + + + + + + + + + + Government policy + + + + + Government regulation + + + + + + + + + Government relations + + + + Government systems + + + + Commissions of inquiry + Government investigations + + Governmental investigations + + + Investigations initiated by legislative, executive, or judicial branches of government and usually conducted by ad hoc or permanent bodies for the purpose of investigating some particular problem of public interest. + + + + + + Governors + For the subject of the governship in general and for incumbents. + + + + + Graduate students + + + + + + + + Grains + + + + + Grain bins + Graineries + + Granaries + + Storehouses or repositories for grain, especially after it has been threshed or husked. + + + + + Grants + + + + + + Agrostology + Graminaceae + Gramineae + Herbage + Poaceae + + Grasses + + + + + + + + Grassland ecology + + + + Prairie fires + + Grassland fires + + + + + + + Grasslands + + + + + + Gravel pit + + + + + + Grazing + + + + + + + Grazing districts + + + + + Green manure + + + + + Green revolution + + + + + + + + Green space + + + + Earth-friendly technology + Environmental technology + + Green technology + + + + + Green tide + + + + Greenhouse + + + + + Greenhouse cultivation + + + + + Greenhouse effect + + + + + Greenhouse gases + + + + + Conservatories (greenhouses) + Glasshouses + Hot houses + Hothouses + + Greenhouses + + + + + + Greenways + + + + + Grizzly bears + + + + Groynes (shore protection) + + Groins (shore protection) + + + + + Groundwater endangering + + + + + Groundwater extraction + + + + Groundwater contamination + Groundwater pollution + + + + + Groundwater protection + + + + + Groundwater quality + + + + Plant growth + + Growth (plants) + + + + + Guano birds + + + + Seagulls + + Gulls + + + + + + Gymnosperms + + + + Wildlife habitat + + + Habitat (ecology) + + + + + + + + + + + + Habitats + + + + + + Hailstones + + + Hail + + + + + + Half-life + + + + Seaports + + + + + Harbors + + + Small bays or other sheltered parts of a considerable body of water, usually protected either naturally or artificially, for mooring vessels. + + + + + Hardwood communities + + + + + Harvest + + + + Crop picking + Gleaning + Picking crops + Reaping + + + Harvesting + + + + + + Hawks + + + + + Hazard area + + + + + Hazard zones + + + + + Hazardous substance + + + + + Hazardous waste dump + + + + Chemical landfills + Hazardous waste disposal sites + Hazardous waste facilities + Toxic dumps + + Hazardous waste sites + + + + + + + Hazardous wastes + + + + + Hazard + + Changed from singular to pural. + + + + + + Hazards + + + + + + + + + Haze + + + + + Headland + + + + + + Heads of state + + + + + Health education + + + + + + + + + + + Health-environment relationships + + + + + + + + + + + + + Health hazard + + + + + Health-related biotechnologies + + + + Health hazard appraisal + Health hazard assessment + Health risk appraisal + Hra (public health) + Human risk assessment + + Health risk assessment + + + + + + Health service areas + + + + + Healthcare + + + + Hot weather + + Heat + + + + + + + Heavy metal + + + + + Helminthology + + + + + + + Helminths + + + + Herb farming + + + + + Herb gardening + + + + + Herb gardens + + + + + Herbaria + + + + + Herbicides + + + + Herbivora + Herbivorous animals + Plant-eating animals + + + Herbivores + + + + + Herbs + + + + + + Herding + + + + + Ancestry + Descent + Inheritance (biology) + Pangenesis + + + Heredity + + + + + + + Heritable characteristics + + + + + Herpetology + + + + + + Heterogenous organisms + + + + + Hibernation + + + + + + + Highway planning + + + + Tramping + + Hiking + + + + + + + + Hummocks + Knolls + + Hills + + + + + + + Historic architecture + + + + + + Historic sites + + + + Conservation & restoration + + Added 2/99. + Historical preservation + + + + + + Historical resources + + + + + + Holidays + + + + + Home gardening + + + + + Home gardens + + + + + Homing + + + + + + Homologation + + + + Horse farms + + + + Colts + Fillies + Foals + Mares + Stallions + + Horses + + + + + + Horticultural buildings + + + + + + + + + Horticulture + + + + + + + + + Hospital districts + + + + + Hospital waste + + + + + Hospitals + + + + + Hosts + + + + + Household chemicals + + + + + + Households + + + + Affordable housing + Government housing + Homes + Housing needs + Housing projects + Low cost housing + Low income housing + Public housing + Residences + Urban housing + Wartime housing + + + + + + + Housing + + + + + + Apartment complexes + + Housing developments + + Groups of individual dwellings or apartment houses typically of similar design that are usually built and sold or leased by one management. + + + + + Human biology + + + + + + + + + + Human-caused hazards + + + + + + + Human ecology + + + + + + + + + + + + + + + + + + + + + + + Human environment + + + + Anthropo-geography + Anthropogeography + Cultural geography + Geographical distribution of humans + Social geography + + + Human geography + + + + + + Human habitat + + + + + + + + + + + + + + + + Human impact on the environment + + + + + Stages of life + + Human life cycle + + + + + + + + + + Human-made disasters + + + + + + Human population density + + + + + Human population estimates + + + + + + Human population geography + + + + + Human population projections + + + + + + Human population structure + + + + + Human rights + + + + + + + + + + + + + Human sciences + + + + + + + Human services + + + + + + Humanities + + + + Field trials + + + + + + + + Hunting + + + + + + + + + + + + + + Hunting & fishing clubs + + + Includes activities and structures. + + + + Hunting permits + + Hunting licence + + + + + Hunting reserve + + + + + Hurricanes + + + Includes the event and any resulting damage. + + + + Hybridism + + + + Hybridization + + + + + Hydrants + + + + + + + Hydraulic engineering + + + + Hydraulic construction works + Water distribution structures + + + + + + + + + + + Hydraulic facilities + + + + + + + Hydraulic power plants + + + + + + + + + + + + + Hydraulic structures + + + + + + Hydro-electric energy + + + + Hydroculture + + + + Water power + Water-power + Waterpower + + Hydroelectric power + + + + + + + Water-power electric plants + + Hydroelectric power plants + + + + + Hydrogeology + + + + + Hydrographic basin + + + + + + Hydrography + + + + + + Hydrologic balance + + + + + + + + + + + + + + + + + + + + + + + Hydrologic cycle + + + + + Hydrologic flow + + + + + Hydrological disasters + + + + + + Hydrology + + + + + + + Hydrometeorology + + + + + + Hydronymy + + + + + Hydroponics + + + + + Hydropower + + + + + + + + + + Hydrosphere + + + + + Ice crystals + + + + Ice + + + + + + + Ice fishing + + + + + Ice-pack + + + + + + Icebergs + + + + + + Ichthyology + + + + + Ideology + + + + + + + + + + + + + + + + + + Illness + + + + Mimicry + + + Imitation + + + + Imitative fauna + + + + + Imitative flora + + + + + Emigrants + + Immigrants + + Persons who leave their native land and settle in another country in order to become permanent residents or citizens. For emigrants as well as immigrants. + + + + + Immission + + + + + Immission control + + + + + Immission damage + + + + + Immission forecast + + + + + Immission limit + + + + + Immission load + + + + + Immission monitoring + + + + + Immune system + + + + + Immunological diseases + + + + + + Impact assessment + + + + Development exactions + Development fees + Land development exactions + Real estate exactions + Impact fees + + + + + Impact minimising + + + + + Impact prevention + + + + + + Impact reversal + + + + + + + + + + Impact sources + + + + + Import + + + + + In situ + + + + + In vitro + + + + + In vivo + + + + + Incentive tax + + + + Incidental pollution + + + + + Incineration of waste + + + + Refuse destructors + Refuse incinerators + Teepee burners + + Incinerators + + + + Commissions of the federal government + Independent administrative agencies + Independent agencies + Quasi-judicial agencies + Regulatory agencies + Regulatory commissions + + Independent regulatory commissions + + + + Index preparation + Preparation of indexes + Subject analysis + + Indexing + + + + + Indian reservations + + + + + Indicators of environmental quality + + + + + Individual + + + + Indoor air pollution + + + + + Indoor environment + + + + Arbitration of industrial disputes + Industrial mediation + Labor arbitration + Mediation of industrial disputes + + Industrial arbitration + + + + + Industrial areas + + + + Mechanic arts + Trades + Useful arts + + + Industrial arts + + + + + + Industrial crops + + + + + Industrial emission + + + + + Industrial environment (in general) + + + + + Industrial environmental policy + + + + + + Industrial facilities + Search under INDUSTRY (or NTs) for activities. + + + + + + + Industrial planning + + + + + + Industrial policy + + + + + Industrial pollutants + + + + Industrial pollution + + + + + + + + + + + + + + + + + + + + + + + + + + + Industrial processes + + + + + Industrial production waste + + + + + + + Industrial products + + + + + Industrial sludge + + + + + Industrial waste + + + + + Industrial waste gas + + + + + Industrial waste water + + + + + Industrial water + + + + + Industrial zoning + + + + Industrial development + + + Industrialization + + + + Factory work + Manufacturing + + + + + + + + + + + + + + + + + + Industry + + + + + + + + Infectious disease + + + + + Infestation of crops + + + + + Infestation of food + + + + + Infiltration + + + + + + + + + + + + + Information + + + + + + Information processing + + + + Sources of information + + + + + Information resources + Sources of information in general, not limited +to a specific format or medium, including works that list organizations +other than information services as sources of information. Works on +organizations that provide information services are entered under +Information services. Works on sources of information in a specific +format or medium are entered under the heading for the format or medium. + + + + Data retrieval + Data storage + Information storage + Information storage and retrieval + Retrieval of information + + + + Information retrieval + + + + Informatics + + + + + + Information science + + + + Data collection services + Information brokers + Information centers + Information science service organizations + Information service providers + Providers of information services + + + + Information services + + + Organizations that provide information +services. Works on sources of information in general, not limited to a +specific format or medium, including works that list organizations other +than information services as sources of information, are entered under +Information resources. Works on sources of information in a specific +format or medium are entered under the heading for the format or medium. + + + + + Information technology + + + + + Infrared + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Infrastructure + + + + + Social capital + Social overhead capital + + Infrastructure (economics) + The underlying capital of a society embodied in +roads and other transportation and communication systems as well as water +supplies, electric power, and other public services. + + + + Inhabitants + + + + + Injury + + + + + Inland fisheries + + + + + Inland water + + + + + Inner city + + + + + Inorganic chemistry + + + + + Inorganic fertilizer + + + + + Inorganic pollutants + + + + + + + + + + + + + + + + + Inorganic substances + + + + Bugs + Hexapoda + Pterygota + + + Insects + + + + + + + + + + Inspection + + + + + + + + + + Institutional structure + + + + + Instrumentation + + + + + Intake (exposure) + + + + + Integrated management + + + + + Integrated pest control + + + + + Integrated pollution control + + + + + Intensive farming + + + + Interdependence of nations + + + + Idr (research) + + Interdisciplinary research + + + + + Interest group + + + + Federal-state fiscal relations + State-local fiscal relations + + + Intergovernmental fiscal relations + + + + + + + + + + Intergovernmental relations + + + + + International governmental relations + + + + + International law + + + + + + International organisation + + + + International organization + For the theories and efforts leading toward world-wide or regional political organization of nations. + + + + + International organizations + + + Governmental and nongovernmental bodies, whether established on a permanent or temporary basis, where the focus is on the international character of the body. + + + + + International politics + + + + + International standardization + + + + + Internationally important ecosystems + + + + + Interpretation method + + + + Interpretation of cultural and natural resources + + + + + Interpretation of cultural resources + + + + + + Interpretation of natural resources + + + + + + Interstate agencies + + + + Interstate compacts + Interstate cooperation + + Interstate agreements + + + + Interstate disputes + + Interstate controversies + + + + + + + Interstate relations + + + + + + Intertidal fauna + + + + + Intertidal fishes + + + + Eulittoral zonation + Tidal zonation + Intertidal zonation + + + + + + Intertidal zone + + + + + + + + + + + + Intervention in nature and landscape + + + + + + + + + + + + + + Intervention on land + + + + Naturalized birds + + Introduced birds + + + + Naturalized fishes + + Introduced fishes + + + + + + Introduction of animal species + + + + + Introduction of plant species + + + + + Invasive animals + + + + Plant invaders + + Invasive plants + + + + + + + + + Invasive species + + + + + + + + Inversion layer + + + + + + + + + Invertebrates + + + + Curiosity + Detection + Fact-finding + Sleuthing + Snooping + + + Investigation + + The process or acts of systematic research or searching inquiry. + + + + + Ionosphere + + + + + + Ions + + + + + Iron + + + + + Iron scrap + + + + + + + Irrigation + + + + + + + Irrigation canals and flumes + + + + + Irrigation districts + + + + Irrigated agriculture + Irrigated farming + Irrigation agriculture + + + + Irrigation farming + + + + + + + Irrigation water + + + + + Island ecology + + + + + Island ecosystems + + + + Archipelagoes + Atolls + Hammocks (islands) + Hummocks + Isles + Islets + Keys (islands) + + Islands + + + + + Isomer + + + + + Isotope + + + + + Isthmuses + + + + + Joshua trees + + + + Editing + + + Journalism + + + + + + + + Journalists + + + + + + Judgement (decision) + + + + + Judgement (sentence) + + + + + + + + Judicial body + + + + + Judicial districts + + + + + + + + + + + + + + + Judicial procedure + + + + + + + + + Jurisdiction + + + + + + Jurisprudence + + + + + Justice + + + + + + + juvenile + + + + + Kuchler + + + + LCSH + + + + + La Nina + + The oceanic/atmospheric phenomenon characterized by unsually cold ocean temperatures in the Equatorial Pacific + + + + Labs + + Laboratories + + + + + + Laboratory + + + + + Laboratory animal + + + + + Laboratory experiment + + + + + Laboratory research + + + + + Laboratory test + + + + + Laboratory waste + + + + + + + Laborers + + + + + + Labour + + + + + Lagoon (coral reef) + + + + + Lagoon ecology + + + + + Lake basins + + + + Lake pollution + + + + + + Lakes + + + + Lagoons + Ponds + Pools + + + Lakes & ponds + + + + + Ground + + + + + + + + + + Land + + + + + + + + Landscape, geography + + + + + Land banking + + + + Land-based marine pollution + + + + + Land conservation + + + + + Land cover + + + + + Land development + + + + + Land ecology + + + + + Land management and planning + + + + Land pollution + + + + + Land research + + + + + Land restoration + + + + Land set-up + + + + Real estate subdivision + Subdivision of land + Subdivisions (land) + + + Land subdivision + + + + Process of dividing tracts of land into lots for purposes of sale. + + + + + Land transportation + + + + + Added 2/99 + Land trusts + + + + Land management + Management of land + Use of land + Utilization of land + + + + + + + + + Land use + + + + + + + + + + + Land use classification + + + + Land planning + + Land use planning + + + + + Land use regime + + + + + Land use system + + + + + Land use (unbuilt) + + + + + Land values + + + + + Landfill + + + + + Landfill area + + + + + Landfill gas + + + + + Landfill leachate + + + + + Landfill rehabilitation + + + + Physiographic features + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Landforms + + + + Landscape alteration + + + + + + + Landscape architecture + + + + + + + Landscape conservation + + + + + Landscape conservation policy + + + + + + Landscape ecology + + + + + + Landscape management + + + + + Landscape planning + + + + + Landscape protection + + + + + Landscape protection area + + + + + Landscape use + + + + Topographic views + + Landscapes + + + + + + + + + + landscaping + + + + + Mud slides + + + + Landslides + + + + + + + + Landslip + + + + + Lava flows + + + + + Law amendment + + + + + + Law enforcement officers + + + + Legal affairs + + + + + + + + + + + + + + + + Law & legal affairs + + + + + + + + + + + + + + + + + + Law (right) + + + + + Law (science) + + + + Attorneys + Solicitors + + Lawyers + + + + + + Leachate + + + + Soil leaching + + Leaching + + + + + Lead + + + + + Lead compound + + + + + Leaf + + + + + Leaping + + + + Learning process + + Learning + + + + Erudition + Scholarship + + Learning and scholarship + + + + + Foliage + + Leaves + + + + + + Legal regulation + + + + Bills (legislation) + + + + + + + + + + Legislation + + + + + + + + + Legislation on pollution + + + + + Legislation on water resources + + + + Legislative authority + + + + Assemblies + Congresses + Parliaments + + Legislative bodies + + + + + + + + Legislative power + + + + + + + Legislative procedure + + + + Congressmen + Lawmakers + Members of parliament + Senators + + Legislators + + + Members of a legislative body. + + + + + Legislature + + + + + Levee districts + + + + + Levees + Natural or manmade embankments flanking rivers or streams. + + + + + + + + + + Level of education + + + + + Levy + + + + + Liability + + + + + Liability for environmental damages + + + + + Librarians + + + + + + + + Libraries + + + + + + + Library districts + + + + Automobile license plates + Automobile tags + + License plates + + + + + Permits + + + + + + + + Licenses + + + + + Lichens + + + + + Life + + + + + Life cycle + + + + + + Life cycles (biology) + + + + Biosciences + + + + Life sciences + + + + Span of life (biology) + + Life spans (biology) + + + + + + + + + life stage + + + + Sunlight + + + Light + + + + Thunderbolts + + Lightning + + + + + + + + Lightning storms + + + + + + Lightning strikes + + + + + + + + Limnology + + + + + + Liquid fuels + + + + + + Liquid state + + + + + Liquid waste + + + + Illiteracy + + Literacy + + + + + + + + + + + Lithosphere + + Soil, geologic processes + + + + Living environment + + + + + Lizards + + + + + Loans + + + + + Lobbying + + + + + + + + Lobbyists + + + + + Local authority + + + + + + Local budgets + + + + Local development + + + + County finance + Township finance + + + + Local finance + + + + + Local finances + + + + + Local funding + + + + Local administration + Subnational government + Subnational politics + Town-meeting + Township government + + + + + Local government + + + + Administrative agencies + + Local government agencies + + + + + Local government policy + + + + + Local laws and regulations + + + + + + + Local planning + + + + Municipal taxation + + Local taxation + + + + Motion + Movement + + + Locomotion + + + + + + + Logging + + + + + + Logs + + + + + + + Long-term experiment + + + + Longevity + + + + + + + Lotteries + + + + + Lower risk species (iucn) + + + + + + Lumber + + + + + Lumber industry and trade + + + Lumber trade + + + + + Luminosity + + + + + Lysimetry + + + + Machines + + + + Machinery + + + + + + + Magnetism + + + + + Maintenance + + + + + Malnutrition + + + + + Mammalogy + + + + + + + + + + + + + + + + + Mammals + + + + + Man + + + + + Man-made climate change + + + + Man-nature relationship + + + + + + + + + + + Management + + + + + Management plan + + + + + + Management techniques + + + + + Mandate + + + + + Manufacturing activities + + + + + Manure + + + + + Map projection + + + + + Scales (cartography) + + Map scales + + + + + Mapping + + + + + Marginal lands + + + + + Marinas + + + + + Marine accidents + + + + + + + Biological oceanography + Hydrobiology + Ocean life + Sea life + + + + Marine biology + + + + + + + Marine birds + + + + + Marine ecology + + + + + + Marine ecosystems + + + + + Marine environments + + + + + Marine fauna + + + + + + + Marine fish + + + + + + + + + + + + Marine fisheries + + + + Saltwater fishes + Sea fishes + + Marine fishes + + + + + Marine geology + + + + + + + Marine mammals + + + + + + Marine Microorganisms + + + + Ocean mineral resources + + + Marine mineral resources + + + + + + Marine molluscs + + + + + Marine monitoring + + + + Marine species + + + + + + + + + + Marine organisms + + + + + Marine park + + + + Marine conservation areas + Marine protected areas + Marine sanctuaries + + + Marine parks and reserves + + + + Seaweed + Marine plants + + + + + Marine pollution + + + + + Marine reserves + + + + Ocean resources + Sea resources + + + + Marine resources + + + + + + Ocean sciences + + + + Marine sciences + + + + + Marine water + + + + + Market gardening + + + + + Marketing + + + + Marketplaces + Street markets + + + Markets + + + + + + + Marsh + + + + + Mass media + + + + + Mate selection + + + + + + + + Material + + + + + Material balance + + + + + Material life-cycle + + + + + + Mathematical analysis + + + + + Mathematical method + + + + Arithmetic + Math + + Mathematics + + + + Alcaldes + + Mayors + + + + + Meadow ecology + + + + Fields + Grassland + Grassland farming + + + Meadows + + + + + + + + + Measurement + Mensuration + + + Measuring + + + + + + + Measuring apparatus + + + + + Measuring instrument + + + + + Measuring method + + + + + Meat eating animals + + + + + Media + + + + Medical care + + + + + Medical waste + + + + + + Medicinal plants + + + + + Drugs + Remedies + + + + Medicines + + + + + + + Mediterranean climate + + + + + Mediterranean forest + + + + + Mediterranean woods + + + + Conferences + Congresses + Conventions (congresses) + Symposiums + Teach-ins + + + + Meetings + + + + + + Males + + Men + + + + + + Mercantile facilities + + + + + Mercury + + + + + Mesas + + + + + + Metabolism + + + + + Metal waste + + + + + Metallic minerals + + + + + Metallic residues + + + + + + + + + + Metals + + + + + + Metalworking + Process of shaping things out of metal. + + + + + Meteorological disasters + + + + + Meteorological instruments + + + + + + Meteorological parameter + + + + + + + + + + + + + + + + + + + Meteorological phenomena + + + + + + Meteorological research + + + + + Meteorological studies + + + + Aerology + + + + + + Meteorology + + + + + + + Methanol as fuel + + + + + + + + + + + + + + + + + + + Methodology + + + + + Metropolis + + + + Microbial biology + + + + + + Microbiology + + + + + Microclimate + + + + + + + Microclimatology + + + + + Microecosystem + + + + Radiolaria + Unicellular organisms + + + + + Microorganisms + + + + + + + + Micropollutant + + + + + Microscopy + + + + + Microwave transmission lines + + + + + Microwaves + + + + Migrant agricultural laborers + + + Migrant farmworkers + + + + + Migratory workers + Transient laborers + + + Migrant laborers + For laborers who regularly migrate within the same country for work. Search under ALIEN LABORERS for those who seek work outside their own country. + + + + + + + Migration + + + + + Migration (animal) + + + + + + Migratory birds + + + + + Migratory fish + + + + + Military bases + + + + + Millet + + + + + Mine + + + + + Mineral chemistry + + + + + Mineral deposits + + + + + + + + Mineral extraction + + + + Mineral pollution + + + + Mines and mineral resources + + + + + + + + + + + + Mineral resources + + + + + + Conservation of mineral resources + + Mineral resources conservation + + + + + Mineral rights + + + + + Mineral waste + + + + + Mineralization + The transformation of an element from it's organic to inorganic form due to microbial activity. + + + + + Mineralogy + + + + + + + + + Minerals + + + + + + + + + + Miners + + + + + Mines and mining + + + + Mines + Mines and mineral resources + + + + + + + + Mining + + + + + + + + + + Annual assessment work on mining claims + Assessment work on mining claims + Lode claims + Placer claims + + Mining claims + + + + + Mining districts + + + + Subsoil rights + + + + Mining law + + + + + Mining site restoration + + + + + Mining wastes + + + + Demographics + Minorities + + + + + + + + + Miscellaneous products + + + + + + Mist + + + + + + Mitigation + + + + + + Mitigation measures + + + + + Mixed conifer forest + + + + + Mixed farming + + + + + Mixed forest + + + + Mixed use area + + + + + Mixing + + + + + Mobile homes + + + + + Modelling + + + + + Moisture + + + + + Molecular biology + + + + + Mollusks + + + + + Molting + + + + + Monera + + + + + Currency + Paper money + + Money + + + + + + + + + + + + + + + + + + + Monitoring + + + + + Monitoring criteria + + + + + Monitoring equipment + + + + + + + + + + + + Monitoring techniques + + + + Historical monuments + + + + + Monuments + + + + + Morphology + + + + + mortalilty + + + + + Mosses + + + + + Motor + + + + + Motor vehicle exhaust gas + + + + Motor vehicle pollution + + + + Automotive vehicles + + + Motor vehicles + + + + Power boats + + Motorboats + + + + + Motorcycles + + + + + Mountain climate + + + + Alpine ecology + + Mountain ecology + + + + + Mountain forest + + + + Barbary sheep + Bighorn sheep + Dall sheep + + Mountain sheep + + + + Mountain ranges + Mountain ridges + Orography + Orology + Peaks + Ridges + + Mountains + + + + + + + + + + + + + + Mowing + + + + Mud + + + + + Mud flat + + + + + Mud flat ecology + + + + + Mud (sediment) + + + + + Mud volcanoes + + + + + Mudflows + + + + + Mulch + + + + + Multiple use management area + + + + + + + + + Municipal engineering + + + + + Municipal environment plan + + + + + Municipal environmental policy + + + + + + Municipal finance + + + + Municipal administration + Municipalities + Urban politics + + + Municipal government + + + + + Home rule for cities + Self-government for cities + Municipal home rule + + + + Municipal incorporation + + + + City officials + Town officials + + + Municipal officials + + + + Municipal services within corporate limits + Public services + + + Municipal services + + + + + + + Municipal sewage + + + + + Municipal waste + + + + + Municipal water distribution systems + + + + + Municipal water management + + + + Urban water + + + Municipal water supply + + + + + Municipality + + + + + + + + Museums + + + + + + + Musicians + + + + + Mutation + + + + + Mutation (biology) + + + + + + + + + Mycology + + + + + Mycorhiza + Mycorhizas + Mycorrhiza + Mycorrhizae + + Mycorrhizas + + + + + Nat. res. conservation areas + + + + + National environmental accounting + + + + + National expenditure for the environment + + + + + National fishing reserve + + + + + National legislation + + + + + + + National monuments + + + + + National park + + + + + + National parks + + + + National military parks + National reserves + + + National parks and reserves + + + + + + National parks & reserves + + + + + + + National planning + + + + + Added 2/99 + Native American heritage + + + + + Added 2/99 + + Native Americans + + + + + Native animals + + + + + + + + Native species + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Natural areas + + + + + + + + + + Natural areas protection + + + + Natural calamities + + + + + + + + + Natural disasters + + + + + + + + + + + + + + + Natural disturbances + + + + + + + + + + + + Natural environment + + + + + Natural fertilizers + + + + + Natural forest + + + + Sour gas + + Natural gas + + + + + Natural gas extraction + + + + + + + + + + + + + + + + + + Natural hazards + For the impact of the event on human life and property. For the evet, see Natural disturbances. + + + + Natural science + Physiophilosophy + + + + + Natural history + + + + + + Natural history museums + + + + + + + + + + + + + + + + + + + + + + Natural materials + + + + + + Natural monument + + + + + Natural park + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Natural phenomena + + + + + + Added 2/99 to contain the different kinds of processes. + + + + + + + + + Natural processes + + + + + Natural regeneration + + + + Management of natural resources + Resource management + Resources management + + + Added 2/99 + + + + + + Natural resource management + + + + + + Nat. res. management areas + + + + + Natural resource management areas + + + + + Resource + + + + + + + + + + + + + + + Natural resources + + + + + + + Natural risk + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Natural sciences + + + + Darwinism + + + Natural selection + + + + + + + Natural value + + + + Nature + + + + + + + + + + + Nature conservancy organization + + + + + Nature conservation + + + + + + + Nature protection + + + + + Nature reserve + + + + + Nature trails + + + + + Necrosis + + + + Assessment of needs + Need assessment + Needs analysis + + Needs assessment + + + + + + Neighborhoods + + + + + Nematodes + + + + + + Nesting + + + + + + Nesting area + + + + + Nets + + + + + Neurotoxicity + + + + + Neutralization + + + + + New technologies + + + + + Newborn + + + + Evening + + Night + + + + + Nitrates + + + + + Nitrification + + + + + Nitrogen + + + + + Nitrogen cycle + + + + + Nitrogen fixation + + + + Nitrogen in agriculture + + + + + Nitrogenous fertiliser + + + + + + Noise + + + + + Noise control + + + + + Noise pollutants + + + + + Noise pollution + + + + + + Noise types + + + + + Nomenclature + + + + + Non-biodegradable pollutants + + + + + + + + + + + + + + + + + + + + + + + + + + Non-built-up areas + + + + + Non-conventional energy + + + + + Non-ferrous metals + + + + + + Non-governmental organisation + + + + + Non-governmental organizations + + + + + Non-metals + + + + Alien animals + Exotic animals + + + Non-native animals + + + + Alien plants + Exotic plants + Introduced plants + Non-indigenous wild plants + + + Non-native plants + + + + + Alien species + Exotic species + + Added 2/99 + + + Non-native species + + + + + + Non-polluting energy sources + + + + + Non-polluting fuels + + + + + Non-profit association + + + + + Non-renewable energy resources + + + + Non-renewable resources + + + + + Non-returnable container + + + + + Non-target organism + + + + + Non volatile substance + + + + + Nonprofit organizations + + + + Exhaustible resources + + Nonrenewable natural resources + + + + + + Norm + + + + Notice + + + + + Notification + + + + + Nuclear accident + + + + Nuclear debate + + + + Atomic energy + Atomic power + Nuclear power + + + Nuclear energy + + + + + + + Nuclear energy legislation + + + + + Nuclear explosion (accident) + + + + + Nuclear fission + + + + + Nuclear fuel + + + + + Nuclear fusion + + + + + Nuclear hazards + + + + + Nuclear physics + + + + + Nuclear power plant decommissioning + + + + Nuclear reactors + + Nuclear power plants + + + + + + + Nuclear reaction + + + + + Nuclear reactor + + + + + Nuclear safety + + + + + Nuisance animals + + + + Nurseries + + + + + + Nursery + + + + + Nutrient balance + + + + + Nutrient content + + + + Nutrient cycling + Nutrient cycles + + + + + + Nutrient-deficient + + + + + Nutrient medium + + + + + Nutrient removal + + + + + Nutrients + + + + + Nutrition + + + + + Oak forest + + + + + Oases + + + + + + + + Objection + + + + + Observation satellite + + + + + + Observatories + + + + Occupational health + + + + + Ocean + + + + + + + Ocean-air interface + + + + + Ocean circulation + + + + + Ocean dumping + + + + Energy from the ocean + + + + + Ocean energy resources + + + + + Ocean exploitation + + + + + Ocean farming + + + + + Ocean fishing + + + + Ocean thermal power systems + Sea thermal power plants + Solar sea power plants + + + Ocean thermal power plants + + + + + Ocean wave power + + + + Breakers + Sea waves + Surf + + Ocean waves + + + + + Oceanic climate + + + + Oceanology + Physical oceanography + Thalassography + + + + + + Oceanography + + + + + + + Oceans + For the Atlantic, Pacific, Indian, Arctic, and Antarctic oceans. + + + + + Offence + + + + + Offshore drilling + + + + + Offshore mining + + + + + Oil-based energy + + + + + Oil disaster + + + + + Oil exploration + + + + + + Oil extraction + + + + + Oil fields + + + + Oil slick + + + + Oil pollution + + + Oil spills + + + + + + Oil wells + + + + Virgin forests + + Old growth forests + + + + + Olfactometry + + + + + Omnivores + + + + + + + + Open spaces + + + + + + Optical devices + + + + + + Orchards + + + + + + + + Order + + + + + Ore + + + + + Ore deposits + + + + + + Organic carbon + + + + + Organic chemistry + + + + + Organic compounds + + + + Biodynamic agriculture + Biodynamic farming + Biological agriculture + Ecological agriculture + Organiculture + Regenerative agriculture + + + Organic farming + + + + + Organic nitrogen + + + + + Organic pollutants + + + + Organic pollution + + + + + Organic solvents + + + + + + + + + + Organic substances + + + + + Organic waste + + + + + + + + + + Organisms + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Organisms (not systematic) + + + + + Agencies + Societies + + + + + + + + + + + + + + + + + + + Organizations + + + + + + Ornithology + + + + + Osmosis + + + + + Overexploitation + + + + + Overfishing + + + + + Overgrazing + + + + + Overhead electric lines + + + + + Overturn (limnology) + + + + + + Overwintering + + + + + + Ownership + + + + + Oxidation + + + + + Oxygen + + + + + Oxygenation + + + + + Oystering + + + + + + Oysters + + + + + + Ozone + + + + + Ozone layer + + + + + Ozone layer depletion + + + + Packhorses + Supply horses + + Pack animals + + + + + Palaeoclimatology + + + + + Palaeoecology + + + + Fossil botany + + + Paleobotany + + + + Fossilogy + Fossilology + Palaeontology + Paleobiology + Paleozoology + + + + Paleontology + + + + + For the subject of paleontology in general and the activities of paleontologists. + + + + + Panthers + + + + + + + + + + + + + + + + + + + + + + + + + Parameter + + + + + Parasite + + + + + + + Parasites + + + + + Parasitism + + + + + Parasitology + + + + + Parcels + + + + + Parental behavior + + + + + Park districts + + + + + Parking + + + + Malls + State parks + + + + + + + + + + Parks + + + + + + + + Participation + + + + + Particulates + + + + + Gaps + Mountain passes + Notches + Water gaps + + Passes (landforms) + + + + + + Pasture ecology + + + + + Path + + + + + Pathogen + + + + + + Pathogenic organisms + + + + + Pavements + + + + + Pcb + + + + Pedosphere + + + + Pelts + + + + Administrative sanctions + + Penalties for environmental damage + + + + + Penalty + + + + + Peninsulas + + + + + Groups of people + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + People + + + + + People associated with agriculture + + + + People associated with commercial activities + + + + People associated with education & communication + + + + People associated with entertainment & sports + + + + People associated with health & safety + + + + People associated with manual labor + + + + People associated with politics & government + + + + People associated with religion + + + + People associated with transportation + + + + + Percolating water + + + + Peril + + + + + Permeability + + + + + Permissible exposure limit + + + + + Persistence + + + + Personal health + + + + + Personal responsibility + + + + + Pest + + + + Control of pests + Exterminating + Fly swatting + Insecticides + Pesticides + Swatting insects + + + + + Pest control + + + + + + + + + + Pest infestation + + + + + Pest management + + + + + Pesticide control standards + + + + + Pesticide residue + + + + + Petrified forests + + + + + Petrochemicals + + + + Coal-oil + Crude oil + Oil + + + + + Petroleum + + + + + Pets + + + + + Ph + + + + + Ph-value + + + + + Phenology + + + + Altruists + + Philanthropists + + + + + + + Philosophy + + + + + Photochemical agents + + + + + Photochemical oxidants + + + + Photochemical pollution + + + + + Photochemical products + + + + + Photochemical reactions + + + + + Photochemical smog + + + + + + Photogrammetric pictures + + + + Photographic measurements + Stereophotogrammetry + + + + + Photogrammetry + + + + + Photographers + + + + + Phototopography + + + + Photographic surveying + + + + + + + + + Photography + + + + + News photography + Press photography + + + Photojournalism + For the subject of photojournalism in general and the activities of photojournalists. + + + + + Photolysis + + + + + Photoreception + + + + + + Photosynthesis + + + + + Photosynthetic pigments + + + + + Physical chemistry + + + + + Physical condition + + + + Exercise + Physical fitness + + + + + + Physical geography + + + + + + Physical instruments + + + + + Physical measurements of pollution + + + + + + + + + Physical phenomena + + + + + + + + + + + Physical planning + + + + + Physical pollutants + + + + Physical pollution + + + + + + + + + + + + + + Physical processes + + + + + + + + + + + + + + + + + + + + + + + + + Physical properties + + + + + + + + + + + + Physical sciences + + + + + Physicists + + + + + + + + + + + + + + + + + + + + Physico-chemical processes + + + + + Physico-chemical purification + + + + + Physico-chemical treatment + + + + + Physicochemical analysis + + + + Natural philosophy + + + + Physics + + + + + + + + Physiology + + + + + + Phytoplankton + + + + + Phytotoxicity + + + + Picnic areas + + + Picnic grounds + + + + + Piers + + + + + Pilot projects + + + + + Pipelines + + + + Pisces + + + + + + Plains + + + + + + + Plankton + Small plant and animal life forms that float in salt water or fresh water and are carried passively by the water currents. + + + + Housing estates + Residential developments + + Planned communities + + + + + + + + + + + + + + + + + + + Planning + + + + + + + + + + Planning measure + + + + + Plant biology + + + + + + Plant biomass + + + + Plant husbandry + + Plant breeding + + + + Phytosociology + Plant associations + Plant societies + + + Plant communities + + + + + Plant community + + + + Botanical diversity + Diversity of plants + Floristic diversity + Plant biodiversity + Plant biological diversity + + + Plant diversity + + + + + + + + + Plant ecology + + + + Plant life + + + + + Plant parasites + + + + + + + Communicable diseases in plants + Crop diseases + Diseases of plants + Microbial diseases in plants + Pathological botany + Phytopathology + Plant diseases + Vegetable pathology + + Plant pathology + + + + + Plant physiology + + + + + Plant population + + + + + Plant production + + + + + Plant protection + + + + + Plant reproduction + + + + + Plant resources + + + + Cultivation + Plant selection + + + + + Plant species + + + + + Plant species reintroduction + + + + + Plantae + + + + + Crops + Farm crops + Field crops + Flora + + + + + + + + + + + + + + + + + + + + + + + + + + Plants + + + + + + + + + + + + + + + + + Plants (biology) + + + + Plants (not systematic) + + + + + Plants (taxonomy) + + + + + + Plastic waste + + + + + Plastics + + + + Child play areas + Play areas + Play environment + + + Play environments + + + + Play centers + Public playgrounds + School playgrounds + + + Playgrounds + + + + + + Plowing + + + + + + Plutonium + + + + + + Poaching + Taking or killing game or fish by illegal methods. + + + + + Poets + + + + Point source pollution + + + + Point sources + + + + + Poisoning + + + + + Poisonous snakes + + + + + + Poisonous species + + + + Toxic substances + + Poisons + + + + + + + Polar region + + + + Gendarmes + Police departments + + + + Police + + + + + Police beats + + + + + + + + + + + Policy + + + + + Policy guideline + + + + + + + + + Policy instrument + + + + + Policy integration + + + + + Policy of conservation + + + + + Policy planning + + + + + + Political activity + + + + Campaign funds + + + Political campaign funds + + + + + + + Political ecology + + + + Electioneering + Elections + Mayoral elections + Political candidates + Primary elections + + Political elections + + + + + + + + Political ideology + + + + + Political issues + + For political issues in general. Search also under headings for specific issues. + + + + + + + Political organisation + + + + + + Political organizations + + + + + Citizen participation + Political action + + + Political participation + + + + Search also under the subdivision --POLITICAL ACTIVITY used with names of ethnic, racial, and regional groups, and with classes of persons (Appendix A) and with names of persons (Appendix B). + + + + + + Political parties + + + + + + Political party + + + + Party platforms + + Political platforms + + + + + + + + + Political power + + + + + Political representation + + + + + + + Political tactics + + Political strategies + + Techniques for guiding or influencing government or political organization policy. + + + + Political systems + + + + + + + Politicians + + For persons actively engaged in politics as managed by parties; often, persons primarily interested in political offices or the profits from them as a source of private gain. + + + + + + + + + + + + + + + + + + + Politics + + + + + + Pollen + + + + + + Pollination + + + + + + Pollinization + + + + + Pollutant + + + + + Pollutant absorption + + + + + Pollutant accumulation + + + + + Pollutant assessment + + + + + + + + + + + + + + + + + Pollutant behaviour + + + + + + Pollutant concentration + + + + + Pollutant degradation + + + + + Pollutant deposition + + + + + Pollutant dispersion + + + + + Pollutant distribution + + + + Pollutant effect + + + + + + + + Pollutant elimination + + + + + + Pollutant emission + + + + + Pollutant evolution + + + + + Pollutant exposure + + + + + Pollutant formation + + + + + Pollutant immobilization + + + + + Pollutant load + + + + + Pollutant migration + + + + + Pollutant mobilization + + + + + Pollutant monitoring + + + + + Pollutant pathway + + + + + Pollutant re-mobilization + + + + + Pollutant reduction + + + + + Polluted matter + + + + Nonpoint source pollution + Polluted runoff + + + + + Polluter-pays principle + + + + + Pollution abatement + + + + + Pollution abatement incentives + + + + + Pollution basin + + + + + Pollution control + + + + + Pollution control investment + + + + + Pollution control measures + + + + + Pollution control technology + + + + + Pollution costs + + + + + + + + Pollution effects + + + + + Pollution indicators + + + + + Pollution liabilities + + + + Pollution load + + + + + Pollution measurement + + + + + + + + + Pollution monitoring + + + + + Pollution norms + + + + Pollution of waters + + + + Prevention of pollution + + + Pollution prevention + + + + + Pollution risk + + + + + Pollution sink + + + + Pollution source + + + + + Pollution types + + + + + + Polymerization + + + + + Polymers + + + + + Polymorphism (zoology) + + + + + Pond + + + + Settlements + populated place + + + + Human population + Human populations + + + + + + + + + + + + + Population + + + + + + + + Population biology + + + + + Planned parenthood + Population control + + + + + Residential density + + + Population density + + + + + Population dynamics + + + + + Population (ecological) + + + + + Population ecology + + + + + Population genetics + + + + Geography of population + + + Population geography + + + + + Population migration + + + + + + Population movement + + + + + + + + + Population shifts + + + + + Population structure + + + + + Port districts + + + + + Post office buildings + + + + Higher education + + Post-secondary education + + + + + Postal zones + + + + Fowls + + + + Poultry + + + + + + Power consumption + + + + + + Power plants + + + + + + + + + Power production + + + + + Power shortages + + + + + + + + + Power (social sciences) + + + + + + Prairies + + + + + Pre-emption + + + + Noble metals + + + Precious metals + + + + + Precipitation (chemical) + + + + + + Precipitation enhancement + + + + + + + + + + Precipitation (meteorological) + + + + + + + Precipitation (meteorology) + + + + Precision agriculture + Prescription farming + Site-specific farming + Soil specific crop management + + Precision farming + + + + Predator-prey relations + Predatory behavior (biology) + Preying (biology) + + Predation (biology) + + + + + + Predators + + + + + Preliminary proceedings + + + + Readiness + + Preparedness + + + + + Preservative + + + + + Presidential appointments + + + + + + + + Presidents + + + + For the office of the president or for incumbents. + + + + Congress & presidents + + Presidents & the congress + + + + + + + + Press conferences + + + + + + Pressure + + + + + Prevention measure + + + + + Prevention of forest fires + + + + + Preventive information + + + + + Prey + + + + + Primary forest + + + + Primates + + + + + Private funding + + + + + Private sector + + + + + Privatisation + + + + + Processed agricultural produce + + + + + Processed foodstuff + + + + + Processing + + + + + + + + + + + Product + + + + + + Quality control + + Product inspection + + + + + + Product labelling + + + + Productivity + + + + + Productivity (biomass) + + + + + Productivity trends + + + + + Products and materials + + + + + + Programs + + + + Prohibition + + + + + + + Project + + + + + + + + + + + + + + + + Properties of materials + + + + Exploration (prospecting) + + Prospecting + + + Exploring areas for mineral deposits. + + + + Prosperity + + + + + Protected animals + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Protected area + + + + + Protected environment zone + + + + + Protected landscape + + + + + Protected marine zone + + + + + Protected plants + + + + + Protected site + + + + + + + Protected species + + + + + Protected water catchment area + + + + + + Protection rights + + + + + Protective measure + + + + + Protein + + + + Anti-war movements + Public protest + + Protest movements + + + + + + For opposition in regard to particular political or social issues. Search under PACIFISM for opposition to violence. Search under OPPOSITION (POLITICAL SCIENCE) for organized political resistance to the government in power. + + + + + Protista + + + + + + + Protozoology + + + + + Psychological effect + + + + + Psychosomatic effect + + + + + Public + + + + + + Public access to land + + + + Public action + + + + + Public affairs organizations + + + + + Public affairs radio programs + + + + + Public affairs television programs + + + + + + + + Public buildings + + + + + Public domain + + + + + + Public finances + + + + + + + + + Public function + + + + Community health + Health services + Human health + Public health services + Public hygiene + Sanitary affairs + Social hygiene + + + + + Public health + + + + + Public hearings + + + + + + Public information + + + + + Public Land Survey System + + + + + + + + + + + + + + Public lands + Land owned by a government. + + + + Public management + + + + + Public opinion + + + + + Public parks + + + + Public participation + + + + + Public sector + + + + Public sector management + + + + + + + + + + + + + + + Public service + + + + + Municipal utilities + Public service corporations + Utilities + Utility companies + + + + + + Public utilities + + + + + + Public utility + + + + Electric companies + Gas companies + Water companies + + Public utility companies + + + + Includes activities and structures. + + + + + Public utility districts + + + + + + + + + Public works + + + + + Pulpwood + + + + Cougars + Mountain lions + + Pumas + + + + + + Pumping + + + + + Pumping stations + + + + + Purification + + + + + Purification process + + + + + Quality standard + + + + + Quarantines + Includes images related to the activity of quarantining and the places where quarantined persons are kept. + + + + + Quarry + + + + Rock crystal + + Quartz + + + + + Radar in surveying + + + + + + + + + + + Radiation + + + + + Radiation damage + + + + + Radiation exposure + + + + + Radiation hazards + + + + + + + + + Radiation physics + + + + + Radiation protection + + + + + Radiation sickness + + + + + Radio + + + + + + Radioactive contamination + + + + + Radioactive decontamination + + + + + Radioactive dumps + + + + + Radioactive emission + + + + Radioactive fallout + + + + + Radioactive pollutants + + + + Radioactive pollution + + + + + Radioactive substances + + + + + Radioactive tracers + + + + Nuclear wastes + Radioactive waste + Radwastes + + Radioactive wastes + + + + + + + + + Radioactivity + + + + + + + + Radon + + + + + Railroad terminals + + + + + Railroads + + + + Rainfall + + + Rain + + + + + + + Rain and rainfall + + + + + Rain forest + + + + + Rain water + + + + + Rainbows + + + + + Rainwater sewer system + + + + + Ranchers + + + + + + Haciendas + Ranch houses + + + Ranches + + + + + Includes activities and structures. + + + + + Random test + + + + + Range ecology + + + + Range policy + + + + + + Rangers + + + + + Persons responsible for ranging over a region for its protection. + + + + + Rapids + + + + + Vanishing mammals + + Rare mammals + + + + + Rare plants + + + + + Rare species + A native species or subspecies of a bird, mammal, fish, amphibian, reptile, or plant that, although not presently threatened with extinction, is likely to become an endangered species in the foreseeable future in the absence of the special protection and management efforts required by this chapter [California Endangered Species Act - Fish and Game Code, Sec. 2067]. + + + + + Rate + + + + + + + + Raw material + + + + Cadastral surveys + Catastral surveys + Freehold + Limitations (law) + Real estate + Real estate law + Realty + + + + + + + Real property + + + + + Real property surveys + + + + + Reclamation + + + + Land reclamation + + + + + Reclamation of land + + Bringing wild, waste, or marshy land into a condition for cultivation or other use. Search under CLEARING OF LAND for removal of timber and bushes from land. + + + + + Recovery of landscape + + + + + Recovery plans + + + + Leisure + Leisure activities + + + + + + + + + + + + + + + + Recreation + + + + + + + + + + + + Recreation agencies + + + + Outdoor recreation areas + + + + + + + + Recreation areas + + + + + Recreation river areas + Rivers or sections of rivers readily accessible by road or railroad with some shoreline development that have undergone some impoundment or diversion. + + + + + Recyclability + + + + + Recyclable plastic + + + + + Recycled materials + + + + + Recycled paper + + + + Recycled commercial products + Recycled consumer goods + Recycled goods + Recycled manufactures + Secondary materials (recycled products) + + Recycled products + + + + Waste recycling + + + + + + + Recycling + + + + + + + + Hospital service (war) + + Red cross + + + + Tide, Red + + Red tide + + + + + Reduction + + + + + Redwood forest + + + + + + Reef fish + + + + + + + Reefs + + + + + + Reflection + + + + + Reflectometry + + + + + Reform + + + + + City dumps + Garbage + Litter (trash) + Rubbish + Trash + + + Refuse + + + + + Discarded materials + Disposal of refuse + Garbage + Rubbish + Solid waste management + Trash + Waste disposal + Waste management + + + + + Refuse and refuse disposal + + + + City dumps + Disposal of refuse + Garbage dumps + + + + Refuse disposal + + + + + + Includes activities and disposal sites. + + + + + Regional federal-state organizations + + + + + Regional natural park + + + + + Regional plan + + + + Regional development + State planning + + + + Regional planning + + + + + + Regional planning districts + + + + + Registration + + + + + + + Regulations + + + + + Reintroduction + + + + Relative abundance + + A rough estimate of population density or relative importance of one species compared to others in the same area, usually expressed as a percentage. + + + + Relaxation + + + + + Release of organisms + + + + Religious sects + Sects + + Religious groups + + + + + Renewable energies + + + + Alternative energy sources + + + + + + + Renewable energy sources + + + + Renewable resources + + + + Renewable natural resources + + + + + + Renewable raw materials + + + + Correspondents + Newspaper reporters + + Reporters + + + + + Reporting process + + + + + Representation + + + + Amphimixis + Generation + Pangenesis + Procreation + + + + + + + + Reproduction + + Total process by which animals give rise to offspring. + + + + + + Reptiles + + + + Science research + Scientific research + + + + + + + + + + + + + + + + + + + + + Research + + + + + + + + Research and development + + + + + + Research facilities + + + + + Research programs + + + + + Research projects + + + + Research groups + Team research + Team work in research + + Research teams + + + + + + Reserve + General term describing protected natural areas. + + + + Artificial lakes + Man-made lakes + + + + Reservoirs + + + + Man-made lakes. + + + + + + + Residential facilities + + + + + + Resinous plant + + + + + Resistance + + + + + Resorption + + + + + Resorts + + + + + Resource allocation + + + + + Resource appraisal + + + + Resource communities + Resource frontier communities + + Resource-based communities + Here are entered works on communities whose livelihood stems from the +exploitation of natural resources. + + + + Conservation + Conservation of resources + Natural resource conservation + + + + + + + + + + + + + + + + + + + + + Resource conservation + + + + + + + + + + Resource conservation districts + + + + + + + Resource exploitation + + + + + + + + + + + + + Resource extraction and use + + + + + + Resource reserve + + + + + + + + + + + + + + + Resource type + A grouping of terms for the purpose of describing form and content of information resources. + + + + Animal respiration + Breathing + + + Respiration + + + + + Responsibility + + + + Rest + + + + + Retarding basin + + + + + Returnable packaging + + + + + Reusable containers + + + + + Reusable packaging + + + + + Reuse of materials + + + + + Revegetation + The reestablishment and development of a plant cover. + + + + + + Revenue + + + + Rewards of merit + + + + + Rice + + + + + Right of way + + + + + Right to information + + + + + Rights + + + + + Rights of future generations + + + + + Rights of the individual + + + + Civil disorders + + Riots + + Search also under the subdivision --RIOTS & DEMONSTRATIONS used with corporate bodies and named events (Appendix D). + + + + + Riots & demonstrations + + + + + + Riparian areas + + + + + Riparian communities + + + + + Riparian ecology + + + + + + Riparian forests + + + + + Riparian zone + + + + + + Rising sea level + + + + + + + Risk + + + + + + Risk analysis + + + + + Risk assessment + + + + + + + + + + + Risk management + + + + + Risk reduction + + + + + River bank protection + + + + + River bed + + + + + River channelling + + + + + River disposal + + + + + River engineering + + + + River pollution + + + + + River water + + + + Brooks + Creeks + Estuaries + Runs (rivers) + + + Rivers + + + + + + + + + Riverside vegetation + + + + + + + + + + + + + + + + + + Road construction + + + + + + Road districts + + + + + Road markings + + + + + Road salt + + + + Highways + Thoroughfares + + + + Roads + + For thoroughfares outside of cities, towns, and villages. Search under STREETS for thoroughfares in cities, towns, and villages. + + + + + Roadside ecology + + + + Natural bridges + + + Rock formations + + + + + + + + + Rock mechanics + + + + + + Rocks + + + + + + + + + Rodent control + + + + + Rodents + + + + + Roosting + Bird behavior associated with rest or sleep in a particular site. + + + + + Root + + + + + Root crop + + + + + + Runoff + + + + + + Rural area + + + + Integrated rural development + Regional development + Rural community development + Rural economic development + + + + Rural development + + + + + Rural environment + + + + + Rural habitat + + + + Agricultural population + Farm population + + + Rural population + + + + + + + + + + + + Safety + + + + + + + + + + Safety analysis + + + + + + + + + + + + + + + + + + + + + + + + + Safety measures + + + + + Safety standards + + + + + Safety study + + + + + + + Safety systems + + + + + Salamanders + + + + + Salinization + + + + + + + Salmon + + + + + Salt content + + + + + Salt marsh + + + + + Salt meadow + + + + + Salt water + + + + + Salts + + + + Scrap + + + Salvage + + + + + + + + Sampling + Process of obtaining predetermined kinds and quantities of information. + + + + + Sand + + + + Gravel mines and mining + + Sand and gravel mines and mining + + + + + Sand dune fixation + + + + + Sand flat + + + + + Sand pit + + + + Bars (sand) + + Sandbars + + + + + + + Sanitary districts + + + + + Sanitary landfills + + + + + + + + + Sanitation + + + + + Satellite + + + + Shortages + + Scarcity + + + + For the general subject of shortages. Search under ASSISTANCE for efforts to ameliorate scarcity. + + + + + Scenic river areas + Rivers or section of rivers free of impoundments with watersheds largely primitive and shorelines largely undeveloped but accessible in places by roads. + + + + + Scholars + + + + + + School architecture + School-houses + Schoolhouses + + + School buildings + + + + + + School districts + + + + Recycling programs in schools + + School recycling programs + + + + Elementary schools + Preparatory schools + Secondary schools + + Schools + + + + Includes elementary and secondary educational facilities. May include activities. + + + + Natural science + Science of science + Sciences + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Science + + + + + + + + + + + Science activities + + + + + + + Science education programs + + + + + + Science projects + + + + Scientific instruments + + + Scientific apparatus and instruments + + + + + + + + + + Scientific equipment + + + + + + + Scientific expertise + + + + + Scientific policy + + + + + Scientific surveys + + + + + + + Scientists + + + + + Carvings + Statues + + + Sculpture + Primarily for representations of figures in the round, sculptured or modeled out of some solid substance, such as wood, stone, marble, or wax. Includes statues and indoor and outdoor sculpture of all kinds. Search under MODELING (SCULPTURE), STONE CARVING and WOOD CARVING for activities. Search also under the subdivision --STATUES used with names of persons (Appendix B). + + + + + Sea bed + + + + + Sea bed exploitation + + + + + Sea circulation + + + + + Sea grass bed + + + + + Sea level + + + + + Sea level rise + + + + + Sea lions + + + + Sea pollution + + + + + Sea walls + seawalls + Walls or embankments to protect the shore from erosion, or to act as a breakwall (websters). + + + + + Sea water + + + + + Sea water desalination + + + + + Seals + + + + + + Seals (animals) + + + + Breakers + Estuaries + Surf + + + Seas + + + + + + + + + + + + + Seashore ecology + + + + + Seasonal migration + + + + + Seasonal variation + + + + + + + + + + + + Seasons + + + + + Sea walls + seawalls + Walls or embankments to protect the shore from erosion, or to act as a breakwall (websters). + + + + + Secondary education + + + + + Sedimentation + + + + + + Sedimentology + + + + + + + + + + Sediments + + + + Seed plants + + + + + Seeds + + + + + + Seismic activity + + + + + + Seismic engineering + + + + + + Seismic hazards + + + + + + Seismic monitoring + + + + + Selective breeding of animals + + + + Selective breeding of plants + + + + + + Sensitive areas + + + + + Sensitive natural area + + + + + Sensitivity analysis + + + + + Sensor + + + + + Separator + + + + + Sequoia + An ecosystem. + + + + + Serpentine + + + + + Service + + + + + + + + + Services + + + + Domestic sewage + Industrial effluent + Waste waters + Wastewaters + + + Sewage + Refuse liquids or waste matter carried of by sewers. + + + + + Sewage sludge + + + + + Sewage treatment systems + + + + + Sewer districts + + + + Disposal of waste + Drainage + House drainage + Sewage disposal + + + + + + Sewerage + + + + + + + Sewers + + + + + + Gender (sex) + Lovemaking + Sexual behavior + Sexuality + + Sex + + + + + Sharks + + + + Lambs + Rams + + + Sheep + Domestic animals. + + + + + + + Shellfish + + + + + Wrecks + + Shipwrecks + + + + For the destruction or loss of a ship and the remains of destroyed or sunken vessels. Search under NAVAL WARFARE for vessels damaged as a result of war. + + + + Gunning + + Shooting + + + Search under HUNTING for shooting game. + + + + + + Shrubland ecology + + + + Bushes + + + + Shrubs + + + + Side effect + + + + Excursions + Sightseeing + + Sightseers + + + + For persons who go about seeing sights of interest on their own. Search under TOURISTS for persons who are on organized tours. + + + + + Silt + + + + Silver bullion + + + Silver + + Metallic element (Ag). + + + + + Silver mines + + + + Sylvicultural systems + + Silvicultural systems + + + + + + + + + Simulation + + + + Choruses + Vocalists + + Singers + + + + + + Site elements + + + + + + Site rehabilitation + + + + + + + Sites + + + + + + + Skiing + + + Arecreational activity. + + + + + Skin + External limiting layer of an animal body. + + + + Skins + + + + Slash + + + + + Forest slash + Logging residue + Logging slash + + Slash (logging) + + + + + Sleep + natural, usually regular suspension of consciousness during which powers of the body are restored. + + + + + Slope + + + + + Sludge + The sediment that settles tot he bottom after the bacterialaction on wastes. + + + + + Sludge treatment + + + + + Slurry + + + + + Smog + + + + + Smog warning + + + + + Smoke + + + + Smoke prevention + + + + + + + Snow + + + + + + + + Small white crystals of frozen water. Environmental factors. + + + + + Snow removal + + + + + + Snowshoeing + + + + + + + + Social analysis + + + + Social behavior + Reciprocal interactions of two or more animals. + + + + Classes (social) + + + Social classes + + + + + + + + + + + + Social differentiation + + + + Social dynamics + + + + + Social groups + + + + Social development planning + + + Social planning + + + + + + + + + + + + + + + + Social processes + + + + + Social science + For the subject of social science in general and the activities of social scientists. + + + + Philanthropy + Relief stations (for the poor) + Social service agencies + Social work + + + Social service + + + + + + Social services + + + + Family values + Social values + + + + + + + + + + + + + + + + Society + + + + + + + Socio-economic aspects of human settlements + + + + + + Socio-political aspects + + + + + Sociology + + + + Soi classification + + + + + Soil acidification + + + + + Soil analysis + + + + + + + + Soil biology + + + + + Soil chemistry + + + + + + Soil classification + + + + + + + Soil compaction + + + + Soil improvement + Soil stabilization + + + + Soil conservation + + + + + + + + Soil conservation districts + + + + + + + Soil contamination + + + + + + Soil damage + + + + + + Soil decontamination + + + + + + Soil degradation + + + + + + Soil ecology + + + + Soil fertility + + + + + Soil genesis + + + Soil formation + + + + + Soil horizons + + + + + Soil invertebrates + + + + + Soil loading + + + + + Soil mapping + + + + + + + + Soil mechanics + + The application of the principles of mechanics and hydraulics to +engineering problems dealing with the behavior and nature of soils, +sediments, and other unconsolidated accumulations of solid particles; the +detailed and systematic study of the physical properties and utilization +of soils, esp. in relation to highway and foundation engineering and to +the study of other problems relating to soil stability. + + + + + + Soil microbiology + + + + + + + Soil mineralogy + + + + + Soil organic matter + + + + + Soil organisms + + + + + Soil pollutants + + + + + Soil pollution + + + + Soil dynamics + + + + + + + + + + + + + Soil processes + + + + + + Soil profiles + Vertical sequences of well-defined soil, sediment, or decaying vegetation layers. + + + + + + Soil properties + + + + + + + + + Soil quality + + + + + Pedology (soil science) + + + + + + + + Soil science + + + + + + Soil settling + + Soil subsidence + + + + + Soil surveys + + + Mapping the distribution of soil types, which requires air photo interpretation and field work by pedologists. + + + + + Soil use + + + + + + Soil water + + + All water stored in the soil. + + + + Soil + Soil resources + + + + + + + + Soils + + + + + + + + + + + + + + + + + + + + Solar energy + + + + + + Solar radiation + + + + + Solid (matter) + + + + + + Solid state + + + + + Solid waste + + + + + Solid waste districts + + + + + Solubility + + + + + Soot + + + + + + + + Sorption + + + + + Sorting of waste + + + + + Sounding + + + + + Soundproofing + + + + Noises + + Sounds + + + + + + + Space (interplanetary) + + + + + Space optics + + + + Science and space + Space research + + + Space sciences + + + + + + Spatial distribution + + + + + Spawning + + + + + Spawning grounds + + + + + Special districts + + + + Pressure groups + + Special interests + + Persons or groups seeking to influence legislation or government policy to further often narrowly defined interests. + + + + + Special wastes + + + + + Species + + + + Diversity of species + + + Species diversity + + + + + Species impoverishment + + + + + Added 2/99 + Species of special concern + + An administrative term for vertebrate animals based on a scientific review of the status of the species. The Department of Fish and Game has identified certain taxa as "Species of Special Concern" because declining population levels, limited ranges, and/or continuing threats have made them vulnerable to extinction. The designation "Species of Special Concern" is not related to, or part of, the California Endangered Species Act. + + + + + Spectroscopy + + + + Sperm + + Spermatozoa + + + + Wasteways + + Spillways + + A passage for surplus water to run over or around a dam or other obstruction. + + + + + Spiritual leaders + For persons who provide spiritual guidance, although they may not occupy a formal position in an organized religion. Search also under the subdivision --SPIRITUAL LIFE used with names of ethnic, racial, and regional groups, and with classes of persons (Appendix A). + + + + + Sponges + + + + Athletics + Competitions + Sports teams + + + + Sports + + + + + + + + + Search also under the subdivision --SPORTS used with names of ethnic, racial, and regional groups and with classes of persons (Appendix A) , and with corporate bodies and named events (Appendix D). Search also under the subdivision --SOCIAL LIFE used with names of persons (Appendix B). + + + + Recreation facilities + Sports facilities + + + + Sports & recreation facilities + + + + + + + + Sprayed asbestos + + + + + Spring + + + + + Spring water + + + + Hot springs + Mineral springs + Seeps + Thermal springs + + Springs + + + + + + Stadiums + + + + Stalagmites + + Stalactites & stalagmites + + + + + + + + + + + + Standard + + + + + + + Standardization + + + + + + + Standards of environmental quality + + + + Hunger + + Starvation + + + + + + + + State + + + + + State authority + + + + + + State biological reserve + + + + + State control + + + + + State courts + + + + + State forest + + + + + State funding + + + + + + State government agencies + + + + Provincial governments + + State governments + + + + + + + + State laws and regulations + + + + + Local-state relations + + State-local relations + + + + + + + + + + State of matter + + + + + State of the art + + + + + Statesmen + + + Persons who engage in conducting the business of a government or in shaping its policies but do not hold a government post. + + + + + Station + + + + + Statistical analysis + + + + + Statistical data + + + + + + + + Statistics + + + + + Sterilization (biological) + + + + + Sterilization (process) + + + + + Steroids + + + + + Stock (biological) + + + + + Storage (process) + + + + + Storm damage + + + + Storm hazards + + + + Storm drainage systems + Storm drains + Surface water sewers + + Storm sewers + + + + + + + + + + + + + + + + Storms + + + + + + + Disturbances of the atmosphere marked by wind and usually by rain, snow, hail, sleet, or thunder and lightning. + + + + Strategic management + + Strategic planning + + + + + Stratification + + + + + Stratosphere + + + + + Stratospheric ozone depletion + + + + Brooks + Creeks + + + + + Streams + + + + + + + + + + + Street addresses + + + + + Street names + + + + + Street signs + + + + + Streets + + + + Open-pit mining + Surface mining + + Strip mining + Includes activities and sites. + + + + + + Structural engineering + + + + + Stud farms + + + + Campus disorders + Student activism + Student protest + Student strikes + Student unrest + + Student movements + + + + + + + + + Student organizations + + + Includes activities and structures. + + + + College students + High school students + University students + + + Students + + + + + + + For high school and college students. Search under SCHOOLCHILDREN for younger students. + + + + + Subsidence + + + + + + Subsidence hazards + + + + + + + Subsoil drainage + + + + + Successional development + + + + Beet sugar + Cane sugar + + Sugar + + + + + Summer + + + + + Summer science programs + + + + + Sunbathing + + + + + Sunflowers + Agricultural crop + + + + Dawn + Dusk + Evening + Sunsets + Twilight + + Sunrises & sunsets + + + + + Supervisorial districts + + + + + + + + + + + Supply and demand + + + + + Surf fishing + + + + + + Surface runoff + + + + + Surface treatment + + + + + Surface water + + + + Surf riding + Surfboard riding + + Surfing + + + + + Surplus + + + + City surveying + Land surveying + + + + + + + + Surveying + + + + + + + + Surveyors + + + + + + Survival + Living longer or beyond some event, time, condidtions + + + + + Suspended matter + + + + Low-input agriculture + Low-input sustainable agriculture + Lower input agriculture + Resource-efficient agriculture + + Sustainable agriculture + + + + + Sustainable development + + + + + Sustained use + + + + + Swimming + + + Act, art, or sport of swimming--moving (survivng in water) + + + + Consortism + + + Symbiosis + + + + + + Symbols + Search also under terms for animals, objects, and other things which may be used as symbols, e.g., FISTS (for power) and HAWKS (for aggression). + + + + + Synergism + + + + + Systems analysis + + + + TGM1 + + + + + Tanning + Search under LEATHER INDUSTRY for tanning activities on a large scale. + + + + + Target group + + + + Customs duties + Duties + Export taxes + Import taxes + + Tariffs + + + + + + + Tax + + + + Exemptions from taxation + + + Tax exemptions + + + + + + Tax rate areas + + + + + + + Taxation + + + + + + + Taxes + + + + + + Taxonomy + Practice of describing, naming, and classifying organisms. + + + + Faculty + Instructors + Professors + + Teachers + + + + For teachers at all levels. + + + + + + Teaching + + + + + + + + + Technical regulations + + + + Technocracy + Management of society by technical people. + + + + + + + Technological development + + + + Applied science + Useful arts + + + + + + + + + + + + + + + + + + Technology + + + + + + Technology transfer + + + + + + Tectonics + + + + Adolescents + Teens + + Teenagers + + + For persons in the general age range of thirteen to eighteen years. This heading may be further subdivided by the subdivisions used for classes of persons (Appendix A). + + + + + Telecommunication + + + + + Telecommunication lines + + + + + Telemetry + Transmission of instrument readings to a remote location by wires, radio waves, or other means. + + + + + Telephone lines + + + + Spyglasses + + + Telescopes + + + + + Temperate woodlands + + + + + + Temperature + + + Degrees of hotness or coldness. + + + + + Teratogenesis + + + + + Teratogenicity + + + + + Teratogens + + + + Centers of transportation + Depots (transportation) + Stations (transportation) + Transport centers + Transportation centers + Transportation terminals + + + Terminals (transportation) + + + + + + + + Terminology + Discussion of verbage used on wildlife studies. + + + + + Terrestrial ecosystem + + + + Three-mile limit + + Territorial waters + + + + Territory + + + + + Political violence + + Terrorism + + + + + + + + Test + + + + + Test animal + + + + + Test organism + + + + Tests + + + Testing + + + + For the testing of things. Search under EXAMINATIONS for the testing of persons. + + + + Examinations + Testing (education) + + + + + Testing guidelines + + + + + Testing method + + + + Dramas + Plays + Reenactments + Skits + Specialty acts + + Theatrical productions + For theater activities, including plays, monologues, etc. Search under THEATERS for images that focus on buildings. Search also under the subdivision --PERFORMANCES & PORTRAYALS used with the names of ethnic, racial, and regional groups and with classes of persons (Appendix A). Search also under the subdivisions --PORTRAYALS and --PERFORMANCES used with names of persons (Appendix B). + + + + Theocracy + For the subject of theocracy in general. + + + + Therapy + + + + Thermal pollution + + + + + Thermal sea power + + + + + Thermodynamics + + + + + Thermometers + + + + + + Threatened animal species + Threatened wildlife + + Threatened animals + + + + + Threatened plants + + + + + + + Threatened species + A native species or subspecies of a bird, mammal, fish, amphibian, reptile, or plant that, although not presently threatened with extinction, is likely to become an endangered species in the foreseeable future in the absence of the special protection and management efforts required by this chapter [California Endangered Species Act - Fish and Game Code, Sec. 2067]. + + + + + Threshold value + + + + + + Thunderstorm + A localized storm, invariably produced by a cumulonimbus cloud accompanied by lightning and thunder. + + + + + Tidal power + + + + + Tidal water + + + + + Tide pool animals + + + + + Tide pool plants + + + + Equilibrium theory of tides + + + Tides + The naturally occurring periodic rise and fall of the oceanic water levels. It is caused by the rotation of the Earth and the combined gravitational influences of the Earth, moon, and the sun and varies directly with their associated masses and inversely as the square of their distances apart. The type of tide varies according to the relative juxtaposition of the planets. + + + + + Tillage + + + + + Forest production + + + + + Timber + + + + + + + + + + Timber forest + + + + + + + Time + + + + Time allocation + + + + + Tomatoes + + + + + + Topographical surveying + + + + Toponomy + + + Toponymy + + + + + Tornado + + + + + Tornadoes + + + Includes the event and any resulting damage. + + + + + Total organic carbon + + + + Excursions + Foreigners + Tourism + + Tourist trade + + + For the subject of tourism in general. Search under TOURISTS for images that focus on persons. + + + + Sightseeing + Touring + + Tourists + + + + For persons on organized tours. Search under SIGHTSEERS for persons who go about seeing sights of interest on their own. + + + + + Towers + Structures that rise above their surrounding. + + + + + Town meetings + + + + + Toxic effects + + + + + Toxic metals + + + + Toxic pollution + + + + + Toxic products + + + + + Toxic waste + + + + + Toxicity + + + + + + Toxicological assessment + + + + + Toxins + + + + + Trace elements + Elements essential in minute quantities for maintenance of animal health (iron, iodine, cobalt, copper, magnese, magnesium, zinc, selenium). + + + + + Tracer + + + + Commerce + Changed to an entry term. + Trade + + + + + Trade impact on environment + + + + + + + Traffic + + + + + Traffic analysis zones + + + + Traffic jams + + Traffic congestion + + + + + + Traffic emission + + + + + + Traffic on water + + + + + Traffic signs and signals + + + + Bridle paths + Foot trails + Footpaths + Horse trails + Paths + + + + + Trails + Paths used by animals. + + + + Training + + + Training (education) + + + + + Public transportation + Transport + Transportation (traffic) + + + + + + + + + Transportation + + + + + Movement of animals from one geographical area to another. + + + + + + Transportation buildings + + + + + + + + Transportation facilities + + + + + + Journeys + Trips + + + + Travel + + + + + + + + Forest farming + + Tree crops + + + + + + + Forest plantations + + Tree farms + + + + + Dendrology + + + + Trees + + + + + + + + + + Trends of opinion + + + + + Trial + + + + + Triangulation + + + + + Tribes + + + + + Trophic ecology + + + + + Tropical climate + + + + Tropical fish + + + + + Jungles + + + Tropical forests + + + + + Tropical plant + + + + + Tropical rain forest + + + + + Tropics + + + + + Troposphere + + + + + Tropospheric ozone + + + + Automobile trucks + Delivery trucks + Lorries (motor vehicles) + Motor-trucks + + + Trucks + + + + Tidal waves + + + Tsunamis + + + + + Large ocean wave caused by submarine volcanic earthquake activity. + + + + + Tundras + Treeless land in arctic and alpine regions, varying (grasses, sedges, forbs, dwarf shrubs, mosses, lichens). + + + + + Turbidity + + + + + Two-stroke engine + + + + + Typhoons + + Includes the event and any resulting damage. + + + + + Ultra-violet + + + + + Ultraviolet radiation + + + + + Uncontrolled dumping + + + + + Underground disposal + + + + + Underground electric lines + + + + + Underpasses + Structures that allow a line of traffic to pass under another intersecting line of traffic. + + + + + Underwater photography + For the subject of taking photographs underwater. + + + + Unfunded federal mandates + Unfunded mandate + + Unfunded mandates + + + + + Unincorporated areas + + + + + United nations + An organization. + + + + Urban farming + + Urban agriculture + + + + Beautification of cities & towns + Beautification of cities and towns + City beautification + Community beautification + Town beautification + + Urban beautification + + + + + + + Urban community + + + + Urban environment + + + Urban ecology + + + + + Urban ecosystems + + + + + Urban expansion + + + + + Urban growth + + + + + + + + + + Urban habitat + Wildlife habitats (greenbelts, greenways,etc.) within urban areas. + + + + + Urban planning and development + + + + + Urban pollutant + + + + Urban pollution + + + + + Urban population + + + + Model cities + Urban redevelopment + + + + Urban renewal + + + + + + + Urban stress + + + + City transportation + Metropolitan transportation + Municipal transportation + + + Urban transportation + + + + + Urban wastewater + + + + + Urban zone + + + + Urban development + + + Urbanization + + Development and expansion of man-made structures--highways, buildings, etc.---into wildlife habitat. + + + + + + + + + + Use of leisure time + + + + + Used oil + + + + + Used paper + + + + + Used water + + + + + Useful organism + + + + + Utility Districts + + + + + Vacations + + + + + Inoculations + Vaccinations + + A method of producing active immunity against a specific infection by means of innoculation with a vaccine. + + + + Glens + Hollows + River valleys + Stream valleys + + + Valleys + + + + + Damage to property + Destruction of property + Property damage + + Vandalism + + + + Vanished species + + + + Vanishing species + + + + + + Variation (biology) + + + + + + + Vegetable cultivation + + + + + Vegetable gardens + + + + + Vegetable waste + + + + + + Vegetables + + + + + + + Vegetation + + + + + + Classification of vegetation + Vegetation systematics + Vegetation classification + + + + + + + + + + Vegetation classification systems + + + + + + + + + + + + + + Vegetation communities + + + + Vegetation cover + + + + + Vegetation level + + + + + + + Vegetation mapping + + + + + Vehicle inspection + + + + + + + + + + Vehicles + + + + + + + + + Vermin + + + + + + + + + Vertebrates + + + + Watercraft + + + Vessels + + + + + + + Victims + + + + + + Village life + + Villages + + A unit of compact settlement, usually larger than a hamlet and smaller than a town, and distinguished from a surrounding rural area. + + + + Climbing plants + + Vines + + + + + Viruses + + + + + Viscosity + + + + Vital event statistics + Vital rates + + Vital statistics + + + + + + Vitamins + Substances present in natural foods that are essential for health. + + + + + Viticulture + + + + + Vitrification + + + + + Vocational training + + + + + Volatility + + + + + Volcanic area + + + + Volcanic ash + + + + + + Volcanic eruptions + + + + Includes the event and any resulting damage. + + + + + Volcanic hazards + + + + + Lava rock + Rhyolite + + Volcanic rock + + + + + + Volcanic activity + + + + + + + Volcanism + Volcanic action or activity. + + + + Volcano + + + Volcanoes + + + + Often conical hill or mountain with opening in earth's crust from which lava, gases, and other materials are ejected. + + + + + Volcanology + + + + + Voluntary natural reserve + + + + + Voluntary work + + + + + Voter registration + + + + + Voting Precincts + + + + + Vulcanization + + + + Vulnerable species (iucn) + + + + Strolling + + + Walking + + + + + + + Warning plan + + + + Predictions + + Warnings + + + + + + + + + + + + + Waste + + + + + Waste analysis + + + + + Waste classification + + + + + Waste collection + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Waste composition + + + + + Waste conversion techniques + + + + + Waste disposal costs + + + + + + + Waste disposal sites + + + + + Waste dump + + + + + Waste dumping + + + + + Waste export + + + + + Waste gas + + + + + Waste incineration + + + + + Waste legislation + + + + Minimization of waste + Reduction of waste + Waste reduction + + + + Waste minimization + + + + + Waste paper + + + + + Waste processing + + + + Waste producer + + + + + Waste production + + + + By-products + Industrial wastes + Trades-waste + Utilization of waste + Waste materials + + Waste products + + (Here are entered works on the debris resulting from a process, such as manufacturing, that is of no further use to the system producing it. + Works on commercial products with recycled content are entered under Recycled products.) + + + + + + + + + + Waste recovery + + + + + Waste sorting + + + + + Waste statistics + + + + + Waste transport + + + + + + + + + + + + + + + + + + + + Waste treatment + + + + + Waste use + + + + + Waste water + + + + + Waste water charges + + + + + Waste water discharge + + + + + Waste water disposal + + + + + Waste water legislation + + + + Waste water pollution + + + + + Waste water purification + + + + + Waste water quality + + + + + Waste water reduction + + + + + Waste water removal + + + + + Waste water sludge + + + + + Waste water treatment + + + + Waters + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Water + + + + + + + + + + Water aeration + + + + + Water analysis + + + + + + + Water balance + + + + + + Water balance (biological) + + + + + Water balance (hydrology) + + + + + Water bodies + + + + + Water collection + + + + Conservation of water + + + + Water conservation + + + + Consumption of water + + + Water consumption + Behvior related to drinking water. + + + + + Water cost + + + + + + + + + Water course + + + + + + Water delivery + + + + + Water demand + + + + + Water districts + + + + Diversion of water + + Water diversion + + + + + + Water endangering + + + + + Water extraction + + + + + Water gardening + + + + + Water gardens + + + + + Water hardness + + + + + Water holes + + + + + + Water level + Refers to level of water in rivers, lakes, reservoirs, etc. Habitat alteration term. + + + + + + + Water management + + + + + + Water monitoring + + + + + Water pollutant + + + + Water contamination + + Water pollution + + + + Changes in natural water that may impair its use. Caused by introducing organic or inorganic substances, sewage, toxicmaterials, etc. + + + + + Water pollution prevention + + + + + + Water protection + + + + + + Water purification + + + + + + Water quality + + + + + + Water quality control + + + + Water quality management + + + + + Water recovery + + + + + + + Water reservoir + + + + + + + + + + Water resources development + + + + + + Water resources management + + + + Reclamation of water + Reuse of water + Waste water reclamation + Wastewater reclamation + Water reclamation + Water renovation + Water salvage + + + + Water reuse + + + + + + Water rights + + + + Rock-water interaction + + Water-rock interaction + + + + + + Water storage + Water-storage + + + + + + Water (substance) + + + + Water resources + + + + + + + + + + + + + + + + Water supply + Water-supply + + + + + + + Amount of water available. + Here are entered works on water resources both superficial and +underground, primarily for domestic, manufacturing, or agricultural +purposes. + + + + + Water systems + + + + Water table + + + + The upper limit or level in the ground of groundwater. + + + + + Water treatment + + + + Use of water + Utilization of water + Water utilization + + + Water use + + + + + For various uses of water. + + + + + Water utilities + + + + Cascades + Cataracts + + Waterfalls + + + + + Coastlines + Lakefronts + Riverfronts + Seashores + Shorefronts + Shorelines + Strands + Streamfronts + + + Waterfronts + + + + + For images that focus on land beside water, whether habited or uninhabited. + + + + + Waterlogged lands + + + + + Watershed management + Management of a watershed to protect and optimize water production. + + + + River basins + + + Watersheds + + + + + + + Waterside development + + + + + Waterspouts + + + + + + + + + + Waterways + + + + + + Waves + + + + Distribution of wealth + Fortunes + Riches + + Wealth + + + + + + + + + + + + + Weather + + + Short-term variations of the atmosphere (as distinguished from climate) in terms of temperature, humidity, precipitation, visibility,etc. + + + + + Weather conditions + + + + Artificial weather control + Modification of weather + + + + Weather control + + + + + + weather forcasting + + + + + + + Weather modification + + + + + Weather monitoring + + + + + + + Weathering + + + + + + Weed control + + + + + + Weeds + + + + + + + Weight + + + + Metric measures + + Weights & measures + + + + + + + Welfare housing + + + + Wellness + + + + + Wells + + + + Wetland farming + Wetlands agriculture + + Wetland agriculture + + + + + Wetland communities + + + + Wetlands ecology + + Wetland ecology + + + + Mitigation banking + Wetlands mitigation banking + + Wetland mitigation banking + Wetland mitigation banking is the process through which negotiated +development and permit approvals result in acquisition, protection, +creation or +restoration of natural wetlands and the process by which losses or gains +are recorded and monitored. + + + + Bogs + Marshes + Swamps + Tidal flats + + + + + + + + + + Wetlands + + + Lowlandsd covered with shallow and sometimes temporary or intermittent waters. Includes such areas as bogs, fens, carrs, swamps, sloughs, wet meadows, and potholes. + + + + + Wetlands ecosystems + + + + + + Whaling + Legal or illegal capture of whales. + + + + + Wharves + + + + + Wheat + Agricultural crop (damage by wildlife). + + + + White frost + + + + + + + + Wild and scenic river systems + Designated by Congressional action by the Wild and Scenic River Act of 1968. + + + + + Wild animals + + + + + Wild fauna + + + + + Wild genetic resources + + + + + Wild plants + + + + + Wild river areas + Rivers or section of rivers free of impoundments and generally inaccessible except by trail, with watersheds or shorelines essentially primitive and waters unpolluted. + + + + Wilderness + + Public or private land undeveloped and unroaded but not necessarily designated by legislation as being in a formal land protection category. + + + + + Wilderness areas + + Areas formally protected under Wilderness Preservation Act and subsequent related acts, as "an area where the earth and its community of life are untrammelled by man where man himself is a visitor who does not remain". More generally, an area established to conserve its primeval character. + + + + + Wildlife management areas + + + + + Wildlife research + + + + + + Wildlife resources + + + + + Wildlife restoration + + + + + Wildlife sanctuary + + + + Wind + + Winds + + + + + + Winter + + + + + + + + + Women + This heading may be further subdivided by the subdivisions used for classes of persons (Appendix A). Search also under other headings beginning with WOMEN or WOMEN'S. Search also under the subdivision --WOMEN used with names of ethnic, racial, and regional groups (Appendix A) and with names of wars (Appendix C). + + + + + Wood + + + + + Wood (timber) + + + + + Wood waste + + + + Woodcutters + + + + + + Woodland communities + + + + + Woodlands + + + + + + + Woody plants + + + + Blue collar (social class) + Commons (social order) + Laboring classes + Proletariat + + Working class + For the class of people who work for wages, excluding managers and professionals; generally at lower end of economic scale. + + + + + + Working conditions + + + + + Working dogs + + + + + Working environment + + + + + Workplace + + + + World government + + + + + World heritage site + + + + Injuries + Physical trauma + + Wounds & injuries + + + + + + + + Wreck + + + + + X-rays + Diagnostic images created with x-rays, such as Radiographs or Computed Tomography (CT scans). + + + + + Yield + + + + + Yield (agricultural) + + + + Young persons + + Young adults + + + + + For persons in the general age range of eighteen to twenty-five years. Search also under the subdivision --WOMEN used with ethnic, racial, and regional groups and with classes of persons (Appendix A). Search also under the subdivision --CHILDHOOD AND YOUTH used with names of persons (Appendix B). + + + + + + Youth + + + + + + + + Youth organizations + + Includes activities and structures. + + + + + Zip code areas + + + + + Zip codes + + + + Districting (in city planning) + + + + + Zoning + + + + + Zoo animals + + + + + + Zoological garden + + + + Animal kingdom + Beasts + Fauna + Wildlife + + + + + + + + + + + + Zoology + + + + + + Zooplankton + + + + Zoological gardens + Zoological parks + + Zoos + + + + + Zoological gardens or collections of living animals, usually for public display. + + diff --git a/modules/Makefile.am b/modules/bibclassify/etc/Makefile.am similarity index 77% copy from modules/Makefile.am copy to modules/bibclassify/etc/Makefile.am index 62d9142cc..9e32deb10 100644 --- a/modules/Makefile.am +++ b/modules/bibclassify/etc/Makefile.am @@ -1,22 +1,26 @@ ## $Id$ ## This file is part of the CERN Document Server Software (CDSware). ## Copyright (C) 2002, 2003, 2004, 2005 CERN. ## ## The CDSware is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## The CDSware is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDSware; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. -SUBDIRS = bibconvert bibedit bibharvest bibmatch bibsched bibindex bibrank bibupload bibformat elmsubmit miscutil webstyle websession webhelp webbasket webalert websearch websubmit webaccess webmessage webstat webcomment +etcdir = $(sysconfdir)/bibclassify -CLEANFILES = *~ +etc_DATA = CERESTheme.rdf + +EXTRA_DIST = $(etc_DATA) + +CLEANFILES = *~ *.tmp diff --git a/modules/bibclassify/lib/.cvsignore b/modules/bibclassify/lib/.cvsignore new file mode 100644 index 000000000..9638520ce --- /dev/null +++ b/modules/bibclassify/lib/.cvsignore @@ -0,0 +1,6 @@ +Makefile +Makefile.in +z_* +*.O +*~ +*.pyc \ No newline at end of file diff --git a/modules/Makefile.am b/modules/bibclassify/lib/Makefile.am similarity index 77% copy from modules/Makefile.am copy to modules/bibclassify/lib/Makefile.am index 62d9142cc..f06c0e3c2 100644 --- a/modules/Makefile.am +++ b/modules/bibclassify/lib/Makefile.am @@ -1,22 +1,26 @@ ## $Id$ ## This file is part of the CERN Document Server Software (CDSware). ## Copyright (C) 2002, 2003, 2004, 2005 CERN. ## ## The CDSware is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## The CDSware is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDSware; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. -SUBDIRS = bibconvert bibedit bibharvest bibmatch bibsched bibindex bibrank bibupload bibformat elmsubmit miscutil webstyle websession webhelp webbasket webalert websearch websubmit webaccess webmessage webstat webcomment +pylibdir = $(libdir)/python/cdsware -CLEANFILES = *~ +pylib_DATA = bibclassifylib.py + +EXTRA_DIST = $(pylib_DATA) + +CLEANFILES = *~ *.tmp *.pyc diff --git a/modules/bibclassify/lib/bibclassifylib.py b/modules/bibclassify/lib/bibclassifylib.py new file mode 100644 index 000000000..313e7a4e0 --- /dev/null +++ b/modules/bibclassify/lib/bibclassifylib.py @@ -0,0 +1,495 @@ +# -*- coding: utf-8 -*- +## +## This file is part of the CERN Document Server Software (CDSware). +## Copyright (C) 2002, 2003, 2004, 2005 CERN. +## +## The CDSware is free software; you can redistribute it and/or +## modify it under the terms of the GNU General Public License as +## published by the Free Software Foundation; either version 2 of the +## License, or (at your option) any later version. +## +## The CDSware is distributed in the hope that it will be useful, but +## WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with CDSware; if not, write to the Free Software Foundation, Inc., +## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. + +""" +Bibclassify keyword extractor command line entry point. +""" + +from marshal import loads,dumps +import getopt +import getpass +import string +import os +import sre +import sys +import time +import MySQLdb +import Numeric +import signal +import traceback + +# rdflib-2.2.3 +import rdflib + +from cdsware.config import * +from cdsware.bibindex_engine_config import * +from cdsware.dbquery import run_sql +from cdsware.access_control_engine import acc_authorize_action + +fontSize = [12, 14, 16, 18, 20, 22, 24, 26, 28, 30] + +def write_message(msg, stream=sys.stdout): + """Write message and flush output stream (may be sys.stdout or sys.stderr).""" + if stream == sys.stdout or stream == sys.stderr: + stream.write("BibClassify Message: ") + stream.write("%s\n" % msg) + stream.flush() + else: + sys.stderr.write("Unknown stream %s. [must be sys.stdout or sys.stderr]\n" % stream) + return + + +def usage(code, msg=''): + "Prints usage for this module." + if msg: + sys.stderr.write("Error: %s.\n" % msg) + usagetext = """ Usage: bibclassify [options] + + Examples: + bibclassify -f file.pdf -k thesaurus.txt -o TEXT + bibclassify -t file.txt -K ontology.rdf -m SLOW + + Specific options: + -f, --pdffile=FILENAME name of the pdf file to be classified + -t, --textfile=FILENAME name of the text file to be classified + -k, --thesaurus=FILENAME name of the text thesaurus (taxonomy) + -K, --ontology=FILENAME name of the RDF ontology + -o, --output=HTML|TEXT output list of keywords in either HTML or text + -n, --nkeywords=NUMBER max number of keywords to be found + -m, --mode=FAST|SLOW processing mode: FAST (run on abstract and selected pages), SLOW (run on whole document - more accurate) + + General options: + -h, --help print this help and exit + -V, --version print version and exit +""" + sys.stderr.write(usagetext) + sys.exit(code) + + +def generate_keywords(textfile, dictfile): + """ A method that generates keywords (a list in text format) from a text file thesaurus. """ + counter = 0 + keylist = [] + keyws = [] + wordlista = os.popen("more " + dictfile) + thesaurus = [x[:-1] for x in wordlista.readlines()] + for keyword in thesaurus: + try: + string.atoi(keyword) + except ValueError: + dummy = 1 + else: + continue + if len(keyword)<=1: #whitespace or one char - get rid of + continue + else: + dictOUT = os.popen('grep -iwc "' +keyword.strip()+'" '+textfile).read() + try: + occur = int(dictOUT) + if occur != 0: + keylist.append([occur, keyword]) + except ValueError: + continue + keylist.sort() + keylist.reverse() + + for item in keylist: + keyws.append(item[1]) + + return keyws + +def generate_keywords_rdf(textfile, dictfile, output, outwords, mode): + """ A method that generates keywords from an rdf thesaurus. """ + keylist = [] + keyws = [] + + counts = {} + entries = [] + + ns_skos = rdflib.Namespace("http://www.w3.org/2004/02/skos/core#") + ns_dc=rdflib.Namespace("http://purl.org/dc/elements/1.1/") + ns_rdf=rdflib.Namespace("http://www.w3.org/1999/02/22-rdf-syntax-ns#") + ns_concept=rdflib.Namespace("http://cain.nbii.org/thesauri/CERESTheme.rdf") + + store = rdflib.Graph() + store.load(dictfile) + + size = int(os.stat(textfile).st_size) + rtmp = open(textfile, 'r') + + if mode == 1: + # Fast mode: analysing only abstract + title + middle portion of document + # Abstract and title is never more than 20% of whole document. + text_string = str(rtmp.read(int(size*0.2))) + throw_away = str(rtmp.read(int(size*0.25))) + text_string += str(rtmp.read(int(size*0.2))) + + else: + # Slow mode: get all document + text_string = str(rtmp.read()) + + text_string = text_string.lower() + rtmp.close() + + try: + if text_string.find("keywords:"): + safe_keys = text_string.split("keywords:")[1].split("\n")[0] + elif text_string.find("key words:"): + safe_keys = text_string.split("key words:")[1].split("\n")[0] + except: + safe_keys = "" + + for s,pref in store.subject_objects(ns_skos["prefLabel"]): + dictOUT = 0 + dictOUT_alt = 0 + safeOUT = 0 + alternatives = " " + broaders = " " + narrowers = " " + relateds = " " + safekey = 0 + + pattern = '\\b' + pref.lower().strip() + '\\b' + dictOUT = len(sre.findall(pattern,text_string)) + safeOUT = len(sre.findall(pattern,safe_keys)) + + for alt in store.objects(s, ns_skos["altLabel"]): + pattern_alt = '\\b' + alt.lower().strip() + '\\b' + dictOUT_alt += len(sre.findall(pattern_alt,text_string)) + safeOUT += len(sre.findall(pattern_alt,safe_keys)) + + alternatives += alt.strip() + ", " + + + alternatives = alternatives[:-2] + dictOUT_total = int(dictOUT) + int(dictOUT_alt) + + if dictOUT_total>1: + if safeOUT>0: + safekey = safeOUT + for bro in store.objects(s, ns_skos["broader"]): + bro_link = store.value(bro, ns_skos["prefLabel"], any=True) + if bro_link: + broaders += bro_link.strip() + ", " + for nar in store.objects(s, ns_skos["narrower"]): + nar_link = store.value(nar, ns_skos["prefLabel"], any=True) + if nar_link: + narrowers += nar_link.strip() + ", " + for rel in store.objects(s, ns_skos["related"]): + rel_link = store.value(rel, ns_skos["prefLabel"], any=True) + if rel_link: + relateds += rel_link.strip() + ", " + broaders = broaders[:-2] + narrowers = narrowers[:-2] + relateds = relateds[:-2] + + keylist.append([dictOUT_total, dictOUT, dictOUT_alt, pref.strip(), alternatives, relateds, broaders, narrowers, safekey]) + + keylist.sort() + keylist.reverse() + + if output == 0: + details = "\n" + for i in range(outwords): + details += str(keylist[i][3]) + " ("+ str(keylist[i][0]) + if int(keylist[i][8])>0: + details += "*" + details += ")\n" + if len(str(keylist[i][4]))>1: + details += " UF (" + str(keylist[i][2]) + "):" + str(keylist[i][4]) + "\n" + if len(str(keylist[i][5]))>1: + details += " RT:" + str(keylist[i][5]) + "\n" + if len(str(keylist[i][6]))>1: + details += " BT:" + str(keylist[i][6]) + "\n" + if len(str(keylist[i][7]))>1: + details += " NT:" + str(keylist[i][7]) + "\n" + details += "\n" + print details + + else: + makeTagCloud(keylist, outwords) + + return keyws + +def makeTagCloud(entries, outwords): + """Using the counts for each of the tags, write a simple HTML page to + standard output containing a tag cloud representation. The CSS + describes ten levels, each of which has differing font-size's, + line-height's and font-weight's. + """ + + max = int(entries[0][0]) + print "" + print "" + print "Keyword Cloud" + print "" + print "" + print "" + print "" + + cloud_size = 80 + detail_size = outwords + details = "" + cloud = "" + cloud_list = [] + + if cloud_size > len(entries): + cloud_size = len(entries) + if detail_size > len(entries): + detail_size = len(entries) + + details += '
' + for i in range(0, detail_size): + if detail_size > 0: + detail_size -= 1 + details += "" + str(entries[i][3]) + " ("+ str(entries[i][0]) + if int(entries[i][8])>0: + details += "*" + details += ")
" + if len(str(entries[i][4]))>1: + details += "   UF (" + str(entries[i][2]) + "):" + str(entries[i][4]) + "
" + if len(str(entries[i][5]))>1: + details += "   RT:" + str(entries[i][5]) + "
" + if len(str(entries[i][6]))>1: + details += "   BT:" + str(entries[i][6]) + "
" + if len(str(entries[i][7]))>1: + details += "   NT:" + str(entries[i][7]) + "
" + details += "
" + details += '
' + + cloud += '
' + # Generate some ad-hoc count distribution + for i in range(0, len(entries)): + if cloud_size > 0: + cloud_size -= 1 + tag = str(entries[i][3]) + count = int(entries[i][0]) + color = int(entries[i][8]) + if count < (max/10): + cloud_list.append([tag,0,color]) + elif count < (max/7.5): + cloud_list.append([tag,1,color]) + elif count < (max/5): + cloud_list.append([tag,2,color]) + elif count < (max/4): + cloud_list.append([tag,3,color]) + elif count < (max/3): + cloud_list.append([tag,4,color]) + elif count < (max/2): + cloud_list.append([tag,5,color]) + elif count < (max/1.7): + cloud_list.append([tag,6,color]) + elif count < (max/1.5): + cloud_list.append([tag,7,color]) + elif count < (max/1.3): + cloud_list.append([tag,8,color]) + else: + cloud_list.append([tag,9,color]) + else: + continue + cloud_list.sort() + for i in range(0, len(cloud_list)): + cloud += ' 0: + cloud += 'style="color:red" ' + cloud += '> %s ' % cloud_list[i][0] + cloud += '
' + + key = '
Key:
UF Used For (alternative term)
RT Related Term
BT Broader Term
NT Narrower Term
(n*) Denotes author keyword
' + + print cloud + print key + print details + + print "
" + print "" + +def profile(t="", d=""): + import profile + import pstats + profile.run("generate_keywords_rdf(textfile='%s',dictfile='%s')" % (t, d), "bibclassify_profile") + p = pstats.Stats("bibclassify_profile") + p.strip_dirs().sort_stats("cumulative").print_stats() + return 0 + +def main(): + """Main function """ + + global options + long_flags =["pdffile=", "textfile=" + "thesaurus=","ontology=", + "output=","nkeywords=", "mode=", + "help", "version"] + short_flags ="f:t:k:K:o:n:m:hV" + format_string = "%Y-%m-%d %H:%M:%S" + outwords = 15 + input_file = "" + dict_file = "" + output = 1 + mode = 1 + temp_text = tmpdir + '/bibclassify.pdftotext.' + str(os.getpid()) + + try: + opts, args = getopt.getopt(sys.argv[1:], short_flags, long_flags) + except getopt.GetoptError, err: + write_message(err, sys.stderr) + usage(1) + if args: + usage(1) + + try: + for opt in opts: + if opt == ("-h","") or opt == ("--help",""): + usage(1) + elif opt == ("-V","") or opt == ("--version",""): + print "Version 0.1" + sys.exit(1) + + elif opt[0] in [ "-f", "--pdffile" ]: + if input_file=="": + cmd = "%s -nopgbrk -q " % pdftotext + opt[1] + " " + temp_text + errcode = os.system(cmd) + if errcode == 0 and os.path.exists("%s" % temp_text): + input_file = temp_text + else: + print "Error while running %s.\n" % cmd + sys.exit(1) + else: + print "Either text of pdf file in input" + sys.exit(1) + + elif opt[0] in [ "-t", "--textfile" ]: + if input_file=="": + input_file = opt[1] + else: + print "Either text of pdf file in input" + sys.exit(1) + + elif opt[0] in [ "-k", "--thesaurus" ]: + if dict_file=="": + dict_file = opt[1] + else: + print "Either a text thesaurus or an ontology (in .rdf format)" + sys.exit(1) + + elif opt[0] in [ "-K", "--ontology" ]: + if dict_file=="" and opt[1].find(".rdf")!=-1: + dict_file = opt[1] + else: + print "Either a text thesaurus or an ontology (in .rdf format)" + sys.exit(1) + + elif opt[0] in [ "-o", "--output" ]: + try: + if str(opt[1]).lower().strip() == "html": + output = 1 + elif str(opt[1]).lower().strip() == "text": + output = 0 + else: + write_message('Output mode (-o) can only be "HTML" or "TEXT". Using default output mode (HTML)') + except: + write_message('Output mode (-o) can only be "HTML" or "TEXT". Using default output mode (HTML)') + + elif opt[0] in [ "-m", "--mode" ]: + try: + if str(opt[1]).lower().strip() == "fast": + mode = 1 + elif str(opt[1]).lower().strip() == "slow": + mode = 0 + else: + write_message('Processing mode (-m) can only be "FAST" or "SLOW". Using default output mode (fast)') + except: + write_message('Processing mode (-m) can only be "FAST" or "SLOW". Using default output mode (fast)') + + elif opt[0] in [ "-n", "--nkeywords" ]: + try: + num = int(opt[1]) + if num>1: + outwords = num + else: + write_message("Number of keywords (-nkeywords) must be an integer higher than 1. Using default value of 15...") + + except ValueError: + write_message("Number of keywords (-n) must be an integer. Using default value of 15...") + + except StandardError, e: + write_message(e, sys.stderr) + sys.exit(1) + + if input_file == "" or dict_file == "": + write_message("Need to enter the name of an input file AND a thesaurus file \n") + usage(1) + + # Weak method to detect dict_file. Need to improve this (e.g. by looking inside the metadata with rdflib?) + if dict_file.find(".rdf")!=-1: + outcome = generate_keywords_rdf(input_file, dict_file, output, outwords, mode) + # profiling: + # profile(input_file, dict_file) + + else: # Treat as text + outcome = generate_keywords(input_file, dict_file) + if outwords > len(outcome): outwords = len(outcome) + if output == 0: + for i in range(outwords): + print outcome[i] + else: + print "" + print "" + print "Keywords" + print "" + print "" + print '
' + for i in range(outwords): + print "" + str(outcome[i]) + "
" + print '
' + print "
" + print "" + return + + +if __name__ == '__main__': + # profile("/home/apepe/temp/1bvcecuu6u0qrkgk.txt","/home/apepe/devel/semantic/rdfs/CERESTheme.rdf") + main() + + diff --git a/modules/webhelp/web/admin/index.html.wml b/modules/webhelp/web/admin/index.html.wml index 1b6184242..83cbc2f8f 100644 --- a/modules/webhelp/web/admin/index.html.wml +++ b/modules/webhelp/web/admin/index.html.wml @@ -1,399 +1,415 @@ ## $Id$ ## This file is part of the CERN Document Server Software (CDSware). ## Copyright (C) 2002, 2003, 2004, 2005 CERN. ## ## The CDSware is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## The CDSware is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDSware; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. #include "cdspage.wml" \ title="_(Admin Area)_" \ navbar_name="admin" \ navtrail_previous_links="" \ navbar_select="admin" Welcome to the Admin Area of the . You'll find here pointers to the available runtime admin-level interfaces and admin-level guides on how to configure and run the CDSware system.

CDSware comes as a suite of several more or less independent modules. You'll find brief descriptions for each admin module below. (More background information on each module may be read in the modules overview article.)

Admin HOWTO guides

Admin HOWTO Guides give you you both short and not-so-short recipes and thoughts on some of the most frequently encountered administrative tasks. They tend to answer various admin-level questions of a rather general level. The specific tasks are better addressed by module-specific guides and interfaces presented below.

Data acquisition related modules

The metadata input into a running CDSware system can be done in two ways: (i) admin-oriented batch mode, i.e. BibHarvest to get data from OAI repositories, BibConvert to convert any input data into XML MARC, and BibUpload to upload XML MARC files into CDSware; and (ii) author-oriented interactive mode, i.e. WebSubmit to submit documents via Web. Once the data are uploaded in CDSware, you may want to modify them via BibEdit to edit the metadata.
Admin Module Admin Description Admin Interface Admin Guide
BibHarvest Admin Enables you to configure OAI metadata harvestor for eventual periodical batch upload of data. For example, you can define from where to harvest, with what periodicity, how to transform data before uploading them into CDSware, etc. BibHarvest Admin Interface BibHarvest Admin Guide
BibConvert Admin Explains how to use bibliographic data convertor. Useful for batch upload of data. For example, when migrating the metadata from your old system, or when integrating metadata acquisitions from non-OAI sources, or just about any line-based not-so-well-structured metadata. command-line program BibConvert Admin Guide
BibUpload Admin Enables you to configure eventual local special operations to be done on the data being uploaded. command-line program BibUpload Admin Guide
WebSubmit Admin Enables you to configure the submit interface and logic for various document types. For example, you can define which metadata fields should be submitted for various doctypes, what to do with the inputted values before uploading, possible peer review and approval strategy, etc. WebSubmit Admin Interface WebSubmit Admin Guide
BibEdit Admin Enables you to directly manipulate bibliographic data, edit a single record, do global replacements, and other cataloguing tasks. BibEdit Admin Interface BibEdit Admin Guide

Data provision related modules

The metadata output from a running CDSware system to the end-user is covered by several modules: BibIndex to index the metadata, BibRank to eventually rank them, BibFormat to format them for the output, WebSearch to provide search interfaces and search engine. + + + + + + +
Admin Module Admin Description Admin Interface Admin Guide
BibIndex Admin Enables you to configure "word files", i.e. to define which bibliographic fields are indexed into which word indexes. The word indexes are then used by the search interface. For example, you can define that the logical author index is constructed from physical 100 $a and 700 $a bibliographic tags, you can force reindexing of the fulltext index, etc. BibIndex Admin Interface BibIndex Admin Guide
BibRank Admin Enables you to configure various ranking methods to be used by the search engine. You can rebalance existing ranking sets, create new ranking methods, etc. BibRank Admin Interface BibRank Admin Guide
+ BibClassify Admin + + Enables you to automatically classify documents according to + ontologies and keyword thesauri. + + BibClassify Admin Interface + + BibClassify Admin Guide +
BibFormat Admin Enables you to specify how the bibliographic data is presented to the end user in the search interface. You can decide that titles should be presented in bold font, that for each author an automatic link to author's home page should be created according to some receipt, etc. BibFormat Admin Interface BibFormat Admin Guide
WebSearch Admin Enables you to configure the search interface for various metadata collections. You can define new collections and organize them in the tree, you can define various portalboxes that would appear on the screen, you can define search options and search fields to present, etc. WebSearch Admin Interface WebSearch Admin Guide

Personalization related modules

The CDSware interface can be personalized to suit different needs of different end-users. This functionality is covered by several modules: WebSession to identify users and their personal configurations, WebBasket to provide personal baskets or document carts, and WebAlert to set up personal email notification alerts.
Admin Module Admin Description Admin Interface Admin Guide
WebSession Admin Enables you to inspect the status of guest sessions and to expire them; the status and details on registered users, etc. not available, but see the guide for the command-line way WebSession Admin Guide
WebBasket Admin Enables you to inspect and manipulate user baskets set up on the system, to make them public/private, etc. not available, but see the guide for the command-line way WebBasket Admin Guide
WebAlert Admin Enables you to inspect and manipulate user alerts set up on the system, to run the alert engine, etc. not available, but see the guide for the command-line way WebAlert Admin Guide
WebComment Admin Enables you to manipulate readers comments and reviews, see which ones were reported as abuse/spam, delete them, etc. WebComment Admin Interface WebComment Admin Guide

System glue modules

Modules that provide the necessary glue for those presented above are: BibSched to manage and schedule bibliographic tasks, WebAccess to define role-based access control system to all CDSware services, and WebStyle to define a common look and feel of CDSware web pages.
Admin Module Admin Description Admin Interface Admin Guide
BibSched Admin Enables you to inspect bibliographic task queue, to postpone or reschedule jobs, to make priorities, to run periodical tasks, etc. command-line program BibSched Admin Guide
WebAccess Admin Enables you to define who has got access or admin rights on various CDSware modules. For example, you can define that John is the bibliographic data manager, that Jim can modify the search interface pages, that Jill is the submission approval editor, etc. WebAccess Admin Interface WebAccess Admin Guide
WebStyle Admin Enables you to customize default CDSware page style and the CSS style sheet. not available, but see the guide for the command-line way WebStyle Admin Guide