Translation Sandbox/pt-br: Difference between revisions

From SPEDAS Wiki
Jump to navigation Jump to search
(Created page with "== Outro assunto ==")
(Created page with "== Algo com um URL ==")
Line 9: Line 9:
== Outro assunto ==
== Outro assunto ==


<div lang="en" dir="ltr" class="mw-content-ltr">
SPEDAS has plugins for the MMS, THEMIS, ERG/Arase, and GOES missions, along with many others.  It also supports downloading data via NASA's CDAWeb
service, and also HAPI (Heliophysics Application Program Interface) servers.
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
SPEDAS possui plugins para as missões MMS, THEMIS, ERG/Arase e GOES, entre muitas outras. Ele também suporta o download de dados através do serviço CDAWeb da NASA e também de servidores HAPI (Heliophysics Application Program Interface).
== More stuff ==
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
<span id="More_stuff"></span>
PySPEDAS is a Python implementation of SPEDAS, and includes many of the same load routines and analysis tools.
== Mais coisas ==
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
== An IDL code example ==
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
PySPEDAS é uma implementação Python do SPEDAS e inclui muitas das mesmas rotinas de carregamento e ferramentas de análise.
 
<span id="An_IDL_code_example"></span>
== Um exemplo de código IDL ==
 
<syntaxhighlight lang="idl">
<syntaxhighlight lang="idl">
pro some_idl_routine
pro some_idl_routine
Line 35: Line 29:
end
end
</syntaxhighlight>
</syntaxhighlight>
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
<span id="A_Python_code_example"></span>
== A Python code example ==
== Um exemplo de código Python ==
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
<syntaxhighlight lang="python">
<syntaxhighlight lang="python">
def do_stuff():
def do_stuff():
Line 49: Line 40:
   tplot(['tha_state_pos','tha_state_vel'])
   tplot(['tha_state_pos','tha_state_vel'])
</syntaxhighlight>
</syntaxhighlight>
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
<span id="Something_with_a_URL"></span>
== Something with a URL ==
== Algo com um URL ==
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
<div lang="en" dir="ltr" class="mw-content-ltr">
Go back to the [https://spedas.org/wiki?title=Main_Page Main Page]
Go back to the [https://spedas.org/wiki?title=Main_Page Main Page]
</div>
</div>

Revision as of 08:15, 29 December 2023

Esta página é um lugar para brincar com os recursos de tradução de idiomas sem danificar o conteúdo do wiki.

Tema

Alguns tópicos importantes em heliofísica incluem propriedades do plasma, interações entre partículas carregadas e campos magnéticos, clima espacial e atividade solar.

Outro assunto

SPEDAS possui plugins para as missões MMS, THEMIS, ERG/Arase e GOES, entre muitas outras. Ele também suporta o download de dados através do serviço CDAWeb da NASA e também de servidores HAPI (Heliophysics Application Program Interface).

Mais coisas

PySPEDAS é uma implementação Python do SPEDAS e inclui muitas das mesmas rotinas de carregamento e ferramentas de análise.

Um exemplo de código IDL

<syntaxhighlight lang="idl"> pro some_idl_routine

  ; An IDL routine that does some stuff
  timespan,'2007-03-23'
  thm_load_state,probe='a',/get_support
  tplot,['tha_state_pos','tha_state_vel']

end </syntaxhighlight>

Um exemplo de código Python

<syntaxhighlight lang="python"> def do_stuff():

  from pyspedas import themis
  from pytplot import tplot
  themis.state(trange=['2007-03-23','2007-03-24'], probe='a', get_support_data=True)
  tplot(['tha_state_pos','tha_state_vel'])

</syntaxhighlight>

Algo com um URL

Go back to the Main Page