.:ioPython:home: Difference between revisions

From ADPAA
Jump to navigation Jump to search
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 3: Line 3:


=Purpose=
=Purpose=
Creates an object of the ADPAA class.  Built-in methods allow data within a UND/NASA-formatted ASCII file to be extracted and stored in an object of the ADPAA class and allow information within an object of the ADPAA class to be written to a file in proper UND/NASA format.
Creates an object of the ADPAA class.  Built-in methods allow data within a NASA/UND-formatted ASCII file to be extracted and stored in an object of the ADPAA class and allow information within an object of the ADPAA class to be written to a file in proper NASA/UND format.


=Imported Modules=
=Imported Modules=
Line 12: Line 12:
* adpaa_help.py (adpaa_help class)
* adpaa_help.py (adpaa_help class)


=Data Input/Output=
=Syntax=
The methods within an instantiated object of the ADPAA class that allow for data input/output are described below.
The methods within an instantiated object of the ADPAA class that allow for data input/output are described below.


==ReadFile==
   ReadFile([name= ])
   ReadFile([name= ])
* Purpose: Read a UND/NASA-formatted ASCII file into the ADPAA class.
* Purpose: Read a NASA/UND-formatted ASCII file into an ADPAA object.
* Input: 'name' - optional keyword argument to set the filename of the file to input (uses ADPAA class attribute 'name' by default).
* Input: 'name' - optional keyword argument to set the filename of the file to input (uses ADPAA class attribute 'name' by default).
* Returns: nothing
* Returns: nothing


==WriteFile==
  WriteFile([name= ])
* Syntax: WriteFile([name= ])
* Purpose: Write information contained in an ADPAA object to a properly-formatted NASA/UND ASCII file.
* Purpose: Write information contained in an ADPAA object to a properly-formatted UND/NASA ASCII file.
* Input: 'name' - optional keyword argument to set the filename of the file being written to (uses ADPAA class attribute 'name' by default)
* Input: 'name' - optional keyword argument to set the filename of the file being written to (uses ADPAA class attribute 'name' by default)
* Returns: nothing
* Returns: nothing

Latest revision as of 02:02, 25 January 2019

Module Name

adpaa.py (ADPAA class)

Purpose

Creates an object of the ADPAA class. Built-in methods allow data within a NASA/UND-formatted ASCII file to be extracted and stored in an object of the ADPAA class and allow information within an object of the ADPAA class to be written to a file in proper NASA/UND format.

Imported Modules

  • readfile.py (ReadFile class)
  • writefile.py (WriteFile class)
  • constants.py (constants class)
  • julian_date.py (julian_date class)
  • adpaa_help.py (adpaa_help class)

Syntax

The methods within an instantiated object of the ADPAA class that allow for data input/output are described below.

 ReadFile([name= ])
  • Purpose: Read a NASA/UND-formatted ASCII file into an ADPAA object.
  • Input: 'name' - optional keyword argument to set the filename of the file to input (uses ADPAA class attribute 'name' by default).
  • Returns: nothing
 WriteFile([name= ])
  • Purpose: Write information contained in an ADPAA object to a properly-formatted NASA/UND ASCII file.
  • Input: 'name' - optional keyword argument to set the filename of the file being written to (uses ADPAA class attribute 'name' by default)
  • Returns: nothing