We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When Min, Max and Avg are computed for lat/lon in events, we do not take into consideration events that span the antimeridian.
for example, an event containing the points:
will have
MIN(lon) = -179 MAX(lon) = 179 AVG(lon) = 0
when what we want is
MIN(lon) = -178 MAX(lon) = 178 AVG(lon) = 180 (or -180)
The text was updated successfully, but these errors were encountered:
a2443f8
pwoods25443
No branches or pull requests
When Min, Max and Avg are computed for lat/lon in events, we do not take into consideration events that span the antimeridian.
for example, an event containing the points:
will have
MIN(lon) = -179
MAX(lon) = 179
AVG(lon) = 0
when what we want is
MIN(lon) = -178
MAX(lon) = 178
AVG(lon) = 180 (or -180)
The text was updated successfully, but these errors were encountered: