Translation Sandbox/pt-br: Difference between revisions
(Created page with "== Outro assunto ==") |
(Created page with "== Algo com um URL ==") |
||
Line 9: | Line 9: | ||
== Outro assunto == | == 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). | |||
< | <span id="More_stuff"></span> | ||
== Mais coisas == | |||
</ | |||
< | 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> | ||
< | <span id="A_Python_code_example"></span> | ||
== | == Um exemplo de código Python == | ||
<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> | ||
< | <span id="Something_with_a_URL"></span> | ||
== | == Algo com um URL == | ||
<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