open-notify / Open-Notify-API

Source code for api.open-notify.org
http://open-notify.org/Open-Notify-API/
Other
351 stars 72 forks source link

Wrong NUMBER_OF_PEOPLE_IN_SPACE returned #42

Open AndreyKopeyko opened 4 months ago

AndreyKopeyko commented 4 months ago

I checked now astros.json and see that it doesn't count Chinese taikonauts as human beings being in space right now. :-(

According to https://en.wikipedia.org/wiki/Tiangong_space_station#Crewed_missions from 2024-04-25 we have 3 more humans in near Earth space.

So, the correct NUMBER_OF_PEOPLE_IN_SPACE should be 10 for today.

Can you please take Chinese into account too? I would like to have a precise data source for my pet project.

radziejewicz commented 3 months ago

Bump, same issue.

radziejewicz commented 3 months ago

@AndreyKopeyko

I think that at the moment the project is dead :(

AndreyKopeyko commented 1 month ago

Seems like this issue was fixed silently - now I can see 3 taikonauts in astros.json output

kaa@NCTnb2:~/work$ curl -s http://api.open-notify.org/astros.json |jq
{
  "people": [
    {
      "craft": "ISS",
      "name": "Oleg Kononenko"
    },
    {
      "craft": "ISS",
      "name": "Nikolai Chub"
    },
    {
      "craft": "ISS",
      "name": "Tracy Caldwell Dyson"
    },
    {
      "craft": "ISS",
      "name": "Matthew Dominick"
    },
    {
      "craft": "ISS",
      "name": "Michael Barratt"
    },
    {
      "craft": "ISS",
      "name": "Jeanette Epps"
    },
    {
      "craft": "ISS",
      "name": "Alexander Grebenkin"
    },
    {
      "craft": "ISS",
      "name": "Butch Wilmore"
    },
    {
      "craft": "ISS",
      "name": "Sunita Williams"
    },
    {
      "craft": "Tiangong",
      "name": "Li Guangsu"
    },
    {
      "craft": "Tiangong",
      "name": "Li Cong"
    },
    {
      "craft": "Tiangong",
      "name": "Ye Guangfu"
    }
  ],
  "number": 12,
  "message": "success"
}
kaa@NCTnb2:~/work$