|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3017 ] | ICNC |
---|---|
Organisation name | Institute of the Czech National Corpus |
Short name or acronym | ICNC |
Organisation type | University department |
Activity type | linguistics, Faculty of Arts |
Address | nam. J. Palacha 2 |
Postal Code | 100 00 |
City | Prague 1 |
Country | Czech Republic |
Phone | + 00420-2-21619357 |
Fax | + 00420-2-21619382 |
ucnk-l_(on)_ff.cuni.cz | |
Organisation URL | http://ucnk.ff.cuni.cz |
Logo | Description |
The Institute takes care of data collection and subsequent treatment to make it into a public, non-commercial set of corpora, called Czech National Corpus. It includes, by 2002, a 100 million representative corpus of written contemporary Czech. While much more is to appear soon, also smaller corpora of the spoken language are being prepared (Prague Spoken Corpus having been made available already) as well as diachronic corpora. The department develops its own methodology, offers some teaching classes and provides for the nation-wide access to our corpora, including schools. It is also a primary centre of corpus research in the country, aiming at some major applications as well, such a new frequency dictionary. The ICNC is run on the basis of state grants. | |
Contact | |
Name | PhDr Vera Schmiedtova |
Function | deputy director |
Department | see above |
ucnk-l_(on)_ff.cuni.cz | |
Phone | + see above |
Fax | + |
Update this profile | Last update: 2002-04-15 18:17:25 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |