Created
September 28, 2010 13:13
-
-
Save rkusa/600962 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var statusChangedToReady = from sc in statusChanged | |
where sc.Status == GeoPositionStatus.Ready | |
select sc; | |
var positionChanged = from _ in statusChangedToReady | |
from pc in watcher.GetPositionChangedEventObservable() | |
where !pc.EventArgs.Position.Location.IsUnknown | |
select pc.EventArgs.Position; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment