59 Matching Annotations
  1. Last 7 days
  2. May 2025
  3. Mar 2025
  4. Feb 2025
  5. Dec 2024
  6. Oct 2024
  7. Nov 2023
  8. Oct 2023
  9. Jul 2023
  10. May 2023
    1. ds.plot.scatter(x="Timestamp", y="Vixv", ax=axes[0], s=0.1) ds.plot.scatter(x="Timestamp", y="Vixh", ax=axes[1], s=0.1) ds.plot.scatter(x="Timestamp", y="Viy", ax=axes[2], s=0.1) ds.plot.scatter(x="Timestamp", y="Viz", ax=axes[3], s=0.1, label="Velocities")

      Change to:

      ds.plot.scatter(x="Timestamp", y="Vixv", ax=axes[0], s=1, linewidths=0) ds.plot.scatter(x="Timestamp", y="Vixh", ax=axes[1], s=1, linewidths=0) ds.plot.scatter(x="Timestamp", y="Viy", ax=axes[2], s=1, linewidths=0) ds.plot.scatter(x="Timestamp", y="Viz", ax=axes[3], s=1, linewidths=0, label="Velocities")

  11. Mar 2023
  12. Nov 2022
  13. Oct 2022
  14. Sep 2022
  15. May 2022
  16. Apr 2022
    1. Abstract: Access to the field aligned currents evaluated by the dual satellite method (level 2 product). We also show an orbit-by-orbit plot using a periodic axis to display (centred over both poles) an overview of the FAC estimates over two weeks.

      Health warning

      Note that the data quality varies from October 2019 onward due to the orbit changes of Swarm A & C:

      • Remove 2021/07/01 to 2022/01/13
      • Change polar exclusion zone for 2019/10/01 to 2021/06/30 and for 2022/01/14 onward:
      • exclude where abs(latitudinal crossing point) + 6deg < 90deg

      These changes are yet to be made in the data products as of writing (April 2022)

  17. Mar 2022
  18. Feb 2022
  19. Nov 2021
  20. Oct 2021
  21. Sep 2021
  22. Aug 2021
    1. Geomagnetic pulsations¶ .. see https://iaga-school-2019.netlify.app/notebooks/1-visualising-geomagnetic-observatory-data#geomagnetic-pulsations Hartland (HAD) second data are not available. Fetching CLF instead:

      Probably just remove this section and create a dedicated page that goes into it

    1. # Using only the radial component, perform the inversion: G = G_radius d = B_radius m = np.linalg.inv(G.T @ G) @ (G.T @ d)

      Only using one component to keep it simpler. The radial component is the least contaminated so damping is less important

  23. May 2021
    1. Estimated core GVO magnetic field, spherical polar (r,theta,phi) vector components [i.e (-C,-N,E) components in NEC frame]

      NB: The source (CDF) files provide the measurements in the RTP coordinates rather than NEC. In VirES, we provide them in NEC coordinates for consistency with other Swarm products.

      This has led to the misleading variable descriptions in data retrieved from VirES, stating that they are given in "spherical polar (r,theta,phi) vector components [i.e (-C,-N,E) components in NEC frame]". We have not fixed this yet

  24. Apr 2021
  25. Feb 2021
    1. ESK_2003_PATH = os.path.abspath('../data/external/ESK_2003/') ESK_HOURLY_PATH = os.path.abspath('../data/external/ESK_hourly/')

      will be able to replace with data loading live from vires

    2. By David Kerridge et al.

      Change to e.g. "IAGA and friends" This is displayed identically on all pages. Perhaps we can add an "authors" element to each notebook (at top or bottom)

  26. Oct 2020
    1. prototype quicklook routine

      The intention is that in the future we will be able to access such routine from something like:

      from viresclient import SwarmQuicklooks
      fig = SwarmQuicklooks.AEJxLPS.plot()
      
  27. Sep 2020