The time it takes to execute this is the total time of the getWeather and reverseGeocode calls combined. I know I can use a map
operator and two async/wait blocks to execute the two calls asynchronously. Is it possible to execute multiple coroutines
like this with flow operators? I tried a couple of different things but without success?
I saw https://github.com/Kotlin/kotlinx.coroutines/issues/1147 so perhaps all operators are sequential for now.