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

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

Показаны документы, содержащие фрагменты текста из документа
http://www.naic.edu/alfa/galfa/meetings/1/talks/putman_files/text13.htm.

1. OPB Tools Maintenance Notes
... The code for all of our tools is maintained in a CVS library. ... PLib is a CVS library.) ... Once you have CVSROOT defined, cd to a good local working directory (e.g. /data/hera1/royle) and type: cvs checkout bin . ... To do this, cd to the parent directory of your bin directory and type: cvs commit -m "A short comment about what changed." bin . ... If you made changes to several file but you only want to commit a particular file's change, type: cvs commit -m "your comment" bin/your_file . ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/ops/maintenance-notes.html -- 6.6 Кб -- 04.11.2014
Похожие документы

2. Slide 21
. First page Back Continue Last page Summary Graphics .
[ Сохраненная копия ]  Ссылки http://www.naic.edu/alfa/galfa/meetings/1/talks/putman_files/text20.htm -- 1.9 Кб -- 06.05.2003
Похожие документы
Еще в разделе: (Показать все результаты (>6000) - www.naic.edu/ )

3. MIDAS And the Host Operating System
Next: MIDAS Data Structures Up: Monitor and Command Previous: Starting the MIDAS . Care has been taken that MIDAS and the Host Operating System (DCL for VMS and Bourne or C-shell for Unix) co--exist smoothly and complement each other. ... Since images, tables, etc. are standard disk files, all host commands related to file operations can be employed. ... The output љ from MIDAS commands can be redirected to ASCII files enabling easy combination of MIDAS and host commands. ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/precise/Midas_doc/doc/95NOV/vol1/node26.html -- 7.5 Кб -- 23.02.1996
Похожие документы

4. Programming in C
... The types of arguments which may be passed from one routine to the other, whether the called routines are written in C or Fortran, are: Fortran C ----------------- ------ CHARACTER fchar COMPLEX complex DOUBLE PRECISION double INTEGER fint LOGICAL bool REAL float The non-C types in this table are all defined in include file gipsyc.h , so each C program or function must include this file (after the standard C include files but before the definition files). ... INTEGER II(..) fint ii_c(.. ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/gipsy/pguide/clanguage.html -- 5.8 Кб -- 16.01.2009
Похожие документы

5. Environment Monitoring Information Systems
... SMIS : Space Monitoring Information Support laboratory . Russia's Weather : State Meteorological Center Weather Forecast . Space Weather service : ACE real time solar wind data and simple geomagnetic activity forecast. ... World Fire Web : Space Research Institute (IKI) node . Sputnik : Joint project of SRC Planeta, Rosgidromet and Space Research Institute (IKI) . ... Today's Space Weather : Presented by the Space Environment Center . ... Back to the Space Research Institute Home Page ...
[ Сохраненная копия ]  Ссылки http://www.iki.rssi.ru/monitoring/monitor.html -- 3.6 Кб -- 29.08.2001
Похожие документы
Еще в разделе: (Показать все результаты (>742) - www.iki.rssi.ru/ )

6. Apache module mod_cgi
This module provides for execution of CGI scripts. ... Module Identifier: cgi_module Any file that has the mime type application/x-httpd-cgi or handler cgi-script (Apache 1.1 or later) will be treated as a CGI script, and run by the server, with its output being returned to the client. ... Debugging CGI scripts has traditionally been difficult, mainly because it has not been possible to study the output (standard output and error) for scripts which are failing to run properly. ... Status: mod_cgi . ...
[ Сохраненная копия ]  Ссылки http://neptun.sai.msu.su/manual/mod/mod_cgi.html -- 9.9 Кб -- 01.08.2003
Похожие документы

7. Observational Techniques: Computer Notes
The aim of this section of the course is to enable you to use simple computer programs to solve a variety of common astronomical tasks. ... I have (somewhat arbitrarily) decided to use Python for this course, because it seems to be gaining popularity fast for astronomical data handling, and because some of you will have encountered it at the ATNF course. ... We've put Python (plus all relevant libraries) on the Stromlo Linux computers moron and maggot. ... Now log in to moron (or maggot). ...
[ Сохраненная копия ]  Ссылки http://www.mso.anu.edu.au/pfrancis/ObsTech/computers.html -- 4.9 Кб -- 02.10.2012
Похожие документы

8. mod_actions - Apache HTTP Server
... Apache HTTP Server Version 2.4 . Apache > HTTP Server > Documentation > Version 2.4 > Modules . ... Execute CGI scripts based on media type or request method. ... actions_module . ... The Action directive lets you run CGI scripts whenever a file of a certain MIME content type is requested. ... Action . ... Action action-type cgi-script [virtual] . ... Script method cgi-script . ... This directive adds an action, which will activate cgi-script when a file is requested using the method of method . ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/manual/ru/mod/mod_actions.html -- 13.0 Кб -- 19.11.2015
Похожие документы

9. Marker Analysis Routines in SAOtng
As described elsewhere, each file type known to SAOtng can have user-defined analysis commands associated with it. ... A help line describing the file types . ... If more than one marker analysis file is supplied to SAOtng via the -manalysis command switch (or the SAOTNG_MANAL environment variable), then the user can specify how to present marker analysis routines in the marker analysis menu using the -analformat command line option (or the SAOTNG_ANALFORMAT environment variable). ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/RD/saotng/manalysis.html -- 4.3 Кб -- 01.10.2012
Похожие документы

10. Further Data Types
... Defining New Data Types . Unions . ... Static Variables . ... struct gun { char name[50]; int magazinesize; float calibre; }; struct gun arnies; . ... struct gun { char name[50]; int magazinesize; float calibre; } arnies; . ... typedef struct gun { char name[50]; int magazinesize; float calibre; } agun; agun arnies={"Uzi",30,7}; . ... stat() { int auto_var = 0; static int static_var = 0; printf( ``auto = %d, static = %d n'', auto_var, static_var); ++auto_var; ++static_var; } . ...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/book/c_marshall/node9.html -- 12.2 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/book/c_marshall/node9.html -- 12.2 Кб -- 02.10.2012
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/book/c_marshall/node9.html -- 12.2 Кб -- 02.10.2012
Похожие документы

11. The history of star formation and mass assembly in early-type galaxies
... Interacting galaxies . ... Catalogues . ... We define a volume limited sample of over 14,000 early-type galaxies (ETGs) selected from data release six of the Sloan Digital Sky Survey. The density of environment of each galaxy is robustly measured. By comparing narrow band spectral line indices with recent models of simple stellar populations (SSPs) we investigate trends in the star formation history as a function of galaxy mass (velocity dispersion), density of environment and galactic radius. ...
[ Сохраненная копия ]  Ссылки http://www.mrao.cam.ac.uk/~bn204/mk2/galevol/clemensetal08.html -- 18.6 Кб -- 25.11.2009
Похожие документы

12. Admonishments
... The NOTE element is designed for use as admonishments such as notes, cautions or warnings, as commonly used in technical documentation. The CLASS attribute specifies the type of the element and is typically associated with different graphics such as a road traffic warning sign. ... The class names: NOTE, CAUTION and WARNING are recommended for standard admonishments. In the absence of the CLASS attribute, a NOTE element is typically rendered indented, without an accompanying graphic. ...
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/webdesign/html-3.0/notes.html -- 4.8 Кб -- 19.12.1996
Похожие документы

13. FAQ: "The Great Magnet, the Earth"
... Listed below are questions submitted by users of "The Great Magnet, the Earth" and the answers given to them. ... In "The Exploration of the Earth's magnetosphere" on the magnetic environment of the Earth in space (a few Q duplicated here) . ... 11) Magnetic Shielding . ... 51) Can electricity be generated from the Earth's magnetic field? ... 9) Measuring Earth's magnetic field . ... 6) Reversals of the Earth's field (4 queries) . ... 42) Could generated electricity affect Earth's magnetic field? ...
[ Сохраненная копия ]  Ссылки http://www.cosmos.ru/mirrors/stern/earthmag/mgQsubj.htm -- 14.6 Кб -- 22.12.2007
Похожие документы

14. Armagh Observatory: Chris Winter [ lte-codes ]
... Now, all three programs come in one easy to build package. ... Unfortunately, because it is the only brand of F90 compiler I have access to, the source codes can only be guaranteed to build with Intel Fortran Compiler v6.0 , and now with the newer v7.1 . ... Binary RPM - RedHat 8.0 Binary RPM Package (~2.8 MB) [ How to install ] . Source RPM - Source RPM package (~1.7MB) [ How to install ] . ... Source RPM - Source RPM package (~2.5MB) [ How to install ] . ... Chris Winter, 2007 . ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/~cwr/lte-codes.html -- 8.1 Кб -- 07.01.2007
Похожие документы

15. The Note in Thailand (Type 13) Page 1
. Goto: [Index] .
[ Сохраненная копия ]  Ссылки http://xray.sai.msu.ru/~mystery/images/money/Thailand/m13-1.html -- 1.4 Кб -- 30.05.1996
Похожие документы

16. ESO - Public VLTI Survey of Environments of Early-type Stars
... Observatory . Public . Science . ... Science Users Information > Science Publications > Science Announcements > Public VLTI Survey of Environments of Early-type Stars . ... Observing with ESO Telescopes . ... Public Surveys . ... Call for Public Surveys with the Arizona Radio Observatory . ... A public interferometric survey of the gaseous circumstellar environments of hot stars is being conducted. It is named OHANA тАФ the Observatory survey at High ANgular resolution of Active OB stars. ...
[ Сохраненная копия ]  Ссылки http://www.eso.org/sci/publications/announcements/sciann13051.html -- 23.5 Кб -- 10.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>55952) - www.eso.org/ )

17. TUI:Telescope:Offset Types
TUI supports the following offsets: . Object Arc offset by a given amount on the sky (i.e. along the arc of a great circle). ... Arc offsets are useful for moving a different portion of your object or a different nearby object onto the boresight . ... Object Arc XY this is identical to an Object offset except that it has been rotated to align along the instrument x-y axes. ... This is just like the Calibration XY offset, except that it is typically cleared when you slew to a new object. ...
[ Сохраненная копия ]  Ссылки http://www.apo.nmsu.edu/35m_operations/TUI/Telescope/OffsetTypes.html -- 6.3 Кб -- 05.09.2014
Похожие документы

18. Different types of detector map
... A detector map is used to provide a grid of positions over which to calculate and flux weight the ARF. The default detector map is 'flat' which has a weighting of 1.0 for each detector map pixel and is rectangular having sides which just encompass the region specified in the DSS. Only detector map pixels falling within the source region are included in the ARF calculation, e.g. for a circular source box, the pixels in the corners of the detector map will be ignored. ... flat : . ...
[ Сохраненная копия ]  Ссылки http://xmm.vilspa.esa.es/sas/8.0.0/doc/arfgen/node22.html -- 7.8 Кб -- 22.10.2008
Похожие документы
Еще в разделе: (Показать все результаты (>14837) - xmm.vilspa.esa.es/ )

19. Telescope Types - an Astronomy Net General Forum Message
General Forum Message . Forums: . ... Post . ... Telescope Types . ... Many types exist, but a good 8 inch Newtonian on a simple Dobsonian mount provides great views in a simple package. ... While the SCT is not my favorite design for the type of astronomy I pursue, I do think it is the right kind of telescope for the average consumer. ... www.astronomy.net . ... Forum posts are Copyright their authors as specified in the heading above the post. "dbHTML," "AstroGuide," "ASTRONOMY.NET" & "VA.NET" . ...
[ Сохраненная копия ]  Ссылки http://www.astronomy.net/forums/general/messages/4849.shtml -- 15.0 Кб -- 09.04.2016
Похожие документы

20. Media types
... 7.1 Introduction to media types . ... 7.3 Recognized media types . 7.3.1 Media groups One of the most important features of style sheets is that they specify how a document is to be presented on different media: on the screen, on paper, with a speech synthesizer, with a braille device, etc. Certain CSS properties are only designed for certain media (e.g., the 'cue-before' property for aural user agents). ... For example, the 'font-size' property is useful both for screen and print media. ...
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/~vab/html.doc/css2/media.html -- 12.0 Кб -- 12.05.1998
Похожие документы

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


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

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

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