- /
-
Where is the International Space Station?
on 17 Oct 2022
- 13
- 241
- 1
- 4
- 278
%Get the position using Python
o=pyrun('import urllib2,json;r=urllib2.urlopen("http://api.open-notify.org/iss-now.json");o=json.loads(r.read())',"o");
p=o.get("iss_position");
%Show the position on the map using MATLAB
geoplot(double(string(p.get('latitude'))),double(string(p.get('longitude'))),'.',MarkerSize=20);
geobasemap t;
geolimits([-90 90],[-180 180])