Category Archives: English

Fastmail not taking security seriously?

About three years ago I figured I’d had enough Google-control of my online communication and was looking for an alternative email-provider. A friend of mine recommended Fastmail, which seemed like a good solution: Great web-interface, Android app, and the possibility of using an address from my own domain.

I signed up and have been using Fastmail since (with a redirect from my Gmail-address). The service has had some small issues (mainly the Android app being anything but “fast”), but overall I’ve been a happy customer.

Yesterday I figured out that I wanted to test 1password, moving away from LastPass after the recent security issues. In this process I decided to use the “generate password” functionality in 1password to set a new, strong password for my Fastmail account. Before I did that I made sure to set the “Account Recovery” email and phone number, so that if I made en error I would still be able to access my email.

And I was right. Indeed I made an error. I copied the generated password from 1password and pasted it into the change password dialog on fastmail. This logged me out, and then I managed to copy something else, removing the password from my clipboard. Then I managed to do something stupid in the 1password app, and my generated, 30-character, completely random, password was lost. I had managed to lock myself out of my email-account! Stupid! But hey, I have a recovery-email, right?

So I headed to the “Lost password screen” and typed in my gmail.address (to which I 10 minutes before had recieved a confirmation mail from fastmail).

Then I got the message:

The existing email address you entered was not for an existing user, or was for an account that has been disabled. Please try again

What?! Ok, after re-trying 5-6 times i had to open a ticket and provide a lot of information to regain-access by a manual process. In the ticket I wrote:

Thanks for the verification details.
I have now set your backup email address to:
*****@gmail.com

And I’m back in. Hooray! But I’m still wondering why the recovery email I entered did not work, so I’m asking:

Wasn’t my backup email set, or was there some problems regarding this feature? I am quite sure that I set my backup email yesterday.

The reply to this confused me:

Looks like the backup email address was not set. We then set it from our end and it worked for you. Please let me know if you need any further assistance.

After some back and forth I find out why:

Did you set this address from the Password & Security screen? If that is the case, you had set the “Recovery email address”. This is currently different from the backup email. Backup email can be set from the backend only.

And the password reset can be done using the backup email address only. The recovery process through recovery email address is not yet released into production. So I am afraid it will not work as of now.

What the actual, flying, fuck? The “Password & Security screen” is a frontend for some code that does not work? It presents itself as a way of setting a recovery mail, while it actually does nothing? The situation seems to have been like this for about 8 months, as this page from july 2016 clearly states:

Add your mobile phone number(s) and backup email address to the recovery options on the Password & Security screen. If you get locked out, we can use this to help verify your identity and restore access to your account.

I did express these concerns, and the reply I got was:

I really understand your frustration. I am sorry about that. I will pass your feedback to our supervisors.

We hope to implement the recovery procedure very soon.

But who knows? If they’ve been delaying this for 8 months now, I’m not confident that this will be fixed anytime soon, and that the “Password & Security screen” will continue to be a non-functioning, misleading page that does nothing but confuse the users. If the information isn’t used, don’t give the user the impression that it will. I can understand that not everything can be implemented at once, but have the balls to admit it, don’t lie to me. And about security issues? This is talentless!

So, to recap: The “Password & Security screen” of Fastmail is a sham. The information used there is not used. In order to regain access to your account if if loose your password you have to have a “backup email”. This backup email is not the same as the “recovery email”. The backup email has to be set by Fastmail staff.

Geospatial anarchy

It’s not that long ago since I started my PhD, but it feels like more time than a mere 2.5 months since.

But, what have I been doing? Well, one thing is that I’m taking classes, so some time has been spent attending lectures and examns (had my first examn in 8 years today, strange feeling). I’ve also started my literature review, so I’ve done a lot of reading.

But, to not derail too much: the title of this blog post is “Geospatial Anarchy”, which was the title of a talk I gave at the danish mapping conference “Kortdage” a week ago (see abstract here). The talk was in Norwegian (but understandable by danes, I hope). There is not much of a point in sharing my slides, as they are kinda devoid of meaning without me talking.

But, even better, the conference also asked if I could write an article covering the topic of the talk. Given the rather short deadline I opted out of the peer-review-process, but submitted a non-reviewed article.

I’ll post the abstract here, and if you want to read the whole article it’s available here.

OpenStreetMap (OSM) is the largest and best-known example of geospatial data creation using Volunteered Geographic Information (VGI). A large group of non-specialists joins their efforts online to create an open, worldwide map of the world. The project differs from traditional management of geospatial data on several accounts: both the underlying technology (Open Source components) and the mindset (schema-less structures using tags and changesets). We review how traditional organizations are currently using the OSM technology to meet their needs and how the mindset of OSM could be employed to traditional management of spatial datasets as well.

Testing Geospatial claims using Qgis, CartoDB and Cesium.js

andersnatten
This summer I hiked to Andersnatten, a rather small mountain in the southeast of Norway. On the start of the trail there was a sign, that among other things, said that you can see 7 parishes from the top. When we reached the top we had a great view, but I couldn’t see any parishes.. That is, I have no idea where the parishes are, so I couldn’t refute or confirm the claim.

Beeing a geospatial geek I thought that this should be possible to remedy. I just needed the Parishes as polygons, and then I could do some analysis. Well, turns out that I couldn’t find any georeferenced parishes. The closes I got was these scanned paper maps. I couldn’t let this stop me, so I opened Qgis and set to work. Luckily the parish borders resembles modern day municipality borders rather close, so with the georeferenced paper maps, and some other Qgis magic (perhaps more on this in a later blog post) I managed to digitize all the 315 parishes from 1801.

I then loaded these digitized parish polygons into cartodb, and colored the ones around Sigdal, the parish where Andersnatten is. The map turned out like this:

With this in place it was rather certain that 7 was a reasonable amount, there are 6 parishes sharing a border with Sigdal, these should be see-able. According to this article “Dust, water vapour and pollution in the air will rarely let you see more than 20 kilometres (12 miles), even on a clear day.”

Ok, 20 km, lets see how close the 7 nearest parishes are to Andersnatten, using a PostGIS query in Cartodb:

SELECT 
	name,
	ST_Distance(
      the_geom::geography,
      ST_SetSRID(
        ST_MakePoint(9.41677103, 60.11744509),
        4326
      )::geography) / 1000 as dist
FROM prestegjeld
ORDER BY dist
LIMIT 7

This gives

Sigdal      0
Rolloug     5.818130882558
Flesberg    13.510679336426
Modum       19.686924594812
Næss        20.103683955646
Nordrehoug  22.199498534301
Tind        24.804343832136

Ok, so the farthest parish of the seven are 24 kms away, give us some leeway since we are on a 733 m high peak. Interestingly, the closes ones doesn’t overlap with neighboring parishes.

Ok, but, line of sight? What if there are other mountains blocking the view? Since I’m already working on a Cesium.js project I decided to add the CartoDB map to a 3d Model and do some visual tests.

View North
View North

View Southeast
View Southeast

View South
View South

View West
View West

Oh, that’s a suprise. Ok, Cesium does not add “dust, water vapour or air pollution”, and the height model might be a bit off, but nonetheless: 13 (possibly 14) parishes can be seen in this model! That is double the number stated on the sign! Guess they have backing for their claim after all!

Oh, by the way: the digitized parishes are available at GitHub

GIS Programming: languages breakdown

Yesterday i found this post on geoawesomeness, with the intriguing headline “Learning GIS programming: An overview”. After reading it I felt a bit disappointed though. It was basically a breakdown of different programming languages and their usages in the GIS field. While this in itself is a good thing, I think it left a great deal out and confused some. Then I thought “well, instead of complaining, do it better yourself!”.

So here we go, my breakdown of some selected programming languages, their usages in the GIS field, along with notable examples and libraries. I’m ordering the languages roughly by age. Bear in mind that I was born in the 80ies, so your favourite language from before 2000 might not make it to the list if it’s not around anymore.

Fortran
This may be the exception to the previous statement, but Fortran is still around, I’ve even programmed in Fortran.

Fortran is an imperative language, the first compiled language, dated back to 1957. It’s still used today in numerical computations, but in the GIS field it’s largely legacy code that still is in Fortran. The only example I can think of is a set of geodesic functions we used at the university: Holsen’s småprogrammer.

Unless you know Fortran by heart and like working with legacy code you can safely ignore this language.

C/C++
C and C++ is actually two different languages, or: C++ is a superset of C with object oriented capabilities, while C is an imperative language. They date from 1970/1980, and since I don’t really know these languages I’ll treat them like the same. My impression is that they are rather “down to the metal”, you have pointers, memory management and stuff like that.

Unlike Fortran, C/C++ is still in widespread use, in the GIS-field it’s being used for several desktop applications of some age, as well as in what I’ll call the “first wave” of open source libraries and utilities. Notable mentions are PostGIS, OGR/GDAL, PROJ.4 and Mapserver.

While you may now know C/C++ and never really write a line of code in it, you will be using some tools written in it, either as a database, through the command line or through language bindings.

Java
Java is an object-oriented, multi-purpose language from 1995. It was originally developed by SUN. It’s become known for it’s rather “enterprisy” libraries, with several layers of abstractions and other strange things. Despite this, the language has gained widespread use, although it’s prime time may be past, although Java is the programming language for Android apps.

Java libraries was the “second wave” of open source GIS, and brought us libraries and tools like GeoServer, GeoTools, JTS and GeoWebCache.

Just because of GeoServer I think you should know some Java to get along as a GIS-developer. GeoServer has support for plugins, written in Java. This means that mastering Java you will be able to extend GeoServer to your needs. Java is not all that difficult in itself, but Java-code tends to be bogged down in layers of abstraction as mentioned earlier.

C#
C# is, in a way, Microsofts version of Java. It’s object oriented at it’s core, and a multi purpose language. Released in 2000 it’s gained a large following in “Microsoft shops”, and it’s way better than anything Microsoft has previously made. The language itself is rather nice, but suffers from some of the same enterprisyness as Java, and the tooling is completely tied to Microsoft (Visual Studio and the like) if you stick with the .NET-platform (as most do).

This may be the reason why the open source community hasn’t embraced C#, but there are some ok-ish libraries, mainly NetTopologySuite and some ports of Proj.4. At least in Norway you’ll have to be a good navigator to avoid C# and .NET, it seems to be the preferred language and platform for several consultancies, software houses and governmental bodies.

Python
Python is a multi-paradigm, dynamically typed language focused on readability. It’s not the fastest language around, but can use C/C++ bindings to speed up things.

Python has been adopted by ESRI as the scripting language of choice for their ArcGIS-platform, as well as by QGIS, where you have access to a python REPL and can write plugins using Python. There are also other GIS-libraries for Python, mainly Shapely, Fiona and Rasterio, as well as several other tools. On the applications side there is the tile server MapProxy and several other utilities.

Python is a really great programming language in itself, easy to grasp, enforces clean, readable code, and with the usage both in ESRI and QGIS it’s a language that you most definably should know it you work with GIS.

JavaScript
JavaScript was once known as the programming language for web browsers, and was regarded as clumsy, difficult and a toy language. That’s changed a bit the last years, with better tooling and some improvements to the language itself, but it still is a dynamic language with both parts object orientation and functional programming sides to it. The rise of Node.js also made JavaScript a general-purpose language, and this constitutes the “third wave” of open source GIS-libraries if you ask me.

From the advent of Google Maps and OpenLayers, JavaScript found it’s place in the GIS-domain as the language to write web map clients in (that is, after people realized that Flash and Sliverlight where blind alleys). Now there is a large ecosystem of browser-libraries, such as OpenLayers 2 & 3, Leaflet, mapbox-gl-js, proj4js and several more.

As for Node.js, this has been adopted by the “geohipster”-company Mapbox, which uses JavaScript for several parts of their server-stack, resulting in open source libraries such as Turf.js.

Again, JavaScript is really a language to focus on if you plan on doing any web-related GIS-work at all. Just don’t think you know JavaScript because the syntax is close to that of Java/C#, and do take your time to dig in to the functional sides of the language. And stay clear of Angular.js, unless you really like enterprisy code! JavaScript still has it’s quirks, and there are released several new frameworks, tools and libraries each day, so you may find this language a bit confusing.

These are mainly the languages that are used today as far as I know, but there are some other languages that might be worth looking into, namely:

Swift/Objective-C: Used for app development on the Apple platform, I really don’t know anything about this, but there gotta be some libraries, as there are maps both on iPhones and iPads.

Go Is a relatively new language from Google, perhaps described as C for the new century? I’ve never used it, but I wan’t to use it as I know several people who really seem to like it. As for GIS-libraries I’m not sure, but I believe there are wrappers for OGR/GDAL and Proj.4 available.

Clojure Is a Lisp-implementation using the JVM. It’s really functional programming, a style which I’ve been attracted to the last year or so, although I haven’t used Clojure at all, and I do not know if there are any GIS-libraries available, but hopefully?

There are probably a dozen more languages that could be included in this list, like Scala, Groovy, Ruby or PHP, but I really don’t know them at any depth, and I’m not sure about how they stack up when it comes to GIS. If you do know, drop me a comment!

A week of Geo and Beer

A month or so ago my colleague mentioned that we where considering sending someone over to San Francisco to get to know the Mapbox-stack even better. I think I spent two seconds thinking before I said something like “Going to San Francisco to visit Mapbox? Can I join?” And, as it turned out my schedule and area of knowledge seemed to be a good match, so I booked tickets together with my other colleague that would be coming along. Seriously, a week in SF, with it’s great vibe, superb beers and spending time with one of the most innovative Geo-players? It’s perfect! What could be better?

Well, as events turned out, I found myself in Copenhagen the weekend before my flight to SF, visiting a friend together with my girlfriend. As I left Norway friday afternoon i wrote a Tweet, proclaiming I was exited to be visiting Copenhagen and SF in one go. Then Asger Pedersen from the danish geo-geek company Septima suggested we’d meet up for some beers. I wasn’t really sure I had the time, but along the weekend we agreed to meet up. Well, before that there was beers to be had. On Saturday we headed down to Kødbyen to check out Mikkeller and Three Floyds’ new brewpub: Warpigs. This place opened the day before we visited, and with it being a really sunny and warm day in Copenhagen, the place was packed. Danish alcohol laws are fortunately relatively permissive, so we found ourselves sitting on the pavement outside drinking our beers. Which where great by the way!.

2015-04-11 15.07.50 (Custom)
Warpigs

2015-04-11 16.03.26 (Custom)

The place itself is also really cool, nothing like the “classy” “high-end” feel of the Mikkeller Bars. There was also an outdoors market going on in Kødbyen this Saturday, making the afternoon really pleasant. Great beers, good food and lots of people. We rounded off by a trip to Fermentoren, a couple of blocks away from Warpigs, before we hit our bikes, and went home for a bit of relaxation and then out for dinner, followed by a visit to Mikkeller and Friends, which was packed and not that great of an experience compared to the last time I visited. The day ended in our friends apartment, emptying his refrigerator of the beers I had bought at Kioskh earlier that day.

2015-04-11 17.27.37 (Custom)
Fermentoren

This amount of beers meant that Sunday was a bit of a challenge, but I had agreed with Asger to meet him at Taphouse at four PM. A bit tired I still biked down there and after a couple of beers a guy said “I presume you are Atle?” This turned out to be Martin from Septima, and during the next ten minutes Asger and Gregers (also Septima) showed up. Taphouse is a great place, 60 taps going, but I’m “afraid” we spent our 3 hours there talking so much that I didn’t really put all that effort into actually tasting and analyzing the beers. A bit empty place on a Sunday, but we had great fun. Seems like we have a lot in common, and for me this set the standard for what I expected SF to be: meeting people that are deeply passionate about Geo, chatting with them on various topics and really having a great time. I had to leave after some hours, but as Septimas office was just a 5 minute walk from Taphouse, I was invited to take a look. Really a cool office, in what used to be the offices of a record company.

2015-04-12 15.34.42 (Custom)

2015-04-12 19.06.50 (Custom)
Septima Offices

This pretty much completed the Copenhagen-part of my trip, lots of great beers, and good company. I really hope I’m able to visit Septima again, wether it’s on business or just a friendly chat. The next day I took the Metro to Kastrup, met my colleague Keino and got on the plane to SFO, 11 hours really let’s you focus on your book, and I’m really making progress on “Wheel of Time”. When we landed in SFO it was 15.00 local time, 24.00 Norwegian time, and with no sleep on the plane we where a bit tired. We managed to find a taxi to our “Loft” in South of Market (SoMa), rented through AirBnB. Great location, enough space, but we struggled a bit to get the WiFi working, gotta meet the basic needs of living. We found out quickly that the baseball season opened this day, and with the stadium being located 3 blocks away the streets where crowded. We found a place to grab some food and a couple of beers, but nothing much to write home about. On the way back we bought some beers, but after drinking one in the apartment, it was 20.00, and we where dead tired.

2015-04-14 16.01.04 (Custom)

The next day we had an appointment with Paul from Mapbox at 10.30, so we set out for a 30-ish minute walk to their office, stopping for breakfast at a really American diner, BLT and coffee started the day. When we arrived at the Mapbox SF office, located in an old storage house, we where met by Paul and Matt, and after a quick introduction we got down to business; i.e. being given presentations on several aspects of the Mapbox technology stack by various key persons involved in making those. We had a chance to ask a lot of questions and really got a feel for what’s possible to do with their stack! After lunch, a great sandwich bought at a new mall in the Twitter HQ on Market street, we went back to their office, and blended in in their open-floor working area. Sitting in a sofa in SoMa, drinking a Lagunitas IPA while working on vector tiles I really felt at home. It was great having the Mapbox people available for questions, and their open-space office really did work much better than any such I’ve worked in in Norway. At around 19.00, Paul and Matt took us to the AT&T stadium for a baseball-match. We went there in “an Uber”, great taxi-service which I’ll get back to. Anyways, Paul and Matt tried their best to explain the rules of the game to us, bought us beers and really proper American fast food. I’m not really that into sports, and baseball is complicated, but the stadium had a great view, and we spent 3-4 hours talking about this and that, much like the atmosphere I was hoping for when I was in Copenhagen with Septima!

2015-04-14 19.40.54 (Custom)

The game ended, SF Giants lost and Keino and I went for a couple of more beers at a nearby sports bar before heading home, still a bit jet lagged. The Wednesday was spent much in the same manner as the Tuesday, a session of presentations on various parts of the Mapbox stack before lunch (at a great Japanese place, they had lovely Ramen!) At lunch Mapbox CEO Eric Gundersen joined us, and while I guess we’ll cover the usage of Mapbox technology at Norkart in a blog post at our companys blog, what Mapbox is doing is really interesting and we are seeing some great opportunities here! Post-lunch was spent coding some more, we did a climb up to the roof of their office for a beer, and then presented what we had been working on. Great being able to show what we got up and running in relatively short time, and getting the proper channels for feedback and questions.

These two days concluded the bulk of the geo-part of the trip, although we spent half the day on both Thursday and Friday in the “Loft”, coding and updating our colleagues back home. After the “show and tell” session at Mapbox Wednesday evening we headed over to Zeitgeist, a really cool place with an impressive tap list! Still, our clocks wasn’t all that aligned with SF time, and combined with lots of impressions and a number of beers we took a taxi home at a reasonable time.

2015-04-15 23.45.02 (Custom)
Zeitgeist

Thursday afternoon we decided to be a bit touristy, we walked up to Little Italy, an Anchor Steam, an ok pizza, then Lombard street up to Russian Hill. On our way back we stopped by Rogue Public House, another place I’ve visited before. Not the best beer place in town, but they do have a rather impressive beer lineup. On our way back we stopped by 21st Amendment brewery in SoMa, a new place for me. I really liked this place, great atmosphere and good beers.

After concluding our work on Friday my colleague wanted to do some shopping, and so did I! I went almost straight to City Beer Store, centrally located in SoMa. This is a bottle shop with an impressive range, as well as 10-ish taps. I had 3-4 beers here and bought enough bottles to fill my suitcase, and got a tip about Cellarmaker, a microbrewery just 3 blocks away. Small place, crowded, but I found a place at the bar and had a couple of beers. Impressive stuff! I realized I had to hook up with my colleague again, so i bought a 1 liter growler of one of their beers, which we shared in the “loft”.

2015-04-17 15.28.11 (Custom)
City Beer Store

2015-04-17 15.59.26 (Custom)
Cellarmaker

We had gotten some restaurant-recommendations from the Mapbox-guys, so we sett off to Lolinda (“If you guys are interested in some great Argentine food and a very cool interior design”). This was a bit far from us, so we decided to test Uber, the taxi app the half the city seemed to be using. Did it work? Absolutely! Within 2 minutes we where hooked up with a driver and on our way. Lolinda was what I guess you would expect, a crowded, noisy place, but great beers and coctails (finished the meal with a Manhattan, that was the only non-beer alcohol I drank throughout the trip I think!).

My colleague had an early flight back home on Saturday, so we took an Uber back, and I went to Safeways and bought 4 beers, 1 bag of chips and and the latest issue of Cosmopolitan. Great combo? However, After a couple of beers I fell asleep as well. Saturday the 18th was my birthday, and I had to relocate to another hotel (Hotel Boheme) in Little Italy. To fight off the hangover I decided to walk, but the topography of SF means that there is no such thing as “Manhattan distance”, so I ended up walking up and down a lot, through crowded streets in Chinatown. An expirience, absolutely!

When I finally got to the hotel I had one goal: find the really great sandwich shop I visited the last time I was in SF: Google knew that place: Freddie’s Sandwiches. As they don’t have any tables, I had my BLT in Washington Square park, in lovely weather.

2015-04-18 11.42.33 (Custom)

I’m guessing that all I really wanted was for the clock to turn “beer o clock”, and around 15.00 I got an Uber to Toronado, a really great bar in Lower Haight. Kinda loud, lots of hoppy beers (including “Pliny”). Beeing Saturday the place was crowded, but there are benefits to drinking alone: I managed to squeeze in at the bar, and after a couple of beers I even talked to people! I was recommended the burrito place and the sausage place next door, but couldn’t decide, so ended up with both. After two large meals and 5-6 beers I felt like I needed to do something else, so I decided to head back to the hotel (around 18.00). The trip back became a long one, as my co-passenger was really indecisive, but the driver was a nice guy. End of story: when I got back I felt like another beer! There was a place 4-5 blocks away that looked promising on ratebeer: La Trappe Cafe. Really the opposite of Toronado, a rather quiet place in a cellar, focusing on Belgian imports, but they had some american sours as well. I spent a good three hours here as well. Not the star beer place in the city, but worth a visit.

2015-04-18 15.27.04 (Custom)
Toronado

Sunday I woke rather early and felt sorry for myself. Hungover, 31 years old and with a 10 hour flight 10 hours away. What to do? Google “best hamburger SF”, and go to Mo’s Grill. There was actually a line at 10.00, but after I while I realized that there was free seating at the bar, so i set down, got a coffe and ordered a “Burger with Sharp Cheddar Cheese, topped with Smoked Ham, melted Swiss Cheese, and Chipotle Mayonnaise” wow! afterwards I found a small cafe and sat utside for several hours reading, but then it got cold and I didn’t want more coffe, so I went back to Rogue and asked for a “sessionable beer”. What I ended up with: “brutal IPA” at 6% ABV(!). After the beer I walked arund some more, before the transport to the airport. That’s probably not that interesting, but I did get to try the “Mikkeller Sky High Wit” on the plane back!

2015-04-19 10.33.58 (Custom)

So, now I’m sitting at Kastrup, thinking that I’ll go easy on the beer drinking for some days 😉 Had a really good time, I’m super happy with having an employer that sends me to San Francisco to do stuff like this!