Plugin guide: Difference between revisions

From SPEDAS Wiki
Jump to navigation Jump to search
No edit summary
m (Reverted edits by Egrimes (talk) to last revision by Floresaa)
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
Stub for page for the Plugin creation guide.


<syntaxhighlight lang=c>
There are currently three interfaces through which third party software can interface with [[Main_Page|SPEDAS]].
#include <stdio.h>


int main(int argc, int ** argv)
==Load Data API==
{
  printf("%s\n","Hello World!");
}


</syntaxhighlight>
:The [[Load_Data_API|Load Data API]] allows mission specific data to be loaded directly into the SPEDAS GUI.
 
==Configuration API==
 
:The [[File_Config_API|Configuration API]] allows the GUI to read preferences relevant to loading data for a mission. 
 
:''(Required if using the Load Data API)''
 
==Plugin Menu API==
 
:The [[Plugin_Menu_API|Plugin Menu API]] allows integration of mission specific or generic data processing software.

Latest revision as of 22:11, 13 May 2015

There are currently three interfaces through which third party software can interface with SPEDAS.

Load Data API

The Load Data API allows mission specific data to be loaded directly into the SPEDAS GUI.

Configuration API

The Configuration API allows the GUI to read preferences relevant to loading data for a mission.
(Required if using the Load Data API)

Plugin Menu API

The Plugin Menu API allows integration of mission specific or generic data processing software.