This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$xml_url = 'http://www.arionbanki.is/markadir/gjaldmidlar/gengi/xml-export'; | |
$data = simplexml_load_file($xml_url); | |
$out = array( | |
'timestamp' => time(), | |
'base' => 'ISK', | |
'rates' => array() | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><!--[if IE]> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta http-equiv="imagetoolbar" content="no"> | |
<![endif]--> | |
<title> | |
History of the Expedition Under the Command of Captains Lewis and Clark: To the Sources of the Missouri, thence Across the Rocky Mountains and down the River Columbia to the Pacific Ocean - World Digital Library | |
</title> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env js | |
function isnet93_to_wgs84(xx, yy) { | |
this.x = xx; | |
this.y = yy; | |
this.a = 6378137.0; | |
this.f = 1/298.257222101; | |
this.lat1 = 64.25; |