We are attempting to recreate a metric in Snowflake that is out-of-the box if folks use BigQuery with Google Search Console API. However, we are using Airbyte and we do not have sum_top_position in our fields from GSC. How can we calculate this metric (sum_top_position)?
We aren't sure what to try. I'm not sure how this metric is achieved and we need help with a formula based on position (a value we have).
To have an approximation of the sum_top_position, you need to do result[position] * result[impressions] when querying data from GSC API.
=> you will then get an approximate result (not 1:1 as far as my tests went) but I don't know if Google apply thresholds with positions for this metric (aka only position above a certain position - maybe 100 ? Thus explaining differences I have)
Tell me if it helps or if you had a better results using something else