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

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

Показаны документы, содержащие фрагменты текста из документа
http://www.eso.org/~qc/tqs/pyqc/python_2.6.2.html.

1. pyQC: overview
... Python 2.6.2 + most up-to-date modules (December 2009) . ... release of V1.1 for qclib and plot modules (March 2009) . ... a python routine that shows how easy it it to create log plots (base 10 or otherwise), and how python takes care of the scaling and the axis numbers automatically. ... a python routine that shows how easy it is to plot images, change their interpolation, add contours, add an overplot, and add a colour bar. ... a python routine that shows how easy it is to plot FITS images. ...
[ Сохраненная копия ]  Ссылки http://www.eso.org/~qc/tqs/pyqc/python_demos.html -- 20.9 Кб -- 07.12.2009
Похожие документы
Еще в разделе: (Показать все результаты (>21648) - www.eso.org/ )

2. mod_actions - Apache HTTP Server
... Apache HTTP Server Version 2.2 . Apache > HTTP Server > Documentation > Version 2.2 > Modules . ... This module provides for executing CGI scripts based on media type or request method. ... The Action directive lets you run CGI scripts whenever a file of a certain MIME content type is requested. ... 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.sao.ru/ztcs/manual/de/mod/mod_actions.html -- 11.1 Кб -- 25.02.2008
Похожие документы

3. mod_actions - Apache HTTP Server
... Apache HTTP Server Version 2.2 . Apache > HTTP Server > Documentation > Version 2.2 > Modules . ... This module provides for executing CGI scripts based on media type or request method. ... The Action directive lets you run CGI scripts whenever a file of a certain MIME content type is requested. ... 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/en/mod/mod_actions.html -- 12.9 Кб -- 21.01.2013
Похожие документы

4. Module mod_actions
This module provides for executing CGI scripts based on media type or request method. ... Source File: mod_actions.c . ... Action . ... Syntax: Action action-type cgi-script . ... Examples: # Requests for files of a particular type: Action image/gif /cgi-bin/images.cgi # Files of a particular file extension AddHandler my-file-type .xyz Action my-file-type /cgi-bin/program.cgi . ... This directive adds an action, which will activate cgi-script when a file is requested using the method of method . ...
[ Сохраненная копия ]  Ссылки http://neptun.sai.msu.su/manual/mod/mod_actions.html -- 7.1 Кб -- 03.10.2002
Похожие документы

5. Python: module pass_script
pass_script (version 9/16/03) . ... A module for generating PASS scripts. ... class pass_script . ... init__ (self, script_name, pass_product_type =None , sw_version ='op' , vms =False ) . ... Returns the full script as a string. add_environ_line (self, environment_var, value, is_path =1 , is_file =1 ) . ... Data . ... MEGG_OUTPUT_DIRECTORY = '/data/scheduling/spss_flight_data/pass//megg/data' . ... TEMPLATE_LOGICAL_FILE = '/data/scheduling/spss_flight_data/pass//op_logicals/ops_job_logs.com' . ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/spst/UnixTransition/doc/pass_script.html -- 10.2 Кб -- 08.04.2016
Похожие документы

6. Stellarium: Scripting Engine
Stellarium 0.12.3 . ... Classes . ... Scripting . ... Scripting Engine . ... Script Console . ... Since version 0.10.1, Stellarium includes a scripting feature based on the Qt Scripting Engine . ... Prior to version 0.10.0, Stellarium used a different scripting engine called StratoScript . ... Prior to version 0.10.0, Stellarium had a simple scripting engine, known as StratoScript . ... This script prints "Hello Universe" in the Script Console output window. core.debug( "Hello Universe" ); . ...
[ Сохраненная копия ]  Ссылки http://astro.uni-altai.ru/~aw/stellarium/api/scripting.html -- 11.5 Кб -- 28.02.2014
Похожие документы

7. TUI:Scripts:Scripting Tutorial:User Input
This example shows how to add a few input widgets to a script and how to get data from them. This is a fairly artificial example in that one would normally just use the DIS Expose window for this purpose. ... import RO.Wdg import Tkinter import TUI .Inst.ExposeModel as ExposeModel from TUI .Inst.ExposeStatusWdg import ExposeStatusWdg class ScriptClass(object): Take a series of DIS darks with user input . def __init__(self, sr): Display exposure status and a few user input ...
[ Сохраненная копия ]  Ссылки http://www.apo.nmsu.edu/35m_operations/TUI/Scripts/ScriptingTutorial/UserInput.html -- 6.6 Кб -- 05.09.2014
Похожие документы

8. http://hea-www.harvard.edu/~dburke/PDL/README-Astro-Cosmology-0.90
... History ------- 04 Aug 2001 v0.90 more reorganisation. Hopefully CPAN-friendly now more tests (thanks Brad) 02 Aug 2001 v0.84 minor reorganisation, no change to code or docs 01 Aug 2001 v0.83 added version method, renamed string to stringify further documentation improvements improvements to test suite (thanks Brad) 29 Jul 2001 v0.82 added STERADIAN to constants improved documentation 28 Jul 2001 v0.81 renamed to Astro :: Cosmology removed need for PDL :: Astro :: Constants 19 Jul ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~dburke/PDL/README-Astro-Cosmology-0.90 -- 6.2 Кб -- 04.08.2001
Похожие документы

9. Example of debugging a shell script
To print commands and their arguments as they are executed: cat example #!/bin/sh TEST1=result1 TEST2=result2 if [ $TEST1 = "result2" ] then echo $TEST1 fi if [ $TEST1 = "result1" ] then echo $TEST1 fi if [ $test3 = "whosit" ] then echo fail here cos it's wrong fi . This is a script called example which has an error in it; the variable $test3 is not set so the 3rd and last test [ command will fail. Running the script produces: example result1 [: argument expected . ...
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/scrpt/scrpt2.8.1.html -- 2.7 Кб -- 17.01.1997
Похожие документы

10. Central Processor Platform CentralProcessor 0.11 documentation
... CentralProcessor 0.11 documentation . Platform Documentation . The ASKAP Central Processor platform consists of a Cray XC30 supercomputer and a 1.4PB Cray Sonexion storage system mounted as a Lustre filesystem. 2 x Login Nodes: . ... To login to the ASKAP Central Processor: . ... usr/bin/env bash #SBATCH --time=01:00:00 #SBATCH --ntasks=80 #SBATCH --ntasks-per-node=20 #SBATCH --job-name=myjobname #SBATCH --no-requeue #SBATCH --export=NONE aprun -B ./myprogram . ... Central Processor Platform . ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/askapsoft/sdp/docs/current/platform/processing.html -- 16.7 Кб -- 12.04.2016
Похожие документы

11. Python in Astronomy
Next: PyFITS, a FITS Module for Python . ... Pirzkal, N. & Hook, R. N. 1999, in ASP Conf. ... Python is a powerful, object-oriented scripting language that is easy to extend, free, and available for most computer platforms. Python, together with its Numerical module, and with the pFitsio module that is being developed by one of the authors, provides an attractive alternative to other languages such as Perl, IDL, and the IRAF CL, which are already widely used by the community. ...
[ Сохраненная копия ]  Ссылки http://www.adass.org/adass/proceedings/adass98/pirzkaln/ -- 10.1 Кб -- 16.07.1999
Похожие документы

12. Accessing measurement set data Bojan Nikolic web pages (r. 329)
... Bojan Nikolic web pages (r. 329) . ... The CASA table tool allows access to all data contained in measurement set format. ... For this reason I have sketched out a simple, python-orientated, wrapper for data access in casata. ... cols = [ "TIME" , "DATA" ] . one gets (unsurprisingly) both the time and the data.. ... msin = "/home/bnikolic/data/almagen/uid___A002_Xa048f_X1.ms" >>> time , visdata = data . ... time , point1 , point2 = data . ... data . ... Accessing measurement set data . ...
[ Сохраненная копия ]  Ссылки http://www.mrao.cam.ac.uk/~bn204/alma/casata/flex-data-access.html -- 21.1 Кб -- 04.04.2016
Похожие документы

13. AstroAsciiData
... AstroAsciiData is a Python module to handle ASCII tables. ... The idea to develop this Python module emerged from the fact that ASCII tables continue to be one of the most popular and widely used data exchange formats in astronomy and probably science in general. ... To load this ASCII table, go into Python, load the AstroAsciiData module and read in the table with: . ... demo = asciidata.open('webexa.txt') . ... Users who only want to work with ASCII tables neeed no further python modules. ...
[ Сохраненная копия ]  Ссылки http://www.stecf.org/software/PYTHONtools/astroasciidata/ -- 13.6 Кб -- 09.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>223) - www.stecf.org/ )

14. FOURTH Example - a9999d.sls spectral line set-up file.
Next: Sample Procedure Files Up: Setup & Procedure Files Previous: THIRD Example - a9999c.sls . L-wide search with extreme bandwidth # Spectral Line Setup file: a9999d.sls generated by AO-Control # N.B. this file can also be used as a standalone script # # # This file is used to do a velocity search with an extreme bandwidth # on the L-wide Rx. ... This file is available at http://www.naic.edu/~koneil/files/a9999d.sls #BE SURE TO CHANGE a9999 -> YOUR PROJ NUMBER! ...
[ Сохраненная копия ]  Ссылки http://www.naic.edu/~astro/spectral_line/handbook_old/app/files/fourth_sls.html -- 3.8 Кб -- 19.09.2000
Похожие документы

15. Lunar Module at Taurus Littrow
Astronomy Picture of the Day . Lunar Module at Taurus Littrow . ... 28.06.2002 . ... June 2002 . ... 2001 2002 . ... NASA Web Site Statements, Warnings, and Disclaimers . NASA Official: Jay Norris. ... A service of: LHEA at NASA / GSFC . ... U. Based on Astronomy Picture Of the Day . Publications with keywords: Moon - Apollo 17 - lunar module - Hubble space telescope . Publications with words: Moon - Apollo 17 - lunar module - Hubble space telescope . ... Apogee Moon, Perigee Moon . ...
[ Сохраненная копия ]  Ссылки http://www.astronet.ru/db/xware/msg/1177562/lmsurface_apollo17_d.jpg.html -- 12.6 Кб -- 28.06.2002
Похожие документы
Еще в разделе: (Показать все результаты (>117223) - www.astronet.ru/ )

16. APOD: December 13, 1998 - Blasting Off from the Moon
... December 13, 1998 . Blasting Off from the Moon . ... The Lunar Module that landed two astronauts on the Moon actually came apart. The top part containing the astronauts carried additional rocket fuel which allowed it to blast away, leaving the bottom part on the Moon forever. The top part would later meet up with the Command Module and its astronaut pilot, which were continually orbiting the Moon. ... The frame above captures the top part of the Lunar Module just at it was blasting off. ...
[ Сохраненная копия ]  Ссылки http://www.sai.msu.su/apod/ap981213.html -- 4.1 Кб -- 02.10.2012
Похожие документы

17. Plug-and-Play-HOWTO : Tell the Driver the Configuration
... A modern driver for a device will find out the bus-resource configuration without you having to tell it anything. ... In the worst case you must hard-code the bus-resources into the kernel (or a module) and recompile. In the middle are cases such as where you run a program to give the bus-resource info to the driver or put the info in a configuration file. ... You give such bus-resources as a parameter to the kernel or to a loadable module. ... Setserial is often run from a start-up file. ...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/doc/pnp/pnpHOWTO/Plug-and-Play-HOWTO-6.html -- 6.5 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/doc/pnp/pnpHOWTO/Plug-and-Play-HOWTO-6.html -- 6.5 Кб -- 11.09.2010
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/doc/pnp/pnpHOWTO/Plug-and-Play-HOWTO-6.html -- 6.5 Кб -- 02.10.2012
Похожие документы

18. Algorithm
... inthist is a perl script which does the following: . ... Run the F90 module intmakehist : . module intmakehist Read input flatfielded images and parameters Open output Post Script file Foreach (input image){ Rebin to specified binsize Estimate histogram mean and variance using sigma clipping Compute optimal histogram binsize and display range based on mean and variance Build and plot intensity histogram } Close Post Script file end module intmakehist . ...
[ Сохраненная копия ]  Ссылки http://xmm.vilspa.esa.es/sas/5.4.1/doc/inthist/node8.html -- 3.9 Кб -- 10.01.2003
Похожие документы

19. Astronaut Bio: Harrison Schmitt
... ORGANIZATIONS: The Geological Society of America (Honorary Fellow); The American Geophysical Union (Fellow); The American Association for the Advancement of Science (Fellow); The American Institute of Aeronautics and Astronautics (Fellow); Sigma XI; American Association of Petroleum Geologists (Fellow); The American Institute of Mining, Metallurgical and Petroleum Engineers (Honorary Member); New Mexico Geological Society (Honorary Member); The American Astronautical Society. ...
[ Сохраненная копия ]  Ссылки http://www.jsc.nasa.gov/Bios/htmlbios/schmitt-hh.html -- 10.8 Кб -- 07.07.2015
Похожие документы

20. SAI CAS: Accessing SAI CAS from scripts
SAI VO . ... SAI CAS . ... Access . ... http://vo.astronet.ru/sai_cas/conesearch?RA= $RA &DEC= $DEC &SR= $radius &cat= $catalog &tab= $table &format= $format . http://vo.astronet.ru/sai_cas/conesearch?RA= $RA &DEC= $DEC &SR= $radius &cat= $catalog &tab= $table &format= $format &columns= $columns . http://vo.astronet.ru/sai_cas/conesearch?RA= $RA &DEC= $DEC &SR= $radius &cat= $catalog &tab= $table &format= $format &withdist= $withdist &NULLS= $nulls where . ... File to store the results . ...
[ Сохраненная копия ]  Ссылки http://vo.astronet.ru/cas/access.php -- 16.1 Кб -- 01.10.2012
Похожие документы
Еще в разделе: (Показать все результаты (>38) - vo.astronet.ru/ )

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


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

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

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