aboutsummaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorJulien Dessaux2021-04-06 17:58:31 +0200
committerJulien Dessaux2021-04-06 17:58:47 +0200
commitaaaca332a9b86f1f733fac8bb3ede3d28ec82047 (patch)
tree58fc28bd8bb26a8206bb87461acbf51ae2856f57 /content
parentAdded content (diff)
downloadwww-aaaca332a9b86f1f733fac8bb3ede3d28ec82047.tar.gz
www-aaaca332a9b86f1f733fac8bb3ede3d28ec82047.tar.bz2
www-aaaca332a9b86f1f733fac8bb3ede3d28ec82047.zip
Added blog article about trains.adyxax.org
Diffstat (limited to 'content')
-rw-r--r--content/blog/miscellaneous/open-data-sncf.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/content/blog/miscellaneous/open-data-sncf.md b/content/blog/miscellaneous/open-data-sncf.md
new file mode 100644
index 0000000..6c1292d
--- /dev/null
+++ b/content/blog/miscellaneous/open-data-sncf.md
@@ -0,0 +1,23 @@
+---
+title: "Exploring France's train network open data api"
+date: 2021-04-06
+description: I wrote a small web app to display train timetables
+tags:
+ - golang
+---
+
+## Introduction
+
+I am quite fond of the open data initiatives in France and across Europe. When my partner expressed frustration at the official website and mobile applications full of ads and slow to query I decided to see what I could do to help.
+
+## An extensive API
+
+Let me tell you the API is quite extensive, you can query absolutely anything! Just have a look at the [documentation](http://doc.navitia.io/) : time tables, realtime departure information, journey planning... I did not expect something so complete!
+
+It is free to use for up to 5000 API calls per day, which is really generous considering the pagination features allow you to get up to one thousand results per query for example when listing all of France's train stops.
+
+## A small golang contribution
+
+I wrote https://git.adyxax.org/adyxax/trains, which you can see live at https://trains.adyxax.org/. It is just a simple timetable for now but a lifechanging thing for my partner : no more frustration!
+
+I also used this opportunity to polish my golang experience, it was my first time writing a web server with this language. I have several feature ideas like perturbation alerting or a small front to select and browse other stations than the one and only configured when the web app starts... but it might just be enough for our use case as it is. I will take a few days and think it over.