You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Convert the RADIANS to DEGREES for pretty printing (appends "N", "S", "E", "W", etc).
var longitudeStr = satellite.degreesLong(longitude),
latitudeStr = satellite.degreesLat(latitude);
The code for degreesLong and degreesLat, however, only returns numerical values without any of "N", "S", "E", or "W" appended. I'm not sure if this is a documentation error or an implementation error.
If it's a documentation error, the TypeScript definitions should be changed so that degreesLat and degreesLong return number instead of string.
The text was updated successfully, but these errors were encountered:
In the README, there is a section that says:
The code for
degreesLong
anddegreesLat
, however, only returns numerical values without any of "N", "S", "E", or "W" appended. I'm not sure if this is a documentation error or an implementation error.If it's a documentation error, the TypeScript definitions should be changed so that
degreesLat
anddegreesLong
returnnumber
instead ofstring
.The text was updated successfully, but these errors were encountered: