npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-red-contrib-satellites

v0.7.5

Published

A Node-RED node to work with 3d satellite orbit data.

Downloads

32

Readme

node-red-contrib-satellites

A set of Node-RED nodes to help working with Two-Line-Element (TLE) sets. Utilising the satellites.js library to convert the TLE sets into xyz and latlng coordinates.

The list of satellites, and associated TLE data is retrieved from NORAD.

Changelog

v0.7.4

  • change default images of earth to higher res versions
  • change default icon to be a generic satellite, add ISS icon (if marker name contains ISS)
  • Swap to sockjs library as it seems more stable

v0.5.0

  • Add Planet Labs satellites to the dropdown list

v0.3.0

  • New 3d rendering using lat,lon,alt - that is much more accurate. Also includes sun in correct relative position, ability to ride along with the chosen satellite, and pause/resume gentle rotation. Updated examples.

v0.2.0

  • New "TLE" node which is the equivalent of the old "Satellite" node, allowing you to input raw TLE data.
  • Modified "Satellite" node which now provides you with a predefined selection of types and satellites.
  • Added new "GPS Constellation" example & updated old "ISS worldmap.json" example.

Examples

In the ./examples folder you can find sample flows that demonstrate some use cases for this set of nodes. These can be imported to the editor via Menu - Import - Examples - satellite

Please note that TLE Data for a given satellite does change, and so the TLE data set used here may be out of date when you come to use it. For an up to date dataset for the ISS, please go here:

./examples/ISS 3d.json

ISS 3d Example

This flow will calculate the current xyz position of the ISS, using the relevant TLE data in the satellite node. The data is then fed into the earth node for visualisation.

./examples/ISS worldmap.json

ISS World Map Example

note: This example has a dependancy on the node-red-contrib-web-worldmap node.

This flow will calculate the current position of the ISS, using it's TLE data in the satellite node, and convert it into the relevant formats for use with the worldmap node.

The time array node is used to calculate the timestamps for +/- 10 minutes from the current time, as to create the recent and upcoming path of the ISS.

./examples/GPS constellation.json

GPS World Map Example

note: This example has a dependancy on the node-red-contrib-web-worldmap node.

This flow will shows the location of GPS satellites (in latitude and longitude) on the worldmap node.

The time array node is used to calculate the timestamps for +/- 20 minutes from the current time, as to create the recent and upcoming path of each satellite. The pin is then shown at the 20th point in that array (halfway given the sample rate of 40 points).

Known Issues

  • The 'Earth' node is quite computationally heavy, we're looking into the exact recommendations for the hardware to effectively run this node, in addition to how we can lighten the load on the machine.
  • Windows: We are aware of some issues when running these nodes on Windows, and they are being investigated.