예제 #1
0
 return(await covidUnitOfWork.Credentials.GetPointsInCircleAgregated(lat, lon, radiusKms, country, state, ageRange, sex));
예제 #2
0
 => M.Length == dim2_?IntForward(lat, lon, h, M) : IntForward(lat, lon, h, default);
예제 #3
0
 => Forward(lat, lon, out _, out _, setzone, mgrslimits);
예제 #4
0
 => IntForward(lat, lon, h, M.Length == dim2_ ? M : default);
예제 #5
0
 => Forward(lat0, lon0, lat, lon, out _, out _);
예제 #6
0
 /// <summary>
 /// Forward without returning the azimuth and scale.
 /// </summary>
 /// <param name="lat">latitude of point (degrees).</param>
 /// <param name="lon">longitude of point (degrees).</param>
 /// <returns>
 /// <i>x</i>, easting of point and <i>y</i>, northing of point, in meters.
 /// </returns>
 /// <remarks>
 /// <paramref name="lat"/> should be in the range [−90°, 90°].
 /// A call to <see cref="Forward(double, double)"/>
 /// followed by a call to <see cref="Reverse(double, double)"/>
 /// will return the original (<paramref name="lat"/>, <paramref name="lon"/>) (to within roundoff).
 /// The routine does nothing if the origin has not been set.
 /// </remarks>
 public (double x, double y) Forward(double lat, double lon) => Forward(lat, lon, out _, out _);
예제 #7
0
 (decimal.Round(lat, precision, rounding), decimal.Round(lon, precision, rounding));