background preloader

EUCLID

Facebook Twitter

AstrogridWorkflow-20060227.pdf (application/pdf Object) NASA Dark Energy Survey - DESDM Wiki. Astro-WISE - Home. Terapix - International collaborations. AVO: the Astrophysical Virtual Observatory is a European Network FP5-RTD contract that focuses on promoting the virtual observatory concept in Europe and on developing new virtual observatory tools for the European community. The AVO partners are ESO, ESA, CDS, ASTROGRID, TERAPIX and Jodrell Bank. ASTRO_WISE: Astronomical Wide-field Imaging System for Europe (ASTROWISE) is a European FP5-RTD contract which aims at developing an image processing system primarily designed for wide field CCD cameras like Omegacam on the ESO-VST telescope. The ASTROWISE network is composed of European institutes that have a strong expertise in wide field imaging survey analysis, image processing and software development (data base, pipeline, image processing software, archiving).

CADC-TERAPIX: the Canadian Astronomy Data Centre provides the raw Megacam images to TERAPIX and is the image archive repository for all calibrated images released by TERAPIX. IVOA and VO worldwide DataGrid. The CADC Home Page. European Virtual Observatory. The DataGrid Project. Astro-WISE - Home. OPTICON FP7. Astromatic.net. Youpi. The Web framework for perfectionists with deadlines | Django.

URL dispatcher. A clean, elegant URL scheme is an important detail in a high-quality Web application. Django lets you design URLs however you want, with no framework limitations. There’s no .php or .cgi required, and certainly none of that 0,2097,1-1-1928,00 nonsense. See Cool URIs don’t change, by World Wide Web creator Tim Berners-Lee, for excellent arguments on why URLs should be clean and usable. Overview To design URLs for an app, you create a Python module informally called a URLconf (URL configuration). This mapping can be as short or as long as needed. New in Django 1.4: Django also allows to translate URLs according to the active language. How Django processes a request When a user requests a page from your Django-powered site, this is the algorithm the system follows to determine which Python code to execute: Django determines the root URLconf module to use.

Example Here’s a sample URLconf: Notes: Example requests: A request to /articles/2005/03/ would match the third entry in the list. Named groups.