Hi all,
Could you please say how to convert degrees into radians. What is the SAS function for the procedure?
There's a FedSQL function called radians - the following creates a table called rads in work which holds the result of the calculation
proc fedsql;
select radians(45) into rads;
quit;
I think it's basic math, but I'd like to be wrong here 🙂
x = (atan(1)/45 * long) ;
y = (atan(1)/45 * lat) ;
@Reeza wrote:I think it's basic math, but I'd like to be wrong here 🙂
Thanks! Do you know if a special SAS function exists for the conversion?
There's a FedSQL function called radians - the following creates a table called rads in work which holds the result of the calculation
proc fedsql;
select radians(45) into rads;
quit;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.