Showcase/ISS Tracker

ISS Location Tracker

Track the International Space Station in real-time and discover which geographic regions it's currently over. Updates automatically every 10 seconds.

How it works

  • • Server fetches real-time ISS location from Open Notify API every 10 seconds
  • • Queries Deliberate API with a contains_point spatial filter

Example Query

This is the spatial query sent to Deliberate API to find all geographic sets containing the ISS position:

json
{
  "where": {
    "spatial": {
      "contains_point": {
        "lat": 25.7617,
        "lng": -80.1918
      }
    }
  },
  "limit": 100
}

The query returns all countries, states, counties, and other geographic sets that contain the specified coordinates.