I think I have the majority of the code that you'd need to set up a virtual observatory.

I'm working with some others on the Virtual Solar Observatory, and so far, all of our central architecture is Perl, as it was a common language between all of the project's programmers.

Our architecture uses the following components:

Registry
Contains information about all of the data providers in the system
Core
Acts as a 'switchboard', takes requests and sends them to the necessary data providers, and then assembles the responses from them.
Data Provider
Takes the given request, talks to a given archive (database, ftp server, etc.), and determines what observations may be of interest, and returns metadata about those observations.
User Interface
Anything that knows how to talk to the Core -- we currently have a few other VOs talking to us, a command line perl interface, a couple web-based interfaces, a command line IDL interface, etc.

I've been meaning to clean up the documentation and put everything into CPAN, but there hasn't been interest for it, other than as we get in new Data Providers (and they only need a small subset) who have to install the packages and deal with dependancies (SOAP::Lite, etc.)

(Some of our current work is in making the system more generic, to allow us to easily add new query / returned parameters, but it'd also allow you to replace all of the parameters with ones that were relevent for your field).


In reply to Re: SVO - Simple Virtual Observatory by jhourcle
in thread SVO - Simple Virtual Observatory by fmerges

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.