Skip to content

Commit

Permalink
reduce radius to increase accuracy relative to coords
Browse files Browse the repository at this point in the history
  • Loading branch information
scott-the-programmer committed Jan 10, 2024
1 parent 73a2b1c commit 0dbd722
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Satellite.DataAccess/Services/NASASatelliteService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public SatelliteService(ISatelliteClient nasaSatelliteClient, IMemoryCache cache
return cachedData;
}

var response = await _nasaSatelliteClient.GetSatellitesAsync(_coords.Longitude, _coords.Latitude, 90, (int)type);
var response = await _nasaSatelliteClient.GetSatellitesAsync(_coords.Longitude, _coords.Latitude, 30, (int)type);
var satellites = response.Select(i =>
{
return new Models.Satellite
Expand Down

0 comments on commit 0dbd722

Please sign in to comment.