UNPKG

apflora

Version:

Aktionsplan Flora Kt. Zürich

13 lines (10 loc) 316 B
/** * Konvertiert Projektionen * @return {number} */ 'use strict'; module.exports = function(Breite) { var BreiteGrad = Math.floor(Breite), BreiteMin = Math.floor((Breite - BreiteGrad) * 60); return Math.round((((Breite - BreiteGrad) - (BreiteMin / 60)) * 60 * 60) * 100) / 100; };