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

1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | След.

Показаны документы, содержащие фрагменты текста из документа
http://www.sao.ru/precise/Midas_doc/doc/95NOV/vol1/node70.html.

1. Example
Next: Graphic and Image Up: Table File System Previous: Table Format Files . As an example of use of the table file system, we here describe the tutorial procedure executed via the TUTORIAL/TABLE command. ... The format of the catalogue is defined in the file ugc.fmt as follows: DEFINE/FIELD 9 20 R G11.6 :RA "HOUR" DEFINE/FIELD 21 32 R G11.6 :DEC "DEGREE" DEFINE/FIELD 33 44 R G11.6 :DB "ARC.MIN." ... PLOT/TABLE ugc :DR :DB ! ... SELECT/TAB ugc :BT.LT.13.5 ! ... PLOT/TAB ugc :BT :RV ! ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/precise/Midas_doc/doc/94NOV/vol1/node68.html -- 5.1 Кб -- 23.02.1996
Похожие документы

2. Dynamic HTML in Communicator
... The previous example, Chapter 12, "Expanding Colored Squares Example," illustrates how to expand and contract the clipping region of a layer without changing the wrapping width of the layer. This example illustrates how to capture mouse events so that the user can make a layer's wrapping width wider or narrower by dragging the mouse. ... how to capture mouse events for a layer . how to change the wrapping width of a layer by using the load() function . ... Capturing Events for the Layer . ...
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/~vab/html.doc/dhtml/dynhtml/layers38.htm -- 11.3 Кб -- 13.08.1997
Похожие документы

3. 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
Похожие документы

4. Pulsar Group PmWiki/Url Approvals
... PmWiki . ... Summary:Require approval of Url links:) This page explains how to discourage "link spamming" on your wiki site using PmWiki 's urlapprove.php script. ... allowing you to limit the number of unapproved links that may be added to a page. ... page. You can limit the number of unapproved links per page. ... To see what link is to be approved without editing the page a tool tip can be displayed when the cursor hovers over the (approve links) link that displays the URL. e.g. Example . ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/people/pulsar/index.html?n=PmWiki.UrlApprovals -- 19.0 Кб -- 01.03.2014
Похожие документы

5. OptInt PmWiki : Wiki Style Examples
OptInt PmWiki . Pm Wiki / . ... Wiki Style Examples . Wiki styles | ... PmWiki uses WikiStyles for styling text with color and other attributes. PmWiki 2.0 introduced the ability to control the styling further and to even place styles on blocks. ... In addition, an author can define a style "shortcut" by using the define= property. For example, to define a style of %red% , one can use: . define=mystyle color=red% Here is some %mystyle% red text created using a style shortcut. ...
[ Сохраненная копия ]  Ссылки http://www.mrao.cam.ac.uk/projects/OAS/pmwiki/pmwiki.php/PmWiki/WikiStyleExamples -- 32.2 Кб -- 28.02.2014
Похожие документы

6. Phil Plait's Bad Astronomy: Misconceptions
... Bad Astronomy . ... I think I will break from my usual format of Bad Astronomy/ Good Astronomy by saying that the way we define seasons currently is not strictly bad, but I feel (in my opinion!) that it could be better. The definition of when the seasons begin is at the moment of solstice or equinox; that is, winter (in the north) starts on December 22 nd and summer starts on June 22 nd . ... Now imagine breaking up the Sun's 46 degree up-and-down yearly swing into 1 day intervals. ...
[ Сохраненная копия ]  Ссылки http://www.badastronomy.com/bad/misc/badseasons.html -- 24.7 Кб -- 09.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>279) - www.badastronomy.com/ )

7. http://www.stsci.edu/institute/software_hardware/stsdas/relnotes/stsdas_v34_summary.txt
... A couple of new tasks have also been added; including, SAACLEAN to the NICMOS package, 'tweakshifts' to the DITHER package and a Python interface to SExtractor. Updated or New Tasks: ===================== 1. NEW TASKS: - 'tweakshifts' added to the DITHER package: This prototype version of 'tweakshifts' provides an automated interface for computing residual shifts between input exposures being combined using MultiDrizzle or PyDrizzle. ... Changes to CALSTIS: - Updated to Version 2.19. ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/institute/software_hardware/stsdas/relnotes/stsdas_v34_summary.txt -- 8.1 Кб -- 02.08.2012
Похожие документы

8. Doug Burke's Perl/S-Lang pages: Datatype examples
... Doug's Home Page . ... In the examples below we show a number of ways that data can be moved back and forth between S-Lang and Perl . ... Source code typeof : "undef"; __END__ __SLang__ variable foo = Any_Type [3]; foo[0] = "a string"; foo[1] = 23; define getfoo(x) { return foo[x]; } message( "In S-Lang:" ); vmessage( "typeof(foo[0]) = %s", string(typeof(foo[0])) ); vmessage( "typeof(foo[1]) = %s", string(typeof(foo[1])) ); vmessage( "typeof(foo[2]) = %s", string(typeof(foo[2])) ); . ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~dburke/perl-slang/examples_datatypes.html -- 12.1 Кб -- 02.10.2012
Похожие документы

9. Zen: Thesaurus dictionary
... Prefered term (PT) - is the term selected among synonyms to be the one used for indexing and retrieval purposes. ... TZ uses subdictionary (should be defined in tsearch2 configuration) to normalize thesaurus text. ... For example, consider thesaurus (with simple subdictionary) rules with pattern 'swsw' ('s' designates stop-word and 'w' - known word): a one the two : swsw the one a two : swsw2 . ... Dictionary="en_stem" defines dictionary (snowball english stemmer) to use for thesaurus normalization....
[ Сохраненная копия ]  Ссылки http://www.sai.msu.su/~megera/wiki/Thesaurus_dictionary -- 12.5 Кб -- 10.04.2016
Похожие документы

10. pyQC: Python 2.6.2
... new: . ... Python 2.6.2 + most up-to-date modules (December 2009) . ... pyQC script structure . ... The current installation of python and its associated modules on our DFO machines is extremely old (i.e. python 2.4.2 was released in Sept. ... The new python executable lives in: /qcdp/bin/python . ... The first figure shows the execution times for the old python installation, while the second figure shows the execution times based on scripts running the python 2.6.2 installation with the new modules...
[ Сохраненная копия ]  Ссылки http://www.eso.org/~qc/tqs/pyqc/python_2.6.2.html -- 13.7 Кб -- 18.12.2009
Похожие документы

11. http://xmm.vilspa.esa.es/sas/6.0.0/doc/lcplot/ChangeLog
... Documentation also updated. ... The documentation has consequently been updated. ... SSC- SPR -1530 lcplot ( version 1.7): When testing the input file format check, the error message is not well adapted SSC- SPR -1531 lcplot ( version 1.7): when output file already exists, lcplot always overwrite it SSC- SPR -1532 lcplot ( version 1.7): the variance is computed by dividing by n : the number of elements as it should be n-1 Version 1.7 09-02-00 -------------------- - Version in...
[ Сохраненная копия ]  Ссылки http://xmm.vilspa.esa.es/sas/6.0.0/doc/lcplot/ChangeLog -- 7.6 Кб -- 25.07.2002
Похожие документы

12. Configuration Files - Apache HTTP Server
... Apache HTTP Server Version 2.4 . ... Apache HTTP Server is configured by placing directives in plain text configuration files. ... The server also reads a file containing mime document types; the filename is set by the TypesConfig directive, and is mime.types by default. httpd configuration files contain one directive per line. ... The server administrator further controls what directives may be placed in .htaccess files by configuring the AllowOverride directive in the main configuration files. ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/manual/fr/configuring.html -- 18.1 Кб -- 19.11.2015
Похожие документы

13. Simon's Software - howto 1-3
a. Decide on the root directory where your software is going to go.... [/home/friday] , for example. b. In your .cshrc file, define . setenv OSROOT /home/friday . ... Holder for object libraries . ... Holder for shared source code (f77 include files) . ... Collect the appropriate tar files from Simon's Software Store . ... build - extract fortran from the source library, compile source, pack object code into object libary . ... clean - remove source and object files from library folder . ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/~csj/software_store/install_frameset/Howto_install_f.html -- 4.7 Кб -- 02.06.2003
Похожие документы
Еще в разделе: (Показать все результаты (>2546) - star.arm.ac.uk/ )

14. telescope cycles by year
... The tension in members of the telescope changes as we move the dome, ch, azimuth, and tiedown tensions. The lifetime of a beam is counted in the number of times the change in tension goes through a cycle. ... Examples of telescope motion with corresponding unbalanced moment. ... The number of cycles were computed for : 5000, 10000, 15000, 20000 kipFeet momemnt change. ... The number of cycles on the telescope was computed using the change in the unbalanced moment (at a corner). ... cycles . ...
[ Сохраненная копия ]  Ссылки http://www.naic.edu/~phil/hardware/telescope/unbalanced_moment_cycles_by_yr.html -- 15.2 Кб -- 02.03.2011
Похожие документы
Еще в разделе: (Показать все результаты (>3813) - www.naic.edu/ )

15. lsst.tcc: include/tcc/tcsShim.h Source File
lsst.tcc љ 1.2.2-3-g89ecb63 . ... Files . ... include . tcc . tcsShim.h . ... 51 љ double const FL = 1.0; . ... 97 љ std::ostream & operator<< (std::ostream &os, ASTROM const &astrom); . ... 99 љ std::ostream & operator<< (std::ostream &os, FLDOR const &fldor); . ... 101 љ std::ostream & operator<< (std::ostream &os, PORIG const &porig); . ... 103 љ std::ostream & operator<< (std::ostream &os, SITE const &site); . ... 105 љ std::ostream & operator<< (std::ostream &os, TARG const &targ); . ...
[ Сохраненная копия ]  Ссылки http://www.apo.nmsu.edu/Telescopes/TCC/html/tcs_shim_8h_source.html -- 27.6 Кб -- 14.09.2015
Похожие документы

16. 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
Похожие документы

17. Changing your default printer
Most likely you can choose which type of printer to print your file(s) on. Your computing service may provide colour printers, plotters and laser printers as well as simple line printers. Each printer will have its own unique name. When you print a file it is sent to the default printer that is defined by the value of your PRINTER environment variable . ... To change your default printer, change the value of this environment variable to the name of the printer that you want to use. ...
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/tasks/lpr2.1.html -- 2.2 Кб -- 17.01.1997
Похожие документы

18. The Face on Mars
The Face on Mars . ... The Raw Images . Table 1: List of Viking Orbiter Images of the "Face on Mars" . ... Processing the Face Images . Table 2: Dimensions of Mercator Projected Images of "The Face on Mars" . Map Projected Images . ... Processing the "Face on Mars" Images . ... This page will provide interested persons with both the raw Viking images, transformed to GIF format, and a brief tutorial (with examples) of image processing techniques applied to create "better looking" images. ...
[ Сохраненная копия ]  Ссылки http://www.iki.rssi.ru/solar/eng/face.htm -- 12.7 Кб -- 15.10.1997
Похожие документы

19. Stellarium: core/StelSphereGeometry.hpp File Reference
Stellarium 0.12.3 . ... FileљStructure . FileљList . ... core . ... StelSphereGeometry.hpp File Reference . ... operator<< (QDataStream &out, const SphericalRegionP &region) . ... boolљ . sideHalfSpaceContains (const Vec3d &v1, const Vec3d &v2, const Vec3d &p) . ... greatCircleIntersection (const Vec3d &p1, const Vec3d &p2, const Vec3d &p3, const Vec3d &p4, bool &ok) . ... greatCircleIntersection (const Vec3d &p1, const Vec3d &p2, const Vec3d &nHalfSpace, bool &ok) . ... const Vec3d &љ . ...
[ Сохраненная копия ]  Ссылки http://astro.uni-altai.ru/~aw/stellarium/api/StelSphereGeometry_8hpp.html -- 28.7 Кб -- 28.02.2014
Похожие документы

20. 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
Похожие документы

1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | След.


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

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

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