Skip to content

Commit

Permalink
MAX_STARS_IN_VIZQUERY back to 1000
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirill Sokolovsky committed May 18, 2023
1 parent b52545e commit 273bd46
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/solve_plate_with_UCAC5.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
#define _GNU_SOURCE // for sincos()
#endif

#define MAX_STARS_IN_VIZQUERY 500
#define MAX_STARS_IN_LOCAL_CAT_QUERY 2*MAX_STARS_IN_VIZQUERY
//#define MAX_STARS_IN_VIZQUERY 500
//#define MAX_STARS_IN_LOCAL_CAT_QUERY 2*MAX_STARS_IN_VIZQUERY
#define MAX_STARS_IN_VIZQUERY 1000
#define MAX_STARS_IN_LOCAL_CAT_QUERY MAX_STARS_IN_VIZQUERY

#define MAX_DEVIATION_AT_FIRST_STEP 6.0 / 3600.0 // 5.0/3600.0 //1.8/3600.0
#define REFERENCE_LOCAL_SOLUTION_RADIUS_DEG 1.0
Expand Down

0 comments on commit 273bd46

Please sign in to comment.