Gonna.surf - user friendly surf forecast

Gonna.surf is an innovative surf forecasting website designed for beginner and intermediate surfers.

Gonna.surf’s design is focused on making technical measures and metrics easy to read and understand, through the use of visuals and colored indicators.

Features highlights:

screenshot of Gonnasurf's detailed surf forecast feature
Detailed surf forecast
screenshot of Gonnasurf's interactive map feature
Interactive map
screenshot of Gonnasurf's spot guide feature
Visual spot guide

Case study

Being in touch with many surfers while living in Fuerteventura, Canary Islands, I couldn’t help but notice how the existing surf forecasting websites and apps were either providing inaccurate information, or too technical and difficult to read for the majority of surfers.

As a consequence, surfers waste time, energy, and sometimes get themselves in dangerous situations. Some surfers spend hours driving all around the coast to look for a surfable spot, because they didn’t realize that the surf conditions were not good in the places they first went to. Or some others get injured, because they were not aware that today’s conditions were dangerous at the same spot where they had a nice session the previous day.

Witnessing this situation, I took the challenge of finding more accurate data, and presenting it in an easier way.

Contents

Challenge: Interpreting surf forecast is difficult

A surf session at a given surf spot can be so different, depending on the weather conditions. Some days, you catch one wave after the other, some other days, you need to wait for 15 minutes between each set of waves. Sometimes, you need to be constantly paddling, as currents make you drift away from where the waves break. On ‘clean’ days, glassy waves offer long rides, and when it’s windy, you might only be able to take off, do just one or two turns, before the wave fades away.

The island of Fuerteventura, where I’m living, has surf spots in all coasts. Surfers spend a lot of time driving around, looking for a place where surfing is good. Time and fuel are wasted, if we go check for the wrong coast.

Some conditions make the surf dangerous, so it’s really important to be able to determine how the situation is.

It’s not just about how big or powerful the waves are. Some other factors also in play are:

  • swell power and direction,
  • wind speed and direction,
  • tide level,
  • bathymetry around the surf spot,
  • movement of sand banks.

So ideally, as a surfer, you would need to study and be able to interpret a multitude of measures, to decide when and where to go surfing.

This is not so easy, requires quite some learning and experience. Many beginner and intermediate surfers need an easy way to get the information, without having to study the technicalities.

In the end of 2021, the most popular surf forecasting app in the area where I live - called magicseaweed - was relatively user-friendly, but the data provided was quite inaccurate. Some other websites using other data sources were more precise, but more technical, and only used by more advanced and geeky surfers.

I needed something else, as I often found myself having to open three different websites and apps, comparing the data they provide, in order to decide where and when to go surfing.

Being in touch with many other beginner and intermediate surfers, I also saw a need for a solution easier to understand. Many of them only look at the wave height information and ignore the rest, while some other resign themselves to only look at the tide level, because they find the other available information to complex.

Designing an easier solution

Gonna.surf website and mobile app has been created to offer a balance between ease of use and completeness of data.

Beyond surf forecasting, it also features:

  • visual surf spot guides, helping newcomers try new spots safely,
  • a surf knowledge base, to provide free education about key aspects of surfing: safety, technique, communication…

Let’s have a look at some aspects of the design process which led to the creation of gonna.surf.

Making it simple

A system of red / amber / green / teal colored indicators has been created, and synthesizes an interpretation of all available factors extracted from the forecast. Colorblind people - which are about 8% of the population - can switch to a palette offering more distinguishable colors.

While there is no perfect formula to determine how good or bad the surf conditions are going to be, and these are also a matter of personal preferences. However, the indicators provide a baseline.

Some of gonna.surf users, less experienced in surfing, don’t want to see any measure or detailed information, and solely rely on this indicator to go surfing.

A summary table shows them these for the whole day, in each coast of the island.

Screenshot of Gonna.surf's summary surf forecast
Screenshot of Gonna.surf's summary surf forecast

Keeping it complete and user-friendly

The detailed surf forecast pages show all available forecast measures values. Visual representations are provided whenever relevant, to keep the solution user friendly.

For example, instead of just showing wave height measure, an image representing a wave of given size is displayed. This makes it easy to visually scan the forecast table, and see how the swell evolves hour after hour.

Design of Gonna.surf's wave height visual
Design of Gonna.surf's wave height visual

Swell power indicates how strong the waves are likely to push, and how much current there might be. Wind speed also affects the quality of the waves. For these, a colored bar below the measure values provide visual cues about how high or low they are.

Color scales used to denote swell power and wind speed
Color scales used to denote swell power and wind speed

The detailed surf forecast makes it easy to check how the surf is likely to be at a given hour, and to get the evolution during the day.

Detailed surf forecast visual
Detailed surf forecast visual

Making it fast

Gonna.surf is lightweight and optimized to load fast - it gets a 99 / 100 score on Google’s Pagespeed Insight test . This performance lets surfers check the forecast on the go, where the cell coverage is bad. The competitors’ scores are between 10 and 50 / 100.

Screenshot of Google Pagespeed Insights report for gonna.surf
Screenshot of Google Pagespeed Insights report for gonna.surf

How can it be so optimized? Was some enormous amount of engineering necessary to get the speed and SEO optimization?

Actually, not at all. Simply following best practices, avoiding bloated frameworks, and thinking before developing. There is so much literature on the topic, it’s a question of culture and understanding on how the web works.

Making it automated

Because the website is local, some people tend to think that I manually type in the data a couple of times per day. It is not the case.

From day 1, the retrieval of latest forecast has been automated. It is not so costly to do so, and gives me the freedom to work on other aspects of the project - or other projects and client work.

Technology choices

Website

Initially developed using Svelte Kit, the site has been migrated to Astro framework - still using svelte components.

The static pages (knowledge base, spot guides, help sections) are pre- generated on the server (SSG), in order to be served as quickly as possible. Surf forecast pages, for which the content changes more frequently are rendered on the fly on the server. This combination is made easy thanks to the hybrid mode offered by Astro.

nginx is configured to serve the pages with top performance and security.

Data visualizations

Being a bit of an artisan, I always liked to use d3.js directly, rather than a higher-level charting framework. This is because d3 offers a total freedom on the design of the visualizations, whereas the charting libraries are often limited in terms of customization and interactivity. This comes at a cost: besides d3’s higher learning curve, there is generally more code to write, and more headaches when having to manage visualization of nested data.

In this project, d3 was limited to generating the visuals, and the interactions and reactivity are done using svelte. The approach used by svelte is different, as it inherits of the design concepts from popular web frameworks like react.js and vue.js. Overall, it ends up being easier to work with than using d3.js alone, especially when maintenance is needed.

Data Integration

Node.js powers the extraction and processing of weather forecast data from the API provided by the Spanish weather agency. As I always do, the data extraction is running in a separate process than the web server. This is to avoid any possible interference: if the data processing fails for any reason, the pages are still served (and use latest successfully extracted data).

You might wonder why a scripting language was used instead of an ETL (Extract, Transform, Load) tool - especially since I am an analytics professional. I definitely advocate for the use of ETL tools over scripting in larger projects, where a team is involved, and a higher number of data processing jobs need to be executed and maintained. In Gonna.surf, only one data provider is in scope, and the number of API endpoints to query is limited. Node.js is great for this use case, and fully featured. The framework is very mature and robust. Also, because node.js is already used to power the website, less tools need to be installed, configured and maintained for that project.

Node.js offers the following either out of the box, or thanks to its available ecosystem of modules:

  • scheduling
  • retrieving data from (anywhere) in the web
  • data processing: filtering, calculations, mapping…
  • saving data to databases or files.
  • monitoring and alerting

Results

General perception and adoption

People tend to avoid having to switch tools. This is natural, and universal. Why make the effort to learn and try to understand new information, get used to a new presentation, and new features? While Gonna.surf makes some well known information easier to read and access, it features prominently the swell power measure, with which many less experienced surfers are not familiar.

Despite this learning curve, gonna.surf has managed to attract and grow a userbase, ranging from 600 to 900 monthly users at the time of writing - while solely covering forecast for the North of Fuerteventura island, and without relying on any form of paid advertising.

January 2022 February 2022 March 2022 April 2022 May 2022 June 2022 July 2022 August 2022 September 2022 October 2022 November 2022 December 2022 January 2023 February 2023 March 2023 0 100 200 300 400 500 600 700 800 900 1000 Visits to gonna.surf - 2022-2023

Dozens of people really like the product and made the effort to send support messages, as well as constructive feedback.

Search engines ranking

Some factors would lead to think that gonna.surf would not rank well on search engines: the website doesn’t have many pages (about 30, versus thousands on competitors’ sites), there is not so much text in them, and the site is young and has very little backlinks.

Still, Google search engine seems to really like the site, and some of the pages already rank in the top 5 results for relevant keywords, only months after having been published.

This can probably be explained by these facts:

  • gonna.surf is lightweight and loads fast
  • gonna.surf is mobile-friendly
  • the content is helpful and focused on the topic

Closing thoughts

As a Business Intelligence project, gonna.surf’s appeal is in the user-centric design, presenting easy and visual insights instead of technical measures.

As a side project, it is great to see that a robust platform can be built quickly, and offer a refreshing experience relevant for its audience.

I would love to take gonna.surf and create a startup from it. Many business models could be integrated in the platform. I also have a hundred more ideas on how to enhance the website. Time is limited, and having a business co-founder with whom to develop the concept would be great. Don’t hesitate to get in touch if you might be that person, or if you know someone else who would.

Alef is specialized in building web-based data analysis and data visualization solutions.

Do you think you have a challenge for us? Let's talk.