• Remix
  • Share
  • New Entry

on 19 Oct 2022
  • 3
  • 62
  • 0
  • 3
  • 227
%Get the position of ISS
writelines('o=webread("http://api.open-notify.org/iss-now.json");','pos.m'),pos %normally not needed to use writelines
%Show the position on the map using MATLAB
geoplot(str2double(o.iss_position.latitude),str2double(o.iss_position.longitude),'.',MarkerSize=20);
geobasemap t;
geolimits([-90 90],[-180 180])
drawnow
Remix Tree