I follow this great blog. In this blog, the author has drawn a complete picture of all types of isolation and consistency and the relationship between them.

But based on the Google's blog, there is another type of consistency named External Consistency which is provided by Google's Spanner database. As I understood:
External consistency = Strongly Consistency + Strict Serializable
After some research, the definition of external consistency might be:
For any two transactions, 1 and 2 (even if on opposite sides of the globe): if 2 starts to commit after 1 finishes committing, then the timestamp for 2 is greater than the timestamp for 1.
I still don't see the differences between External consistency and Strict Serializability. Please give me an example that it satisfies Strict Serializability but not External Consistency.
Thanks