GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
FluxColor(3) User Contributed Perl Documentation FluxColor(3)

Astro::FluxColor - Class for handling astronomical color quantities.

use Astro::FluxColor;

  $color = new Astro::FluxColor( lower => $lower_waveband,
                                 upper => $upper_waveband,
                                 quantity => $quantity,
                                 datetime => new DateTime );

  $quantity = $color->quantity;

Class for handling astronomical color quantities.

new
Create a new instance of an "Astro::FluxColor" object.

$color = new Astro::FluxColor( lower => $lower_waveband, upper => $upper_waveband, quantity => $quantity, datetime => new DateTime );

The three named parameters are mandatory. lower and upper denote the lower and upper wavebands for the colour, and must be "Astro::WaveBand" objects. quantity is a numerical value in magnitudes.

quantity
Returns the actual color value.

  my $value = $color->quantity;
    

There are no parameters.

error
Returns the actual uncertainty in the cerror.

  my $e = $color->error;
    

There are no parameters.

lower
Returns the lower waveband.

  my $lower = $color->lower;
    

There are no parameters. An "Astro::WaveBand" object is returned.

upper
Returns the upper waveband.

  my $upper = $color->upper;
    

There are no parameters. An "Astro::WaveBand" object is returned.

datetime
Returns the datetime stamp for the given flux object.

  my $datetime = $flux->datetime;
    

Returns an "Date::datetime" object if defined. If not, returns undef.

  $Id: FluxColor.pm,v 1.6 2005/06/15 01:14:01 allan Exp $

Brad Cavanagh <b.cavanagh@jach.hawaii.edu>, Alasdair Allan <aa@astro.ex.ac.uk>

Copyright (C) 2004 Particle Physics and Astronomy Research Council. All Rights Reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

2005-06-15 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.