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;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.