Nothing
###################################################################################
# Computes decimal coordinates from degrees and minutes
# x: vector containing degrees and minutes
# Author: Fraenzi Korner, 9.9.2004, www.oikostat.ch and www.vogelwarte.ch
# updated 14.10.2022 to include seconds
###################################################################################
decimal.coord<-function(x){
# x is a numeric vector of the following format dd.mmss, e.g. 55.3215 for
# 55degree 32' 15''
t.sign<-sign(x)
t.min <-floor(100*(abs(x)-abs(trunc(x))))
t.sec <- 100*(abs(100*x)-abs(trunc(100*x)))
t.decimals <- t.min/60 + t.sec/3600
t.dec<-t.sign*(abs(trunc(x))+t.decimals)
t.dec
}
###################################################################################
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.