|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3080 ] | RTI |
---|---|
Organisation name | Research Triangle Institute |
Short name or acronym | RTI |
Organisation type | Not-for-Profit Research Lab |
Activity type | Technology Assisted Learning |
Address | 3040 Cornwallis Road |
Postal Code | 27709 |
City | Research Triangle Park, NC |
Country | United States |
Phone | + 919-541-8707 |
Fax | + 919-541-6965 |
cig_(on)_rti.org | |
Organisation URL | http://www.rti.org/vr |
Logo | Description |
![]() |
Since 1994, RTI has pioneered the application of advanced computer technologies and performance-based training strategies to adult learning. We apply the benefits of technology to help people learn safely and effectively, so that they retain skills and achieve proficiency less expensively. RTI develops learning materials, presents and distributes these materials in learning environments, and measures the effectiveness of materials. At RTI, we create applications that allow students to "learn by doing," using realistic, interactive environments. Because we have developed and fielded more interactive, 3-D simulation training than anyone in the world, our clients assume less development risk. Our portfolio of advanced technologies includes virtual reality, computer-generated personalities, and photo-realistic scene-rendering techniques to create applications that allow users to learn in a variety of environments. |
Contact | |
Name | Dr. Curry Guinn |
Function | Research Engineer |
Department | Technology Assisted Learning |
cig_(on)_rti.org | |
Phone | + 919-541-8707 |
Fax | + 919-541-6965 |
![]() |
Last update: 2002-08-16 18:52:56 #!/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" |