IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 17 and Version 18 of pstamp_web_interface_features


Ignore:
Timestamp:
Jan 13, 2010, 11:56:04 AM (16 years ago)
Author:
welling
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pstamp_web_interface_features

    v17 v18  
    222222[[Image(stampserver_screenshot.png)]]
    223223
    224 Selection is by sky coordinates, and optionally date range and filter.  Records are fetched from a MySQL database
     224Selection is by sky coordinates, and optionally date range and filter.  This example shows decimal coordinates but
     225sexigesimal values work as well.  Records are fetched from a MySQL database
    225226and shown as a table; observations which are not available are grayed out.  The user can check-mark some or all
    226227of the available records, and then request data products for those records.  The data products are produced
     
    232233
    233234=== Underlying Software ===
     235
     236The page is written in python, running under the mod_python plug-in in an apache web server.  SQLAlchemy is used to interface
     237to a MySQL database of images.  The database table is derived from the IPP database in an offline operation; the IPP
     238database tables are organized to describe data processing rather than the simple existence of images.  The table knows
     239which observations exist and which images are available.  Only the most recent processing run for a given observation is
     240included.
     241
     242Most of the forms checking is done on the server side; the form includes a small amount of javascript code.  It would
     243probably be better to do more of the checking with javascript.  Table sorting could be added easily via [ http://kryogenix.org/code/browser/sorttable/
     244sorttable].