Skip to main content

Ionogram Notes about KO6BTY de JJ2JQF

 The recent pair of QSOs to Japan from Project TouCans from Great Basin National Park has me wondering about F2 layer ionospheric skip propagation again.

I got our F2 skips working for CZML. Here's a look at the skip path for JJ2JQF de KO6BTY. Notice the Earedson ionosonde is almost right in the middle


Here's the map to take a look at 


Note that the path goes for a little while underground. However, Hugyens:


Check out the mountains that can act as a knife-edge barrier creating  new source.


Query for JJ2JQF

select
  tx_lng,
  tx_lat,
  rx_lng,
  rx_lat,
  rm_rnb_history_pres.timestamp,
  rm_rnb_history_pres.dB,
  rm_rnb_history_pres.Spotter,
  haversine(tx_lat, tx_lng, rx_lat, rx_lng) as total_path,
  gis_partial_path_lat(tx_lat, tx_lng, rx_lat, rx_lng, 200) as el_lat,
  gis_partial_path_lng(tx_lat, tx_lng, rx_lat, rx_lng, 200) as el_lng,
  id,
  strftime('%Y%m%d', timestamp) as date,
  strftime('%H%M', timestamp) as time,
  'US-0032' as park,
  'KD0FNR' as call
from
  rm_rnb_history_pres
where
  dB > 100
  and timestamp > '2024-05-24T13:45:00'
  and timestamp < '2024-05-24T14:57:00'
order by
  rm_rnb_history_pres.timestamp desc


Query for JG0AWE

select
  tx_lng,
  tx_lat,
  rx_lng,
  rx_lat,
  rm_rnb_history_pres.timestamp,
  rm_rnb_history_pres.dB,
  rm_rnb_history_pres.Spotter,
  haversine(tx_lat, tx_lng, rx_lat, rx_lng) as total_path,
  gis_partial_path_lat(tx_lat, tx_lng, rx_lat, rx_lng, 200) as el_lat,
  gis_partial_path_lng(tx_lat, tx_lng, rx_lat, rx_lng, 200) as el_lng,
  id,
  strftime('%Y%m%d', timestamp) as date,
  strftime('%H%M', timestamp) as time,
  'US-0032' as park,
  'KD0FNR' as call
from
  rm_rnb_history_pres
where
  dB > 100
  and timestamp > '2024-05-24T13:45:00'
  and timestamp < '2024-05-24T14:57:00'
order by
  rm_rnb_history_pres.timestamp desc


And the data went away!



Notice that the table on the left isn't there. Take a look at the JJ2JQF data (two days later) for comparison





Sources of Ionosphere and specifically F2 data from around the world

New to me: Mirrion ionosonde images from NOAA. I haven't seen this page before. Not super-useful to me because it points at images, not numeric data.

Lowell Digisonde Station list: Handy map of where stations exist.

CZML and HTML style comments

Apparently, they just don't work. We had to take our comments back out.

Accessing data via URL

We use an address like this

https://lgdc.uml.edu/common/DIDBGetValues?ursiCode=PA836&charName=hF2,hmF2&fromDate

to pull in ionosonde data. To access different stations, you need different ursiCode values, (one per station.) These can be found at https://www.digisonde.com/ under the URSI column.

This URL worked great in the browser, but thanks to this issue, stumbled a few times in the czml plugin's calls to get_f2m.

References

Ionosonde Data

This was made possible with data collected by 


Comments

Popular posts from this blog

Cool Math Tricks: Deriving the Divergence, (Del or Nabla) into New (Cylindrical) Coordinate Systems

Now available as a Kindle ebook for 99 cents ! Get a spiffy ebook, and fund more physics The following is a pretty lengthy procedure, but converting the divergence, (nabla, del) operator between coordinate systems comes up pretty often. While there are tables for converting between common coordinate systems , there seem to be fewer explanations of the procedure for deriving the conversion, so here goes! What do we actually want? To convert the Cartesian nabla to the nabla for another coordinate system, say… cylindrical coordinates. What we’ll need: 1. The Cartesian Nabla: 2. A set of equations relating the Cartesian coordinates to cylindrical coordinates: 3. A set of equations relating the Cartesian basis vectors to the basis vectors of the new coordinate system: How to do it: Use the chain rule for differentiation to convert the derivatives with respect to the Cartesian variables to derivatives with respect to the cylindrical variables. The chain ...

The Alcubierre Warp Drive Tophat Function and Open Science with Sage

I transferred yesterday's Mathematica file with the Alcubierre warp drive[2] line element and space curvature calculations to the  +Sage Mathematical Software System  today, (the files been  added to the public repository [3]).  If you haven't used Sage before, it's a Python based software package that's similar in functionality to Mathematica.  Oh, and it' free.  I also worked a little more on understanding the theory, but frankly, I made far more progress with the software than the theory.  What follows will be a little more of the Alcubierre theory, plus, a cool Sage interactive demo of one of the Alcubierre functions[1], as well as a bit about my first experience with using Sage. Theory The theory is fun, but it's moving slowly.  Here's the chalk board from this morning's discussion Alcubierre setup the derivation using something called the 3+1 formalism which means we consider space to be flat, (in this case), slices that are labelled ...

The Valentine's Day Magnetic Monopole

There's an assymetry to the form of the two Maxwell's equations shown in picture 1.  While the divergence of the electric field is proportional to the electric charge density at a given point, the divergence of the magnetic field is equal to zero.  This is typically explained in the following way.  While we know that electrons, the fundamental electric charge carriers exist, evidence seems to indicate that magnetic monopoles, the particles that would carry magnetic 'charge', either don't exist, or, the energies required to create them are so high that they are exceedingly rare.  That doesn't stop us from looking for them though! Keeping with the theme of Fairbank[1] and his academic progeny over the semester break, today's post is about the discovery of a magnetic monopole candidate event by one of the Fairbank's graduate students, Blas Cabrera[2].  Cabrera was utilizing a loop type of magnetic monopole detector.  Its operation is in...