Astronet Поиск по астрономическим сайтам English Russian
       
        Точная форма слов   О проекте   Сайты   Справка
Найдено документов: 104079 (89 сайтов) ---- Время поиска: 0.49сек.   

1 | 2 | 3 | 4 | 5 | След.

Показаны документы, содержащие фрагменты текста из документа
http://www.atnf.csiro.au/people/mcalabre/WCS/wcslib/wcslib_8h_source.html.

1. casacore: casa::Fallible< T > Class Template Reference
... casa::Fallible< T > . ... More... #include < Fallible.h > . ... Fallible (const T &value) . ... References casa::Fallible< T >::isValid_p . ... References casa::Fallible< T >::isValid_p , and casa::Fallible< T >::value_p . ... Referenced by casa::Fallible< T >::isValid() , casa::Fallible< T >::operator T() , casa::Fallible< T >::operator=() , and casa::Fallible< T >::value() . ... Referenced by casa::Fallible< T >::operator T() , casa::Fallible< T >::operator=() , and casa::Fallible< T >::value() . ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/casacore/casacore-1.2.0/doc/html/classcasa_1_1Fallible.html -- 24.9 Кб -- 14.02.2011
Похожие документы

2. The C Preprocessor
... Preprocessor Compiler Control . ... This directive includes a file into code. ... include <file> or #include ``file'' . ... As another example if running program on MSDOS machine we want to include file msdos.h otherwise a default.h file. ... This is most often used with programs that translate other languages to C. For example, error messages produced by the C compiler can reference the file name and line numbers of the original source files instead of the intermediate C (translated) source files. ...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/book/c_marshall/node14.html -- 11.1 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/book/c_marshall/node14.html -- 11.1 Кб -- 02.10.2012
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/book/c_marshall/node14.html -- 11.1 Кб -- 02.10.2012
Похожие документы

3. lsst.tcc: include/tcc/basics.h Source File
lsst.tcc љ 1.2.2-3-g89ecb63 . ... Files . ... include . tcc . basics.h . ... 3 љ Basic definitions. ... 6 љ The units used are degrees and seconds, . ... 33 љ RotType_Begin = 0, // invalid value used for range checking . ... 38 љ RotType_Mount = 4, // angle of rotator w.r.t. its mount, in controller units, with no wrap . 39 љ RotType_End = 4 // invalid value used for range checking . ... 48 љ WrapType_Begin = -1, // invalid value used for range checking . ... Definition: basics.h:99 . ...
[ Сохраненная копия ]  Ссылки http://www.apo.nmsu.edu/Telescopes/TCC/html/basics_8h_source.html -- 43.8 Кб -- 14.09.2015
Похожие документы

4. http://hea.iki.rssi.ru/conf/hea2007/list/index.php~
... selected="selected"' : ''; $menu .= '<option value="' . ... SERVER['REQUEST_URI'],$trans)); return $urls[0]; } /* get the internal configuration */ global $ cfg ; /* check if we been asked to render a feed */ $ feed = get_get(' feed ',NULL); /* check if we been asked to render a PDF */ $pdf = get_get('pdf',NULL); $ templates = array(); $output = ''; $ file = get_post('db',NULL); if (!$ file ) $ file = get_get('db',Property::get($ cfg ['config'],'default')); /* if the request does not ask for a...
[ Сохраненная копия ]  Ссылки http://hea.iki.rssi.ru/conf/hea2007/list/index.php~ -- 9.7 Кб -- 11.09.2007
Похожие документы

5. mod_charset_lite - Apache HTTP Server
... Apache HTTP Server Version 2.2 . Apache > HTTP Server > Documentation > Version 2.2 > Modules . ... Specify character set translation or recoding . ... charset_lite_module . ... mod_charset_lite allows the server to change the character set of responses before sending them to the client. ... CharsetDefault . ... The character set name parameters of CharsetSourceEnc and CharsetDefault must be acceptable to the translation mechanism used by APR on the system where mod_charset_lite is deployed. ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/manual/de/mod/mod_charset_lite.html -- 15.4 Кб -- 21.01.2013
Похожие документы

6. Stellarium: core/renderer/StelGLUtilityFunctions.hpp Source File
Stellarium 0.12.3 . ... Renderer . FileљStructure . ... core . ... StelGLUtilityFunctions.hpp . ... 42 љ inline GLint glAttributeType( const AttributeType type) . ... 46 љ case AttributeType_Vec2f: . ... 49 љ return GL_FLOAT; . ... 68 љ inline const char * glslAttributeName( const AttributeInterpretation interpretation) . ... 72 љ case AttributeInterpretation_Position: return "vertex" ; . ... 267 љ inline bool glTextureSizeWithinLimits( const QSize size, const TextureDataFormat format) . ...
[ Сохраненная копия ]  Ссылки http://astro.uni-altai.ru/~aw/stellarium/api/StelGLUtilityFunctions_8hpp_source.html -- 40.3 Кб -- 28.02.2014
Похожие документы

7. Apache module mod_usertrack
This module uses cookies to provide for a clickstream log of user activity on a site. ... In Apache 1.2 and later this module has been renamed the "user tracking" module, mod_usertrack. ... Instead, a configurable log format file should be used to log user click-streams. ... When used, this directive determines whether the cookie used for user tracking is created using the default ("normal") format (eg: decimal values for items like the PID) or using a more compact format (eg: hexidecimal values). ...
[ Сохраненная копия ]  Ссылки http://neptun.sai.msu.su/manual/mod/mod_usertrack.html -- 13.3 Кб -- 01.08.2003
Похожие документы

8. Including text in a shell script
Text can be included in the shell script by using a here document, a special form of input redirection. The << symbol is used to indicate that text should be read up to a given mark. For example: #!/bin/sh # this script outputs the given text before it runs cat << EOF This shellscript is currently under development, please report any problems to Danny (danny@cornflake.ed) EOF exec /usr/local/test/bin/test_version . ...
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/scrpt/scrpt2.7.2.html -- 2.2 Кб -- 17.01.1997
Похожие документы

9. Simulation of HST PSFs using Tiny Tim
... Tiny Tim has been used for generating Hubble Space Telescope ( HST ) point-spread functions (PSFs) for deconvolution, algorithm testing, proposal planning, and optical studies. ... Tiny Tim is a stand-alone program for simulating HST PSFs as viewed with the on-board imaging cameras (WF/PC-1, WFPC2, FOC, COSTAR/FOC). ... The measured aberrations for FOC f/96, WF/PC-1 PC6, WFPC2, and COSTAR/FOC are used by Tiny Tim . ... Figure: FOC f/96 observed and Tiny Tim model PSFs (pre-COSTAR) at 253 nm. ...
[ Сохраненная копия ]  Ссылки http://www.adass.org/adass/proceedings/adass94/kristj.html -- 10.1 Кб -- 03.11.2000
Похожие документы

10. Table Filtering
This document contains a summary of the user interface for filtering rows in binary tables. Table filtering allows a program to select rows from an table (e.g., X-ray event list) by checking each row against one or more expressions involving the columns in the table. When a table is filtered, only valid rows satisfying these expressions are passed through for processing. ... select rows whose pha value is exactly 10 . ... 10 pha select rows whose pha value is in the range of 10 to 50 . ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/RD/funtools/filters.html -- 11.3 Кб -- 01.10.2012
Похожие документы

11. http://www.astro.louisville.edu/software/sbig/archive/xmccd-4.1/xmccd-4.1e/libcfitsio/libcfitsio/winDumpExts.mak
Microsoft Developer Studio Generated NMAKE File, Based on winDumpExts.dsp !IF "$(CFG)" == "" CFG=Win32 Debug !MESSAGE No configuration specified. ... Release INTDIR=.\ ... Release # End Custom Macros ALL : $( OUTDIR )\ winDumpExts.exe CLEAN : -@ erase $( INTDIR )\vc60.idb -@ erase $( INTDIR )\winDumpExts.obj -@ erase $( OUTDIR )\ winDumpExts.exe $( OUTDIR ) : if not exist $( OUTDIR )/$(NULL) mkdir $( OUTDIR ) $( INTDIR ) : if not exist $( INTDIR )/$(NULL) mkdir $( INTDIR ) ...
[ Сохраненная копия ]  Ссылки http://www.astro.louisville.edu/software/sbig/archive/xmccd-4.1/xmccd-4.1e/libcfitsio/libcfitsio/winDumpExts.mak -- 5.2 Кб -- 25.10.2006
Похожие документы

12. Appendix B: Changes from CSS1
... B.1 New functionality . ... B.3 Semantic changes from CSS1 . ... CSS2 builds on CSS1 and all valid CSS1 style sheets are valid CSS2 style sheets. The changes between the CSS1 specification (see [CSS1] ) and this specification fall into three groups: new functionality, updated descriptions of CSS1 functionality, and changes to CSS1. ... Several internationalization features, including list numbering styles , support for bidirectional text , and support for language-sensitive quotation marks . ...
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/~vab/html.doc/css2/changes.html -- 9.0 Кб -- 12.05.1998
Похожие документы

13. Making backups with tar
Next: Restoring files with tar Up: Simple backups Previous: Simple backups . A full backup can easily be made with tar љ : # tar -create -file /dev/ftape /usr/src . ... If your backup doesn't fit on one tape, you need to use the -multi-volume ( -M ) option: # tar -cMf /dev/fd0H1440 /usr/src . ... usr/src/ . ... usr/src/linux-1.2.10-includes/ .. ... An incremental backup can be done with tar љ using the -newer ( -N ) option: # tar -create -newer '8 Sep 1995' -file /dev/ftape /usr/src -verbose . ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/sag-0.4/node85.html -- 6.2 Кб -- 04.05.1997
Похожие документы

14. Examples of data contained in the JPDOC
Next: Silicate minerals Up: A Database of Optical Previous: Database of Optical Properties . ... If necessary, data have been determined for the different crystallographic axes. ... In the following we give some examples of the data and their possible applications. Table: Summary of data measured in the Jena laboratory, which are currently available from the JPDOC. compound . ... amorph. ... Next: Silicate minerals Up: A Database of Optical Previous: Database of Optical Properties root 2003-03-06 ...
[ Сохраненная копия ]  Ссылки http://www.astro.spbu.ru/DOP/5-OPTC/JPDOC2/node6.html -- 10.1 Кб -- 19.11.2010
Похожие документы
Еще в разделе: (Показать все результаты (>195) - www.astro.spbu.ru/ )

15. Radioastrophysical department ISTP RAS SB
RADIOASTROPHYSICAL DEPARTMENT  INSTITUTE OF SOLAR-TERRESTRIAL PHYSICS RAS SB . ... Radioastrophysical Department , Institute of Solar-Terrestrial Physics, Siberian Division, Russian Academy of Science. ... Head of Laboratory dr. Gubin A.V. LABORATORY of INFORMATION SUPPLY and METHODOLOGY of RESEARCH . ... Head of Observatory Kitsanov S.V. SIBERIAN SOLAR RADIO TELESCOPE . Siberian solar radio telescope data at 5.7 GHz in I SOHO EIT 171 SOHO EIT 195 SOHO EIT 304 MDI Continuum MDI Magnetogram . ...
[ Сохраненная копия ]  Ссылки http://ssrt.iszf.irk.ru/ -- 20.8 Кб -- 09.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>29) - ssrt.iszf.irk.ru/ )

16. Symbolic circuit processor
... All circuit parameters have been presented in a symbolic form. ... To use the program you will need a CIR file (PSpise, DesignLab file) of your circuit. CIR file examples have been enclosured: bpasside.cir, test1.cir, test2.cir, test3.cir, test4.cir, laksamp.cir, bridge.cir, uA741acf.cir, quartz.cir. ... Ideal operational amplifier (nullor) * Nname n1 n2 n3 n4 * * In the ideal op amp data, (n1,n2) represent output nodes, * (n3,n4) represent input nodes (noninverting, inverting). ...
[ Сохраненная копия ]  Ссылки http://astrometric.sai.msu.ru/~symbol/cirsym.html -- 4.4 Кб -- 06.10.2004
Похожие документы
Еще в разделе: (Показать все результаты (>10) - astrometric.sai.msu.ru/ )

17. ASP: ASP Conference Series to Include Free Electronic Access
home news . SEARCH ASP SITE: Match ALL words Match ANY word . ... Beginning in 2005, all conference proceedings published by the ASP Conference Series during 2004, and all future volumes, will include full text electronic access. ... Visit the e-Books site for select free preview volumes . ... Organizers of upcoming conferences who wish more information about publishing their proceedings through the ASP Conference Series should contact Interim Managing Editor J. Ward Moody at jmoody@byu.edu . ...
[ Сохраненная копия ]  Ссылки http://www.astrosociety.org/news/ebooks.html -- 11.2 Кб -- 03.01.2012
Похожие документы

18. Gliese 876 System Includes Large Terrestrial Planet
... NASA Web Site Statements, Warnings, and Disclaimers . NASA Official: Jay Norris. ... A service of: LHEA at NASA / GSFC . ... Publications with keywords: planets - Earth - Gliese 876 . Publications with words: planets - Earth - Gliese 876 . ... Hurricane Paths on Planet Earth . A Dark Earth with a Red Sprite . Happy People Dancing on Planet Earth . Looking Back at an Eclipsed Earth . ... All the Water on Planet Earth . ... All publications on this topic >> ...
[ Сохраненная копия ]  Ссылки http://www.astronet.ru/db/xware/msg/1206269/gj876_cook.jpg.html -- 13.4 Кб -- 12.10.2011
Похожие документы

19. Amateur Telescope Makers of Boston
... GIANT Magellan Telescope . Dr. Dan Fabricant . ... The Giant Magellan Telescope (GMT) is a 25 meter diameter optical-infrared telescope that will be sited in Chile. ... Dr. Fabricant, a leader in the design of new instruments for optical astrophysics, led the development of the optical and instrument design for the Multiple Mirror Telescope (MMT) in Arizona. ... Copyright (c) Amateur Telescope Makers of Boston, Inc. ...
[ Сохраненная копия ]  Ссылки http://www.atmob.org/events/clubmeetings.php?id=79 -- 10.1 Кб -- 10.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>257) - www.atmob.org/ )

20. Cairo
Cairo, Egypt . Cairo is the capital of Egypt and the largest city in the Middle East. Although Cairo itself is only about 1,000 years old, parts of the metropolis date back to the time of the Pharaohs. ... In the 19th century, one of the city's rulers, Khedive Ismail (1863-1879), sought to transform Cairo into a European- style city. ... Although a housing crisis has been broadcast by the international news media, it is estimated that Cairo may have a surplus of some 1 million housing units. ...
[ Сохраненная копия ]  Ссылки http://edu.zelenogorsk.ru/eprojects/city/cair_eng.htm -- 4.7 Кб -- 12.05.2002
Похожие документы
Еще в разделе: (Показать все результаты (>20) - edu.zelenogorsk.ru/ )

1 | 2 | 3 | 4 | 5 | След.


Астронет | Научная сеть | ГАИШ МГУ | Поиск по МГУ | О проекте | Авторам

Комментарии, вопросы? Пишите: info@astronet.ru или сюда

Rambler's Top100 RFBR Яндекс цитирования