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;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.