1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740
|
unit unit_annotation; {deep sky and star annotation & photometry calibation of the image}
{$mode delphi}
{Copyright (C) 2017, 2024 by Han Kleijn, www.hnsky.org
email: han.k.. at...hnsky.org
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at https://mozilla.org/MPL/2.0/. }
interface
uses
forms,Classes, SysUtils,strutils, math,graphics, Controls {for tcursor},astap_main, unit_stars_wide_field;
procedure plot_deepsky(extract_visible: boolean;font_size: integer);{plot the deep sky object on the image. If extract is true then extract visible to variable_list}
procedure plot_vsx_vsp(extract_visible: boolean);{plot downloaded variable and comp stars}
procedure load_deep;{load the deepsky database once. If loaded no action}
procedure load_hyperleda;{load the HyperLeda database once. If loaded no action}
procedure load_variable;{load variable stars. If loaded no action}
procedure load_variable_13;{load variable stars. If loaded no action}
procedure load_variable_15;{load variable stars. If loaded no action}
procedure plot_and_measure_stars(img : image_array; memo: tstrings; var head : Theader; flux_calibration,plot_stars, report_lim_magn: boolean);{flux calibration, annotate, report limiting magnitude}
procedure measure_distortion(out stars_measured: integer);{measure or plot distortion}
procedure plot_artificial_stars(img: image_array;head:theader);{plot stars as single pixel with a value as the mangitude. For super nova search}
procedure plot_stars_used_for_solving(starlist1,starlist2: star_list; hd: Theader;correctionX,correctionY: double); {plot image stars and database stars used for the solution}
function read_deepsky(searchmode:char; telescope_ra,telescope_dec, cos_telescope_dec {cos(telescope_dec},fov : double; out ra2,dec2,length2,width2,pa : double): boolean;{deepsky database search}
procedure annotation_to_array(thestring : ansistring;transparant:boolean;colour,size, x,y {screen coord}: integer; var img: image_array);{string to image array as annotation, result is flicker free since the annotion is plotted as the rest of the image}
function find_object(var objname : string; var ra0,dec0,length0,width0,pa : double): boolean; {find object in database}
var
deepstring : Tstrings;
linepos : integer;
naam2,naam3,naam4: string;
var {################# initialised variables #########################}
limiting_magnitude : double=0;{magnitude where snr is 5}
counter_flux_measured : integer=0;{how many stars used for flux calibration}
database_nr : integer=0; {1 is deepsky, 2 is hyperleda, 3 is variable magn 11 loaded, 4 is variable magn 13 loaded, 5 is variable magn 15 loaded, 6=simbad}
type
tvariable_list = record {for photometry tab}
ra : double;
dec : double;
abbr : string;
Source : integer; //0 local, 1=VSX, 2=VSP, 3=not in AAVSO
index : integer; //source index
end;
var
variable_list: array of tvariable_list;{for photometry tab}
variable_list_length : integer=0;
implementation
uses
unit_star_database, unit_stack, unit_star_align, unit_online_gaia, unit_astrometric_solving;
const font_5x9 : packed array[33..126,0..8,0..4] of byte= {ASTAP native font for part of code page 437}
((
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,0,0,0),
(0,0,1,0,0)),{!}
(
(0,1,0,1,0),
(0,1,0,1,0),
(0,1,0,1,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0)),{"}
(
(0,1,0,1,0),
(0,1,0,1,0),
(0,1,0,1,0),
(1,1,1,1,1),
(0,1,0,1,0),
(1,1,1,1,1),
(0,1,0,1,0),
(0,1,0,1,0),
(0,1,0,1,0)),{#}
(
(0,0,1,0,0),
(0,0,1,0,0),
(0,1,1,1,1),
(1,0,1,0,0),
(0,1,1,1,0),
(0,0,1,0,1),
(1,1,1,1,0),
(0,0,1,0,0),
(0,0,1,0,0)),{dollar sign}
(
(1,1,1,0,0),
(1,0,1,0,0),
(1,1,1,0,1),
(0,0,0,1,0),
(0,0,1,0,0),
(0,1,0,0,0),
(1,0,1,1,1),
(0,0,1,0,1),
(0,0,1,1,1)),{%}
(
(0,0,0,0,0),
(0,1,1,0,0),
(1,0,0,1,0),
(1,0,0,1,0),
(0,1,1,0,0),
(1,0,1,0,0),
(1,0,0,1,0),
(1,0,0,1,1),
(0,1,1,0,0)),{&}
(
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0)),{'}
(
(0,0,0,1,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,1,0,0,0),
(0,1,0,0,0),
(0,1,0,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,0,1,0)),{(}
(
(0,1,0,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,0,1,0),
(0,0,0,1,0),
(0,0,0,1,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,1,0,0,0)),{)}
(
(0,0,0,0,0),
(0,0,1,0,0),
(1,0,1,0,1),
(1,1,1,1,1),
(0,1,1,1,0),
(1,1,1,1,1),
(1,0,1,0,1),
(0,0,1,0,0),
(0,0,0,0,0)),{*}
(
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(1,1,1,1,1),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,0,0,0),
(0,0,0,0,0)),{+}
(
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,1,0,0,0)),{,}
(
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(1,1,1,1,1),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0)),{-}
(
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,1,1,0,0),
(0,1,1,0,0)),{.}
(
(0,0,0,0,0),
(0,0,0,1,0),
(0,0,0,1,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,1,0,0,0),
(0,1,0,0,0),
(1,0,0,0,0),
(1,0,0,0,0)),{/}
(
(0,1,1,1,0),{0}
(1,0,0,0,1),
(1,0,0,0,1),
(1,0,0,0,1),
(1,0,0,0,1),
(1,0,0,0,1),
(1,0,0,0,1),
(1,0,0,0,1),
(0,1,1,1,0)),
(
(0,0,1,0,0),{1}
(0,1,1,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,1,1,1,0)),
(
(0,1,1,1,0),{2}
(1,0,0,0,1),
(0,0,0,0,1),
(0,0,0,0,1),
(0,0,0,1,0),
(0,0,1,0,0),
(0,1,0,0,0),
(1,0,0,0,0),
(1,1,1,1,1)),
(
(1,1,1,1,0),{3}
(0,0,0,0,1),
(0,0,0,0,1),
(0,0,0,0,1),
(0,1,1,1,1),
(0,0,0,0,1),
(0,0,0,0,1),
(0,0,0,0,1),
(1,1,1,1,0)),
(
(1,0,0,0,1),{4}
(1,0,0,0,1),
(1,0,0,0,1),
(1,0,0,0,1),
(1,1,1,1,1),
(0,0,0,0,1),
(0,0,0,0,1),
(0,0,0,0,1),
(0,0,0,0,1)),
(
(1,1,1,1,1),{5}
(1,0,0,0,0),
(1,0,0,0,0),
(1,0,0,0,0),
(1,1,1,1,0),
(0,0,0,0,1),
(0,0,0,0,1),
(1,0,0,0,1),
(0,1,1,1,0)),
(
(0,1,1,1,0),{6}
(1,0,0,0,0),
(1,0,0,0,0),
(1,0,0,0,0),
(0,1,1,1,0),
(1,0,0,0,1),
(1,0,0,0,1),
(1,0,0,0,1),
(0,1,1,1,0)),
(
(1,1,1,1,1),{7}
(0,0,0,0,1),
(0,0,0,0,1),
(0,0,0,1,0),
(0,0,0,1,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,1,0,0)),
(
(0,1,1,1,0),{8}
(1,0,0,0,1),
(1,0,0,0,1),
(1,0,0,0,1),
(0,1,1,1,0),
(1,0,0,0,1),
(1,0,0,0,1),
(1,0,0,0,1),
(0,1,1,1,0)),
(
(0,1,1,1,0),{9}
(1,0,0,0,1),
(1,0,0,0,1),
(1,0,0,0,1),
(0,1,1,1,1),
(0,0,0,0,1),
(0,0,0,0,1),
(0,0,0,1,0),
(0,1,1,0,0)),
(
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,1,1,0),
(0,0,1,1,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,1,1,0),
(0,0,1,1,0)),{:}
(
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,1,1,0),
(0,0,1,1,0),
(0,0,0,0,0),
(0,0,1,1,0),
(0,0,1,1,0),
(0,0,0,1,0),
(0,1,1,1,0)),{;}
(
(0,0,0,0,1),
(0,0,0,1,0),
(0,0,1,0,0),
(0,1,0,0,0),
(1,0,0,0,0),
(0,1,0,0,0),
(0,0,1,0,0),
(0,0,0,1,0),
(0,0,0,0,1)),{<}
(
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(1,1,1,1,1),
(0,0,0,0,0),
(0,0,0,0,0),
(1,1,1,1,1),
(0,0,0,0,0),
(0,0,0,0,0)),{=}
(
(1,0,0,0,0),
(0,1,0,0,0),
(0,0,1,0,0),
(0,0,0,1,0),
(0,0,0,0,1),
(0,0,0,1,0),
(0,0,1,0,0),
(0,1,0,0,0),
(1,0,0,0,0)),{>}
(
(1,1,1,1,0),
(1,0,0,0,1),
(0,0,0,0,1),
(0,0,0,1,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,0,0,0),
(0,0,1,0,0),
(0,0,1,0,0)),{?}
(
(0,1,1,1,0),
(1,0,0,0,1),
(1,0,0,0,1),
(1,0,1,1,1),
(1,0,1,0,1),
(1,0,1,1,1),
(1,0,0,0,0),
(1,0,0,0,1),
(0,1,1,1,0)),{@}
(
(0,0,1,0,0),{A}
(0,1,0,1,0),{A}
(0,1,0,1,0),{A}
(1,0,0,0,1),{A}
(1,0,0,0,1),{A}
(1,1,1,1,1),{A}
(1,0,0,0,1),{A}
(1,0,0,0,1),{A}
(1,0,0,0,1)),{A}
(
(1,1,1,1,0),{B}
(0,1,0,0,1),{B}
(0,1,0,0,1),{B}
(0,1,0,0,1),{B}
(0,1,1,1,0),{B}
(0,1,0,0,1),{B}
(0,1,0,0,1),{B}
(0,1,0,0,1),{B}
(1,1,1,1,0)),{B}
(
(0,1,1,1,0),{C}
(1,0,0,0,1),{C}
(1,0,0,0,0),{C}
(1,0,0,0,0),{C}
(1,0,0,0,0),{C}
(1,0,0,0,0),{C}
(1,0,0,0,0),{C}
(1,0,0,0,1),{C}
(0,1,1,1,0)),{C}
(
(1,1,1,1,0),{D}
(0,1,0,0,1),{D}
(0,1,0,0,1),{D}
(0,1,0,0,1),{D}
(0,1,0,0,1),{D}
(0,1,0,0,1),{D}
(0,1,0,0,1),{D}
(0,1,0,0,1),{D}
(1,1,1,1,0)),{D}
(
(1,1,1,1,1),{E}
(1,0,0,0,0),{E}
(1,0,0,0,0),{E}
(1,0,0,0,0),{E}
(1,1,1,1,0),{E}
(1,0,0,0,0),{E}
(1,0,0,0,0),{E}
(1,0,0,0,0),{E}
(1,1,1,1,1)),{E}
(
(1,1,1,1,1),{F}
(1,0,0,0,0),{F}
(1,0,0,0,0),{F}
(1,0,0,0,0),{F}
(1,1,1,1,0),{F}
(1,0,0,0,0),{F}
(1,0,0,0,0),{F}
(1,0,0,0,0),{F}
(1,0,0,0,0)),{F}
(
(0,1,1,1,0),{G}
(1,0,0,0,1),{G}
(1,0,0,0,0),{G}
(1,0,0,0,0),{G}
(1,0,0,1,1),{G}
(1,0,0,0,1),{G}
(1,0,0,0,1),{G}
(1,0,0,1,1),{G}
(0,1,1,0,1)),{G}
(
(1,0,0,0,1),{H}
(1,0,0,0,1),{H}
(1,0,0,0,1),{H}
(1,0,0,0,1),{H}
(1,1,1,1,1),{H}
(1,0,0,0,1),{H}
(1,0,0,0,1),{H}
(1,0,0,0,1),{H}
(1,0,0,0,1)),{H}
(
(1,1,1,1,1),{I}
(0,0,1,0,0),{I}
(0,0,1,0,0),{I}
(0,0,1,0,0),{I}
(0,0,1,0,0),{I}
(0,0,1,0,0),{I}
(0,0,1,0,0),{I}
(0,0,1,0,0),{I}
(1,1,1,1,1)),{I}
(
(0,0,0,1,1),{J}
(0,0,0,0,1),{J}
(0,0,0,0,1),{J}
(0,0,0,0,1),{J}
(0,0,0,0,1),{J}
(0,0,0,0,1),{J}
(0,0,0,0,1),{J}
(1,0,0,0,1),{J}
(0,1,1,1,0)),{J}
(
(1,0,0,0,1),{K}
(1,0,0,0,1),{K}
(1,0,0,1,0),{K}
(1,0,1,0,0),{K}
(1,1,0,0,0),{K}
(1,0,1,0,0),{K}
(1,0,0,1,0),{K}
(1,0,0,0,1),{K}
(1,0,0,0,1)),{K}
(
(1,0,0,0,0),{L}
(1,0,0,0,0),{L}
(1,0,0,0,0),{L}
(1,0,0,0,0),{L}
(1,0,0,0,0),{L}
(1,0,0,0,0),{L}
(1,0,0,0,0),{L}
(1,0,0,0,0),{L}
(1,1,1,1,1)),{L}
(
(1,0,0,0,1),{M}
(1,1,0,1,1),{M}
(1,1,0,1,1),{M}
(1,0,1,0,1),{M}
(1,0,1,0,1),{M}
(1,0,0,0,1),{M}
(1,0,0,0,1),{M}
(1,0,0,0,1),{M}
(1,0,0,0,1)),{M}
(
(1,0,0,0,1),{N}
(1,1,0,0,1),{N}
(1,1,0,0,1),{N}
(1,0,1,0,1),{N}
(1,0,1,0,1),{N}
(1,0,0,1,1),{N}
(1,0,0,1,1),{N}
(1,0,0,0,1),{N}
(1,0,0,0,1)),{N}
(
(0,1,1,1,0),{O}
(1,0,0,0,1),{O}
(1,0,0,0,1),{O}
(1,0,0,0,1),{O}
(1,0,0,0,1),{O}
(1,0,0,0,1),{O}
(1,0,0,0,1),{O}
(1,0,0,0,1),{O}
(0,1,1,1,0)),{O}
(
(1,1,1,1,0),{P}
(1,0,0,0,1),{P}
(1,0,0,0,1),{P}
(1,0,0,0,1),{P}
(1,1,1,1,0),{P}
(1,0,0,0,0),{P}
(1,0,0,0,0),{P}
(1,0,0,0,0),{P}
(1,0,0,0,0)),{P}
(
(0,1,1,1,0),{Q}
(1,0,0,0,1),{Q}
(1,0,0,0,1),{Q}
(1,0,0,0,1),{Q}
(1,0,0,0,1),{Q}
(1,0,1,0,1),{Q}
(0,1,1,1,0),{Q}
(0,0,0,1,0),{Q}
(0,0,0,0,1)),{Q}
(
(1,1,1,1,0),{R}
(1,0,0,0,1),{R}
(1,0,0,0,1),{R}
(1,0,0,0,1),{R}
(1,1,1,1,0),{R}
(1,1,0,0,0),{R}
(1,0,1,0,0),{R}
(1,0,0,1,0),{R}
(1,0,0,0,1)),{R}
(
(0,1,1,1,0),{S}
(1,0,0,0,1),{S}
(1,0,0,0,0),{S}
(0,1,0,0,0),{S}
(0,0,1,0,0),{S}
(0,0,0,1,0),{S}
(0,0,0,0,1),{S}
(1,0,0,0,1),{S}
(0,1,1,1,0)),{S}
(
(1,1,1,1,1),{T}
(1,0,1,0,1),{T}
(0,0,1,0,0),{T}
(0,0,1,0,0),{T}
(0,0,1,0,0),{T}
(0,0,1,0,0),{T}
(0,0,1,0,0),{T}
(0,0,1,0,0),{T}
(0,1,1,1,0)),{T}
(
(1,0,0,0,1),{U}
(1,0,0,0,1),{U}
(1,0,0,0,1),{U}
(1,0,0,0,1),{U}
(1,0,0,0,1),{U}
(1,0,0,0,1),{U}
(1,0,0,0,1),{U}
(1,0,0,0,1),{U}
(0,1,1,1,0)),{U}
(
(1,0,0,0,1),{V}
(1,0,0,0,1),{V}
(1,0,0,0,1),{V}
(1,0,0,0,1),{V}
(1,0,0,0,1),{V}
(1,0,0,0,1),{V}
(0,1,0,1,0),{V}
(0,1,0,1,0),{V}
(0,0,1,0,0)),{V}
(
(1,0,0,0,1),{W}
(1,0,0,0,1),{W}
(1,0,0,0,1),{W}
(1,0,0,0,1),{W}
(1,0,1,0,1),{W}
(1,0,1,0,1),{W}
(1,1,0,1,1),{W}
(1,1,0,1,1),{W}
(1,0,0,0,1)),{W}
(
(1,0,0,0,1),{X}
(1,0,0,0,1),{X}
(0,1,0,1,0),{X}
(0,1,0,1,0),{X}
(0,0,1,0,0),{X}
(0,1,0,1,0),{X}
(0,1,0,1,0),{X}
(1,0,0,0,1),{X}
(1,0,0,0,1)),{X}
(
(1,0,0,0,1),{Y}
(1,0,0,0,1),{Y}
(1,0,0,0,1),{Y}
(0,1,0,1,0),{Y}
(0,0,1,0,0),{Y}
(0,0,1,0,0),{Y}
(0,0,1,0,0),{Y}
(0,0,1,0,0),{Y}
(0,0,1,0,0)),{Y}
(
(1,1,1,1,1),{Z}
(0,0,0,0,1),{Z}
(0,0,0,0,1),{Z}
(0,0,0,1,0),{Z}
(0,0,1,0,0),{Z}
(0,1,0,0,0),{Z}
(1,0,0,0,0),{Z}
(1,0,0,0,0),{Z}
(1,1,1,1,1)),{Z}
(
(0,1,1,1,1),
(0,1,0,0,0),
(0,1,0,0,0),
(0,1,0,0,0),
(0,1,0,0,0),
(0,1,0,0,0),
(0,1,0,0,0),
(0,1,0,0,0),
(0,1,1,1,1)),{[}
(
(0,0,0,0,0),
(1,0,0,0,0),
(1,0,0,0,0),
(0,1,0,0,0),
(0,1,0,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,0,1,0),
(0,0,0,1,0)),{\}
(
(1,1,1,1,0),
(0,0,0,1,0),
(0,0,0,1,0),
(0,0,0,1,0),
(0,0,0,1,0),
(0,0,0,1,0),
(0,0,0,1,0),
(0,0,0,1,0),
(1,1,1,1,0)),{]}
(
(0,0,1,0,0),
(0,1,0,1,0),
(1,0,0,0,1),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0)),{^}
(
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(1,1,1,1,1)),{_}
(
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,0,1,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0)),{`}
(
(0,0,0,0,0),{a}
(0,0,0,0,0),{a}
(0,0,0,0,0),{a}
(0,1,1,1,0),{a}
(0,0,0,0,1),{a}
(0,1,1,1,1),{a}
(1,0,0,0,1),{a}
(1,0,0,1,1),{a}
(0,1,1,0,1)),{a}
(
(0,0,0,0,0),{b}
(1,0,0,0,0),{b}
(1,0,0,0,0),{b}
(1,0,0,0,0),{b}
(1,0,1,1,0),{b}
(1,1,0,0,1),{b}
(1,0,0,0,1),{b}
(1,0,0,0,1),{b}
(1,1,1,1,0)),{b}
(
(0,0,0,0,0),{c}
(0,0,0,0,0),{c}
(0,0,0,0,0),{c}
(0,1,1,1,0),{c}
(1,0,0,0,0),{c}
(1,0,0,0,0),{c}
(1,0,0,0,0),{c}
(1,0,0,0,1),{c}
(0,1,1,1,0)),{c}
(
(0,0,0,0,0),{d}
(0,0,0,0,1),{d}
(0,0,0,0,1),{d}
(0,0,0,0,1),{d}
(1,1,1,1,1),{d}
(1,0,0,0,1),{d}
(1,0,0,0,1),{d}
(1,0,0,1,1),{d}
(0,1,1,0,1)),{d}
(
(0,0,0,0,0),{e}
(0,0,0,0,0),{e}
(0,0,0,0,0),{e}
(0,1,1,1,0),{e}
(1,0,0,0,1),{e}
(1,0,0,0,1),{e}
(1,1,1,1,0),{e}
(1,0,0,0,0),{e}
(0,1,1,1,1)),{e}
(
(0,0,1,1,0),{f}
(0,1,0,0,1),{f}
(0,1,0,0,0),{f}
(0,1,0,0,0),{f}
(1,1,1,1,0),{f}
(0,1,0,0,0),{f}
(0,1,0,0,0),{f}
(0,1,0,0,0),{f}
(0,1,0,0,0)),{f}
(
(0,0,0,0,0),{g}
(0,0,0,0,0),{g}
(0,0,0,0,0),{g}
(0,1,1,1,1),{g}
(1,0,0,0,1),{g}
(1,0,0,1,1),{g}
(0,1,1,0,1),{g}
(0,0,0,0,1),{g}
(1,1,1,1,0)),{g}
(
(0,0,0,0,0),{h}
(1,0,0,0,0),{h}
(1,0,0,0,0),{h}
(1,0,0,0,0),{h}
(1,0,1,1,0),{h}
(1,1,0,0,1),{h}
(1,0,0,0,1),{h}
(1,0,0,0,1),{h}
(1,0,0,0,1)),{h}
(
(0,0,0,0,0),{i}
(0,1,1,0,0),{i}
(0,0,0,0,0),{i}
(0,1,1,0,0),{i}
(0,0,1,0,0),{i}
(0,0,1,0,0),{i}
(0,0,1,0,0),{i}
(0,0,1,0,0),{i}
(1,1,1,1,1)),{i}
(
(0,0,0,0,0),{j}
(0,0,0,1,1),{j}
(0,0,0,0,0),{j}
(0,0,0,1,1),{j}
(0,0,0,0,1),{j}
(0,0,0,0,1),{j}
(0,0,0,0,1),{j}
(1,0,0,0,1),{j}
(0,1,1,1,0)),{j}
(
(0,0,0,0,0),{k}
(1,0,0,0,0),{k}
(1,0,0,0,0),{k}
(1,0,0,0,1),{k}
(1,0,0,1,0),{k}
(1,1,1,0,0),{k}
(1,0,1,0,0),{k}
(1,0,0,1,0),{k}
(1,0,0,0,1)),{k}
(
(0,0,0,0,0),{l}
(0,0,1,0,0),{l}
(0,0,1,0,0),{l}
(0,0,1,0,0),{l}
(0,0,1,0,0),{l}
(0,0,1,0,0),{l}
(0,0,1,0,0),{l}
(0,0,1,0,0),{l}
(0,0,1,1,1)),{l}
(
(0,0,0,0,0),{m}
(0,0,0,0,0),{m}
(0,0,0,0,0),{m}
(1,1,0,1,0),{m}
(1,0,1,0,1),{m}
(1,0,1,0,1),{m}
(1,0,1,0,1),{m}
(1,0,0,0,1),{m}
(1,0,0,0,1)),{m}
(
(0,0,0,0,0),{n}
(0,0,0,0,0),{n}
(0,0,0,0,0),{n}
(1,0,1,1,0),{n}
(1,1,0,0,1),{n}
(1,0,0,0,1),{n}
(1,0,0,0,1),{n}
(1,0,0,0,1),{n}
(1,0,0,0,1)),{n}
(
(0,0,0,0,0),{o}
(0,0,0,0,0),{o}
(0,0,0,0,0),{o}
(0,1,1,1,0),{o}
(1,0,0,0,1),{o}
(1,0,0,0,1),{o}
(1,0,0,0,1),{o}
(1,0,0,0,1),{o}
(0,1,1,1,0)),{o}
(
(0,0,0,0,0),{p}
(0,0,0,0,0),{p}
(0,0,0,0,0),{p}
(1,0,1,1,0),{p}
(1,1,0,0,1),{p}
(1,0,0,0,1),{p}
(1,1,1,1,0),{p}
(1,0,0,0,0),{p}
(1,0,0,0,0)),{p}
(
(0,0,0,0,0),{q}
(0,0,0,0,0),{q}
(0,0,0,0,0),{q}
(0,1,1,1,1),{q}
(1,0,0,0,1),{q}
(1,0,0,1,1),{q}
(0,1,1,0,1),{q}
(0,0,0,0,1),{q}
(0,0,0,0,1)),{q}
(
(0,0,0,0,0),{r}
(0,0,0,0,0),{r}
(0,0,0,0,0),{r}
(1,1,0,1,1),{r}
(0,1,1,0,1),{r}
(0,1,0,0,1),{r}
(0,1,0,0,0),{r}
(0,1,0,0,0),{r}
(1,1,1,0,0)),{r}
(
(0,0,0,0,0),{s}
(0,0,0,0,0),{s}
(0,0,0,0,0),{s}
(0,1,1,1,1),{s}
(1,0,0,0,0),{s}
(0,1,1,1,0),{s}
(0,0,0,0,1),{s}
(0,0,0,0,1),{s}
(1,1,1,1,0)),{s}
(
(0,0,0,0,0),{t}
(0,1,0,0,0),{t}
(0,1,0,0,0),{t}
(1,1,1,1,0),{t}
(0,1,0,0,0),{t}
(0,1,0,0,0),{t}
(0,1,0,0,0),{t}
(0,1,0,0,1),{t}
(0,0,1,1,0)),{t}
(
(0,0,0,0,0),{u}
(0,0,0,0,0),{u}
(0,0,0,0,0),{u}
(1,0,0,0,1),{u}
(1,0,0,0,1),{u}
(1,0,0,0,1),{u}
(1,0,0,0,1),{u}
(1,0,0,1,1),{u}
(0,1,1,0,1)),{u}
(
(0,0,0,0,0),{v}
(0,0,0,0,0),{v}
(0,0,0,0,0),{v}
(1,0,0,0,1),{v}
(1,0,0,0,1),{v}
(1,0,0,0,1),{v}
(0,1,0,1,0),{v}
(0,1,0,1,0),{v}
(0,0,1,0,0)),{v}
(
(0,0,0,0,0),{w}
(0,0,0,0,0),{w}
(0,0,0,0,0),{w}
(1,0,0,0,1),{w}
(1,0,0,0,1),{w}
(1,0,1,0,1),{w}
(1,0,1,0,1),{w}
(1,1,0,1,1),{w}
(1,0,0,0,1)),{w}
(
(0,0,0,0,0),{x}
(0,0,0,0,0),{x}
(0,0,0,0,0),{x}
(1,0,0,0,1),{x}
(0,1,0,1,0),{x}
(0,0,1,0,0),{x}
(0,1,0,1,0),{x}
(1,0,0,0,1),{x}
(1,0,0,0,1)),{x}
(
(0,0,0,0,0),{y}
(0,0,0,0,0),{y}
(0,0,0,0,0),{y}
(1,0,0,0,1),{y}
(1,0,0,0,1),{y}
(1,0,0,1,1),{y}
(0,1,1,0,1),{y}
(0,0,0,0,1),{y}
(1,1,1,1,0)),{y}
(
(0,0,0,0,0),{z}
(0,0,0,0,0),{z}
(0,0,0,0,0),{z}
(1,1,1,1,1),{z}
(0,0,0,1,0),{z}
(0,0,1,0,0),{z}
(0,1,0,0,0),{z}
(1,0,0,0,0),{z}
(1,1,1,1,1)),{z}
(
(0,0,1,1,0),
(0,1,0,0,0),
(0,1,0,0,0),
(0,0,1,0,0),
(1,1,1,0,0),
(0,0,1,0,0),
(0,1,0,0,0),
(0,1,0,0,0),
(0,0,1,1,0)),//{ Open curly bracket or open brace
(
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,1,0,0),
(0,0,1,0,0)),{|}
(
(0,1,1,0,0),
(0,0,0,1,0),
(0,0,0,1,0),
(0,0,1,0,0),
(0,0,1,1,1),
(0,0,1,0,0),
(0,0,0,1,0),
(0,0,0,1,0),
(0,1,1,0,0)),//} Close curly bracket or close brace
(
(0,0,0,0,0),
(0,0,0,0,0),
(0,1,0,0,1),
(1,0,1,0,1),
(1,0,1,0,1),
(1,0,0,1,0),
(0,0,0,0,0),
(0,0,0,0,0),
(0,0,0,0,0)){~}
);
procedure annotation_to_array(thestring : ansistring;transparant:boolean;colour,size, x,y {screen coord}: integer; var img: image_array);{string to image array as annotation, result is flicker free since the annotion is plotted as the rest of the image}
var {Screen coordinates are used to have the font with the correct orientation}
w,h,i,j,k,value,flipV, flipH,len,x2,y2: integer;
ch : pansichar;
begin
w:=Length(img[0,0]); {width}
h:=Length(img[0]); {height}
if mainwindow.Flip_horizontal1.Checked then {restore based on flipped conditions}
begin
x:=(w-1)-x;
flipH:=-1;
end
else flipH:=1;
if mainwindow.flip_vertical1.Checked then
begin
y:=(h-1)-y;
flipV:=-1;
end
else flipV:=1;
len:=length(thestring);
for k:=1 to len do
begin
ch:=Pansichar(copy(thestring,k,1));
value:=ord(ch[0]);
if ((value>=33) and (value<=126)) then
for j:=(9*size)-1 downto 0 do
for i:=0 to (5*size)-1 do
begin
x2:=x+(i+(k-1)*7*size)*flipH;
y2:=y-(j*flipV);
if ((x2>=0) and (x2<w) and (y2>=0) and (y2<h)) then {within image}
if (((transparant=false)) or (font_5x9[value,j div size ,i div size]<>0)) then img[0,y2,x2]:=font_5x9[value,j div size,i div size]*colour;{write the font to the array}
end;
end;
end;
procedure load_deep;{load the deepsky database once. If loaded no action}
begin
if database_nr<>1 then {load deepsky database}
begin
with deepstring do
begin
try
LoadFromFile(database_path+'deep_sky.csv');{load deep sky data from file }
database_nr:=1;{1 is deepsky, 2 is hyperleda, 3 is variable magn 11 loaded, 4 is variable magn 13 loaded, 5 is variable magn 15 loaded, 6=simbad}
except;
clear;
beep;
application.messagebox(pchar('The deep sky database was not found. Download and unpack in program directory'),'',0);
end;
end;
end;
end;
procedure load_variable;{load the variable star database once. If loaded no action}
begin
if database_nr<>3 then {load variable database}
begin
with deepstring do
begin
try
LoadFromFile(database_path+'variable_stars.csv');{load deep sky data from file }
database_nr:=3;{1 is deepsky, 2 is hyperleda, 3 is variable magn 11 loaded, 4 is variable magn 13 loaded, 5 is variable magn 15 loaded, 6=simbad}
except;
clear;
beep;
application.messagebox(pchar('The variable star database not found!'),'',0);
esc_pressed:=true;
end;
end;
end;
end;
procedure load_variable_13;{load the variable star database once. If loaded no action}
begin
if database_nr<>4 then {load variable database}
begin
with deepstring do
begin
try
LoadFromFile(database_path+'variable_stars_13.csv');{load deep sky data from file }
database_nr:=4;{1 is deepsky, 2 is hyperleda, 3 is variable magn 11 loaded, 4 is variable magn 13 loaded, 5 is variable magn 15 loaded, 6=simbad}
except;
clear;
beep;
application.messagebox(pchar('The additional variable star database was not found! Download from the ASTAP webpage and install.'),'',0);
esc_pressed:=true;
exit;
end;
end;
if copy(deepstring.strings[0],1,4)<>'V003' then
application.messagebox(pchar('Please download and install a new version of the "Variable_stars" database!'),'',0{MB_OK});
end;
end;
procedure load_variable_15;{load the variable star database once. If loaded no action}
begin
if database_nr<>5 then {load variable database}
begin
with deepstring do
begin
try
LoadFromFile(database_path+'variable_stars_15.csv');{load deep sky data from file }
database_nr:=5;{1 is deepsky, 2 is hyperleda, 3 is variable magn 11 loaded, 4 is variable magn 13 loaded, 5 is variable magn 15 loaded, 6=simbad}
except;
clear;
beep;
application.messagebox(pchar('The additional variable star database was not found! Download from the ASTAP webpage and install.'),'',0);
esc_pressed:=true;
exit;
end;
end;
if copy(deepstring.strings[0],1,4)<>'V003' then
application.messagebox(pchar('Please download and install a new version of the "Variable_stars" database!'),'',0{MB_OK});
end;
end;
procedure load_hyperleda;{load the HyperLeda database once. If loaded no action}
begin
if database_nr<>2 then {load HyperLeda}
begin
with deepstring do
begin
try
LoadFromFile(database_path+'hyperleda.csv');{load deep sky data from file }
database_nr:=2;{1 is deepsky, 2 is hyperleda, 3 is variable magn 11 loaded, 4 is variable magn 13 loaded, 5 is variable magn 15 loaded, 6=simbad}
except;
clear;
beep;
application.messagebox(pchar('HyperLeda database not found! Download from the ASTAP webpage and install.'),'',0);
end;
end;
end;
end;
//http://fastcode.sourceforge.net/
//function ValLong_JOH_PAS_4_c(Value: Integer): string;
function Valint32(const s; var code: Integer): Longint;{fast val function, about 4 x faster}
var
Digit: Integer;
Neg, Hex, Valid: Boolean;
P: PChar;
begin
Code := 0;
P := Pointer(S);
if not Assigned(P) then
begin
Result := 0;
inc(Code);
Exit;
end;
Neg := False;
Hex := False;
Valid := False;
while P^ = ' ' do
Inc(P);
if P^ in ['+', '-'] then
begin
Neg := (P^ = '-');
inc(P);
end;
if P^ = '$' then
begin
inc(P);
Hex := True;
end
else
begin
if P^ = '0' then
begin
inc(P);
Valid := True;
end;
if Upcase(P^) = 'X' then
begin
Hex := True;
inc(P);
end;
end;
Result := 0;
if Hex then
begin
Valid := False;
while True do
begin
case P^ of
'0'..'9': Digit := Ord(P^) - Ord('0');
'a'..'f': Digit := Ord(P^) - Ord('a') + 10;
'A'..'F': Digit := Ord(P^) - Ord('A') + 10;
else Break;
end;
if (Result < 0) or (Result > $0FFFFFFF) then
Break;
Result := (Result shl 4) + Digit;
Valid := True;
inc(P);
end;
end
else
begin
while True do
begin
if not (P^ in ['0'..'9']) then
break;
if Result > (MaxInt div 10) then
break;
Result := (Result * 10) + Ord(P^) - Ord('0');
Valid := True;
inc(P);
end;
if Result < 0 then {Possible Overflow}
if (Cardinal(Result) <> $80000000) or (not neg) then
begin {Min(LongInt) = $80000000 is a Valid Result}
Dec(P);
Valid := False;
end;
end;
if Neg then
Result := -Result;
if (not Valid) or (P^ <> #0) then
Code := P-@S+1;
end;
function read_deepsky(searchmode:char; telescope_ra,telescope_dec, cos_telescope_dec {cos(telescope_dec},fov : double; out ra2,dec2,length2,width2,pa : double): boolean;{deepsky database search}
var
x,z,y : integer;
fout,fout2, backsl1, backsl2,length_regel : integer;
regel, data1 : string;
delta_ra : double;
p2,p1: pchar;
begin
repeat {until fout is 0}
if linepos>=deepstring.count then
begin
result:=false;
exit;
end;
regel:=deepstring.strings[linepos]; {using regel,is faster then deepstring.strings[linepos]}
inc(linepos);
x:=1; z:=0; y:=0;
P1 := Pointer(regel);
length_regel:=length(regel);
repeat
{fast replacement for y:=posEx(',',regel,y+1); if y=0 then} {last field?} {y:=length(regel)+1;}
while ((y<length_regel) and (p1^<>',')) do
begin inc(y); inc(p1,1) end;
inc(y); inc(p1,1);
{fast replacement for data1:=copy(regel,x,y-x);}
SetLength(data1, y-x);
if y<>x then {not empthy 2018}
begin
P2 := Pointer(regel);
inc(P2, X-1);
move(P2^,data1[1], y-x);
while ((length(data1)>1) and (data1[length(data1)]=' ')) do {remove spaces in the end since VAL( can't cope with them}
delete(data1,length(data1),1);
end;{not empthy}
x:=y;
inc(z); {new data field}
case z of 1:
ra2:=valint32(data1,fout)*pi*2/864000;{10*60*60*24, so RA 00:00 00.1=1}
{valint32 takes 1 ms instead of 4ms}
2: begin
dec2:=valint32(data1,fout)*pi*0.5/324000;{60*60*90, so DEC 00:00 01=1}
delta_ra:=abs(ra2-telescope_ra); if delta_ra>pi then delta_ra:=pi*2-delta_ra;
if ((searchmode<>'T') and {if searchmode is 'T' then full database search else within FOV}
( sqr( delta_ra*cos_telescope_dec) + sqr(dec2-telescope_dec)> sqr(fov) ) ) {calculate angular distance and skip when outside FOV}
then fout:=99; {if true then outside screen,go to next line}
end;
3: begin
naam2:='';{for case data1='';}
naam3:='';
naam4:='';
if length(data1)>0 then
begin
while (data1[1]=' ') do delete(data1,1,1); {remove spaces in front of the name, in practice faster then trimleft}
backsl1:=pos('/',data1);
if backsl1=0 then naam2:=data1
else
begin
naam2:=copy(data1,1,backsl1-1);
backsl2:=posEX('/',data1,backsl1+2); { could also use LastDelimiter}
if backsl2=0 then naam3:=copy(data1,backsl1+1,length(data1)-backsl1+1)
else
begin
naam3:=copy(data1,backsl1+1,backsl2-backsl1-1);
naam4:=copy(data1,backsl2+1,length(data1)-backsl2+1);
end;
end;
end;
end;
4: begin
val(data1,length2,fout2);{accept floating points}
end;{go to next object}
5: begin
val(data1,width2,fout2);{accept floating points}
end;
6: begin val(data1,pa,fout2);{accept floating points}
if fout2<>0 then pa:=999;end;
{orientation 0 komt ook voor daarom if not know=empthy equals 999}
end;
inc(x);
until ((z>=6) or (fout<>0));
until fout=0; {repeat until no errors }
result:=true;
end;
procedure plot_glx(dc:tcanvas;x9,y9,diameter,neigung {ratio width/length},orientation:double); {draw oval or galaxy}
var glx :array[0..127 {nr}+1] of tpoint;
i,nr : integer;
r, sin_ori,cos_ori : double;
begin
if diameter<10 then nr:=22
else
if diameter<20 then nr:=44
else
nr:=127;
if abs(neigung)<0.00001 then neigung:=0.00001;{show ring always also when it is flat}
for i:=0 to nr+1 do
begin
r:=sqrt(sqr(diameter*neigung)/(1.00000000000001-(1-sqr(neigung))*sqr(cos(-pi*i*2/(nr))))); {radius ellips}
sincos(orientation + pi*i*2/nr, sin_ori, cos_ori);
glx[i].x:=round(x9 +r * sin_ori );
glx[i].y:=round(y9 +r * cos_ori );
end;
dc.polygon(glx,nr+1)
//else dc.polyline(glx,nr+1);
end;
procedure rotate(rot,x,y :double;var x2,y2:double);{rotate a vector point, angle seen from y-axis, counter clockwise}
var
sin_rot, cos_rot :double;
begin
sincos(rot, sin_rot, cos_rot);
x2:=x * + sin_rot + y*cos_rot;{ROTATION MOON AROUND CENTER OF PLANET}
y2:=x * - cos_rot + y*sin_rot;{SEE PRISMA WIS VADEMECUM BLZ 68}
end;
{ transformation of equatorial coordinates into CCD pixel coordinates for optical projection, rigid method}
{ head.ra0,head.dec0: right ascension and declination of the optical axis}
{ ra,dec: right ascension and declination}
{ xx,yy : CCD coordinates}
{ cdelt: CCD scale in arcsec per pixel}
procedure equatorial_standard(ra0,dec0,ra,dec, cdelt : double; var xx,yy: double);
var dv,sin_dec0,cos_dec0,sin_dec ,cos_dec,sin_deltaRA,cos_deltaRA: double;
begin
sincos(dec0 ,sin_dec0 ,cos_dec0);
sincos(dec ,sin_dec ,cos_dec );
sincos(ra-ra0, sin_deltaRA,cos_deltaRA);
dv := (cos_dec0 * cos_dec * cos_deltaRA + sin_dec0 * sin_dec) / (3600*180/pi)*cdelt; {/ (3600*180/pi)*cdelt, factor for onversion standard coordinates to CCD pixels}
xx := - cos_dec *sin_deltaRA / dv;{tangent of the angle in RA}
yy := -(sin_dec0 * cos_dec * cos_deltaRA - cos_dec0 * sin_dec) / dv; {tangent of the angle in DEC}
end;
procedure plot_deepsky(extract_visible: boolean;font_size: integer);{plot the deep sky object on the image. If extract is true then extract visible to variable_list}
type
textarea = record
x1,y1,x2,y2 : integer;
end;
var
dra,ddec, telescope_ra,telescope_dec,cos_telescope_dec,fov,ra2,dec2,length1,width1,pa,len,flipped,fitsX,fitsY,
gx_orientation, delta_ra,det,SIN_dec_ref,COS_dec_ref,SIN_dec_new,COS_dec_new,SIN_delta_ra,COS_delta_ra,hh,u0,v0 : double;
name: string;
flip_horizontal, flip_vertical : boolean;
text_dimensions : array of textarea;
i,text_counter,th,tw,x1,y1,x2,y2,x,y : integer;
overlap : boolean;
begin
if ((head.naxis<>0) and (head.cd1_1<>0)) then
begin
Screen.Cursor:=crHourglass;{$IfDef Darwin}{$else}application.processmessages;{$endif}// Show hourglass cursor, processmessages is for Linux. Note in MacOS processmessages disturbs events keypress for lv_left, lv_right key
flip_vertical:=mainwindow.flip_vertical1.Checked;
flip_horizontal:=mainwindow.flip_horizontal1.Checked;
if extract_visible then //for photometry
begin
variable_list:=nil;
variable_list_length:=0;//declare empthy
setlength(variable_list,1000);//make space
end;
{6. Passage (x,y) -> (RA,DEC) to find head.ra0,head.dec0 for middle of the image. See http://alain.klotz.free.fr/audela/libtt/astm1-fr.htm}
{find RA, DEC position of the middle of the image}
{FITS range 1..width, if range 1,2,3,4 then middle is 2.5=(4+1)/2 }
pixel_to_celestial(head,(head.width+1)/2,(head.height+1)/2,mainwindow.Polynomial1.itemindex,telescope_ra,telescope_dec); {fitsX, Y to ra,dec} {RA,DEC position of the middle of the image. Works also for case head.crpix1,head.crpix2 are not in the middle}
cos_telescope_dec:=cos(telescope_dec);
fov:=1.5*sqrt(sqr(0.5*head.width*head.cdelt1)+sqr(0.5*head.height*head.cdelt2))*pi/180; {field of view with 50% extra}
linepos:=2;{Set pointer to the beginning. First two lines are comments}
if head.cd1_1*head.cd2_2 - head.cd1_2*head.cd2_1>0 then flipped:=-1 {n-s or e-w flipped} else flipped:=1; {Flipped image. Either flipped vertical or horizontal but not both. Flipped both horizontal and vertical is equal to 180 degrees rotation and is not seen as flipped}
{$ifdef mswindows}
mainwindow.image1.Canvas.Font.Name :='default';
{$endif}
{$ifdef linux}
mainwindow.image1.Canvas.Font.Name :='DejaVu Sans';
{$endif}
{$ifdef darwin} {MacOS}
mainwindow.image1.Canvas.Font.Name :='Helvetica';
{$endif}
mainwindow.image1.canvas.pen.color:=annotation_color;
mainwindow.image1.canvas.pen.Mode:=pmXor;
mainwindow.image1.Canvas.brush.Style:=bsClear;
mainwindow.image1.Canvas.font.color:=annotation_color;
text_counter:=0;
setlength(text_dimensions,200);
sincos(head.dec0,SIN_dec_ref,COS_dec_ref);{do this in advance since it is for each pixel the same}
while read_deepsky('S',telescope_ra,telescope_dec, cos_telescope_dec {cos(telescope_dec},fov,{var} ra2,dec2,length1,width1,pa) {deepsky database search} do
begin
celestial_to_pixel(head,ra2,dec2, fitsX,fitsY);{ra,dec to fitsX,fitsY}
x:=round(fitsX-1);//In image array range 0..width-1, fits count from 1, image from zero therefore subtract 1
y:=round(fitsY-1);
if ((x>-0.25*head.width) and (x<=1.25*head.width) and (y>-0.25*head.height) and (y<=1.25*head.height)) then {within image1 with some overlap}
begin
len:=length1/(abs(head.cdelt2)*60*10*2); {Length in pixels}
if ((head.cdelt2<0.25*1/60) or (len>=1) or (database_nr>=3)) then//avoid too many object on images with a large FOV
begin
if ((database_nr>=3) and (database_nr<=5)) then //variables
begin
if ((abs(x-shape_var1_fitsX)<5) and (abs(y-shape_var1_fitsY)<5)) then // note shape_var1_fitsX/Y are in sensor coordinates
mainwindow.Shape_var1.HINT:=naam2; //copy(naam2,1,posex(' ',naam2,4)-1);
if ((abs(x-shape_check1_fitsX)<5) and (abs(y-shape_check1_fitsY)<5)) then // note shape_var1_fitsX/Y are in sensor coordinates
mainwindow.shape_check1.HINT:=naam2;//copy(naam2,1,posex(' ',naam2,4)-1);
if ((abs(x-shape_comp1_fitsX)<5) and (abs(y-shape_comp1_fitsY)<5)) then // note shape_var1_fitsX/Y are in sensor coordinates
mainwindow.shape_comp1.HINT:=naam2;//copy(naam2,1,posex(' ',naam2,4)-1);
end;
gx_orientation:=(pa+head.crota2)*flipped;
if flip_horizontal then begin x:=(head.width-1)-x; gx_orientation:=-gx_orientation; end;
if flip_vertical then gx_orientation:=-gx_orientation else y:=(head.height-1)-y;
{Plot deepsky text labels on an empthy text space.}
{ 1) If the center of the deepsky object is outside the image then don't plot text}
{ 2) If the text space is occupied, then move the text down. If the text crosses the bottom then use the original text position.}
{ 3) If the text crosses the right side of the image then move the text to the left.}
{ 4) If the text is moved in y then connect the text to the deepsky object with a vertical line.}
if ( (x>=0) and (x<=head.width-1) and (y>=0) and (y<=head.height-1) and (naam2<>'') ) then {plot only text if center object is visible and has a name}
begin
if naam3='' then name:=naam2
else
if naam4='' then name:=naam2+'/'+naam3
else
name:=naam2+'/'+naam3+'/'+naam4;
mainwindow.image1.Canvas.font.size:=round(min(20,max(font_size,len /2)));
if copy(naam2,1,1)='0' then mainwindow.image1.Canvas.font.color:=cllime;{AAVSO reference star, Plot green}
{get text dimensions}
th:=mainwindow.image1.Canvas.textheight(name);
tw:=mainwindow.image1.Canvas.textwidth(name);
x1:=x;
y1:=y;
x2:=x+ tw;
y2:=y+ th ;
if ((x1<=head.width) and (x2>head.width)) then begin x1:=x1-(x2-head.width);x2:=head.width;end; {if text is beyond right side, move left}
if text_counter>0 then {find free space in y for text}
begin
repeat {find free text area}
overlap:=false;
i:=0;
repeat {test overlap}
if ( ((x1>=text_dimensions[i].x1) and (x1<=text_dimensions[i].x2) and (y1>=text_dimensions[i].y1) and (y1<=text_dimensions[i].y2)) {left top overlap} or
((x2>=text_dimensions[i].x1) and (x2<=text_dimensions[i].x2) and (y1>=text_dimensions[i].y1) and (y1<=text_dimensions[i].y2)) {right top overlap} or
((x1>=text_dimensions[i].x1) and (x1<=text_dimensions[i].x2) and (y2>=text_dimensions[i].y1) and (y2<=text_dimensions[i].y2)) {left bottom overlap} or
((x2>=text_dimensions[i].x1) and (x2<=text_dimensions[i].x2) and (y2>=text_dimensions[i].y1) and (y2<=text_dimensions[i].y2)) {right bottom overlap} or
((text_dimensions[i].x1>=x1) and (text_dimensions[i].x1<=x2) and (text_dimensions[i].y1>=y1) and (text_dimensions[i].y1<=y2)) {two corners of text_dimensions[i] within text} or
((text_dimensions[i].x2>=x1) and (text_dimensions[i].x2<=x2) and (text_dimensions[i].y2>=y1) and (text_dimensions[i].y2<=y2)) {two corners of text_dimensions[i] within text}
) then
begin
overlap:=true; {text overlaps an existing text}
y1:=y1+(th div 3);{try to shift text one third of the text height down}
y2:=y2+(th div 3);
if y2>=head.height then {no space left, use original position}
begin
y1:=y;
y2:=y+th ;
overlap:=false;{stop searching}
i:=$FFFFFFF;{stop searching}
end;
end;
inc(i);
until ((i>=text_counter) or (overlap) );{until all tested or found overlap}
until overlap=false;{continue till no overlap}
end;
text_dimensions[text_counter].x1:=x1;{store text dimensions in array}
text_dimensions[text_counter].y1:=y1;
text_dimensions[text_counter].x2:=x2;
text_dimensions[text_counter].y2:=y2;
if y1<>y then {there was textual overlap}
begin
mainwindow.image1.Canvas.moveto(x,round(y+th/4));
mainwindow.image1.Canvas.lineto(x,y1);
end;
mainwindow.image1.Canvas.textout(x1,y1,name);
if ((extract_visible) and (text_counter<length(variable_list))) then //special option to add objects to list for photometry
begin
variable_list[text_counter].ra:=ra2;
variable_list[text_counter].dec:=dec2;
variable_list[text_counter].abbr:=naam2;
variable_list[text_counter].source:=0; //local
variable_list_length:=text_counter;
end;
inc(text_counter);
if text_counter>=length(text_dimensions) then setlength(text_dimensions,text_counter+200);{increase size dynamic array}
end;{centre object visible}
{plot deepsky object}
if width1=0 then begin width1:=length1;pa:=999;end;
mainwindow.image1.Canvas.Pen.width :=min(4,max(1,round(len/70)));
{len is already calculated earlier for the font size}
if len<=2 then {too small to plot an elipse or circle, plot just four dots}
begin
mainwindow.image1.canvas.pixels[x-2,y+2]:=annotation_color;
mainwindow.image1.canvas.pixels[x+2,y+2]:=annotation_color;
mainwindow.image1.canvas.pixels[x-2,y-2]:=annotation_color;
mainwindow.image1.canvas.pixels[x+2,y-2]:=annotation_color;
end
else
begin
if PA<>999 then
plot_glx(mainwindow.image1.canvas,x,y,len,width1/length1,gx_orientation*pi/180) {draw oval or galaxy}
else
mainwindow.image1.canvas.ellipse(round(x-len),round(y-len),round(x+1+len),round(y+1+len));{circle, the y+1,x+1 are essential to center the circle(ellipse) at the middle of a pixel. Otherwise center is 0.5,0.5 pixel wrong in x, y}
end;
end;//min size for large FOV
end;
end; {while loop};
text_dimensions:=nil;{remove used memory}
memo2_message('Added '+inttostr(text_counter)+ ' annotations.');
Screen.Cursor:=crDefault;
end;
end;{plot deep_sky}
procedure plot_vsx_vsp(extract_visible: boolean);{plot downloaded variable and comp stars}
type
textarea = record
x1,y1,x2,y2 : integer;
end;
var
dra,ddec, telescope_ra,telescope_dec, delta_ra,det,SIN_dec_ref,COS_dec_ref,SIN_dec_new,
COS_dec_new,SIN_delta_ra,COS_delta_ra,hh,u0,v0,ra,dec,fitsX,fitsY,var_epoch,var_period,delta : double;
name: string;
flip_horizontal, flip_vertical: boolean;
text_dimensions : array of textarea;
i,text_counter,th,tw,x1,y1,x2,y2,x,y,count,counts,mode,nrcount : integer;
overlap : boolean;
begin
if ((head.naxis<>0) and (head.cd1_1<>0)) then
begin
flip_vertical:=mainwindow.flip_vertical1.Checked;
flip_horizontal:=mainwindow.flip_horizontal1.Checked;
{6. Passage (x,y) -> (RA,DEC) to find head.ra0,head.dec0 for middle of the image. See http://alain.klotz.free.fr/audela/libtt/astm1-fr.htm}
{find RA, DEC position of the middle of the image}
{FITS range 1..width, if range 1,2,3,4 then middle is 2.5=(4+1)/2 }
pixel_to_celestial(head,(head.width+1)/2,(head.height+1)/2,mainwindow.Polynomial1.itemindex,telescope_ra,telescope_dec); {fitsX, Y to ra,dec} {RA,DEC position of the middle of the image. Works also for case head.crpix1,head.crpix2 are not in the middle}
cos_telescope_dec:=cos(telescope_dec);
{$ifdef mswindows}
mainwindow.image1.Canvas.Font.Name :='default';
{$endif}
{$ifdef linux}
mainwindow.image1.Canvas.Font.Name :='DejaVu Sans';
{$endif}
{$ifdef darwin} {MacOS}
mainwindow.image1.Canvas.Font.Name :='Helvetica';
{$endif}
mainwindow.image1.canvas.pen.color:=annotation_color;
mainwindow.image1.canvas.pen.mode:=pmXor;
mainwindow.image1.Canvas.brush.Style:=bsClear;
mainwindow.image1.Canvas.font.size:=stackmenu1.font_size_photometry_UpDown1.position;
if extract_visible then //for photometry
begin
variable_list:=nil;
variable_list_length:=0;//declare empthy
setlength(variable_list,1000);//make space
nrcount:=0;
end;
text_counter:=0;
setlength(text_dimensions,200);
sincos(head.dec0,SIN_dec_ref,COS_dec_ref);{do this in advance since it is for each pixel the same}
for mode:=1 to 2 do //do both vsx and vsp
begin
if mode=1 then
mainwindow.image1.Canvas.font.color:=annotation_color{variable}
else
mainwindow.image1.Canvas.font.color:=cllime;{AAVSO reference star}
if mode=1 then counts:=length(vsx) else counts:=length(vsp);
count:=0;
while count<counts do //go through data
begin
if mode=1 then begin ra:=vsx[count].ra; dec:=vsx[count].dec;end else begin ra:=vsp[count].ra; dec:=vsp[count].dec;end;
celestial_to_pixel(head,ra,dec, fitsX,fitsY);{ra,dec to fitsX,fitsY}
x:=round(fitsX-1);//In image array range 0..width-1, fits count from 1, image from zero therefore subtract 1
y:=round(fitsY-1);
if ((x>0) and (x<head.width-1) and (y>0) and (y<head.height-1)) then {within image1}
begin
{Plot deepsky text labels on an empthy text space.}
{ 1) If the center of the deepsky object is outside the image then don't plot text}
{ 2) If the text space is occupied, then move the text down. If the text crosses the bottom then use the original text position.}
{ 3) If the text crosses the right side of the image then move the text to the left.}
{ 4) If the text is moved in y then connect the text to the deepsky object with a vertical line.}
if mode=1 then //plot variable
begin
name:=vsx[count].name+' '+vsx[count].maxmag+'-'+vsx[count].minmag+'_'+vsx[count].category+'_Period_'+vsx[count].period;
if ((abs(x-shape_var1_fitsX)<5) and (abs(y-shape_var1_fitsY)<5)) then // note shape_var1_fitsX/Y are in sensor coordinates
mainwindow.Shape_var1.HINT:=vsx[count].name;
var_epoch:=strtofloat1(vsx[count].epoch);
var_period:=strtofloat1(vsx[count].period);
if ((var_epoch<>0) and (var_period<>0)) then
begin
delta:=frac((jd_mid-var_epoch)/var_period);//in periods. Should jd_helio but that takes more computing
if ((delta>0.95) or (delta<0.05)) then
name:=name+ '[AT MAX]';
// if pos('AD CMi',name)>0 then
// memo2_message(filename2+', '+floattostr(jd_mid)+ ', '+floattostr(delta));
end;
if ((extract_visible) and (nrcount<length(variable_list))) then //special option to add objects to list for photometry
begin
variable_list[nrcount].ra:=vsx[count].ra;
variable_list[nrcount].dec:=vsx[count].dec;
variable_list[nrcount].abbr:=name;
variable_list[nrcount].source:=1;//vsx
variable_list[nrcount].index:=count;//to retrieve all mangitudes
variable_list_length:=nrcount;
inc(nrcount);
end;
end
else
begin //plot check stars
name:=vsp[count].auid;
name:=name+' V='+vsp[count].Vmag+'('+vsp[count].Verr+')';//display V always
if ((pos('S',head.passband_database)>0) or (stackmenu1.reference_database1.itemindex>5)) then //check passband_active in case auto selection is used.
begin //Sloan filters used
if vsp[count].SGmag<>'?' then name:=name+'_SG='+vsp[count].Vmag+'('+vsp[count].Verr+')';
if vsp[count].SRmag<>'?' then name:=name+'_SR='+vsp[count].Bmag+'('+vsp[count].Berr+')';
if vsp[count].SImag<>'?' then name:=name+'_SI='+vsp[count].Rmag+'('+vsp[count].Rerr+')';
end
else
begin //UBVR
if vsp[count].Bmag<>'?' then name:=name+'_B='+vsp[count].Bmag+'('+vsp[count].Berr+')';
if vsp[count].Rmag<>'?' then name:=name+'_R='+vsp[count].Rmag+'('+vsp[count].Rerr+')';
end;
if ((abs(x-shape_check1_fitsX)<5) and (abs(y-shape_check1_fitsY)<5)) then // note shape_var1_fitsX/Y are in sensor coordinates
mainwindow.shape_check1.HINT:=name;
if ((abs(x-shape_comp1_fitsX)<5) and (abs(y-shape_comp1_fitsY)<5)) then // note shape_var1_fitsX/Y are in sensor coordinates
mainwindow.shape_comp1.HINT:=name;//comparison star
if ((extract_visible) and (nrcount<length(variable_list))) then //special option to add objects to list for photometry
begin
variable_list[nrcount].ra:=vsp[count].ra;
variable_list[nrcount].dec:=vsp[count].dec;
variable_list[nrcount].abbr:=name;
variable_list[nrcount].source:=2;//vsp
variable_list[nrcount].index:=count;//to retrieve all mangitudes
variable_list_length:=nrcount;
inc(nrcount);
end;
end;
if name<>'' then
begin
if flip_horizontal then begin x:=(head.width-1)-x; end;
if flip_vertical then else y:=(head.height-1)-y;
{get text dimensions}
th:=mainwindow.image1.Canvas.textheight(name);
tw:=mainwindow.image1.Canvas.textwidth(name);
x1:=x;
y1:=y;
x2:=x+ tw;
y2:=y+ th ;
if ((x1<=head.width) and (x2>head.width)) then begin x1:=x1-(x2-head.width);x2:=head.width;end; {if text is beyond right side, move left}
if text_counter>0 then {find free space in y for text}
begin
repeat {find free text area}
overlap:=false;
i:=0;
repeat {test overlap}
if ( ((x1>=text_dimensions[i].x1) and (x1<=text_dimensions[i].x2) and (y1>=text_dimensions[i].y1) and (y1<=text_dimensions[i].y2)) {left top overlap} or
((x2>=text_dimensions[i].x1) and (x2<=text_dimensions[i].x2) and (y1>=text_dimensions[i].y1) and (y1<=text_dimensions[i].y2)) {right top overlap} or
((x1>=text_dimensions[i].x1) and (x1<=text_dimensions[i].x2) and (y2>=text_dimensions[i].y1) and (y2<=text_dimensions[i].y2)) {left bottom overlap} or
((x2>=text_dimensions[i].x1) and (x2<=text_dimensions[i].x2) and (y2>=text_dimensions[i].y1) and (y2<=text_dimensions[i].y2)) {right bottom overlap} or
((text_dimensions[i].x1>=x1) and (text_dimensions[i].x1<=x2) and (text_dimensions[i].y1>=y1) and (text_dimensions[i].y1<=y2)) {two corners of text_dimensions[i] within text} or
((text_dimensions[i].x2>=x1) and (text_dimensions[i].x2<=x2) and (text_dimensions[i].y2>=y1) and (text_dimensions[i].y2<=y2)) {two corners of text_dimensions[i] within text}
) then
begin
overlap:=true; {text overlaps an existing text}
y1:=y1+(th div 3);{try to shift text one third of the text height down}
y2:=y2+(th div 3);
if y2>=head.height then {no space left, use original position}
begin
y1:=y;
y2:=y+th ;
overlap:=false;{stop searching}
i:=$FFFFFFF;{stop searching}
end;
end;
inc(i);
until ((i>=text_counter) or (overlap) );{until all tested or found overlap}
until overlap=false;{continue till no overlap}
end;
text_dimensions[text_counter].x1:=x1;{store text dimensions in array}
text_dimensions[text_counter].y1:=y1;
text_dimensions[text_counter].x2:=x2;
text_dimensions[text_counter].y2:=y2;
if y1<>y then {there was textual overlap}
begin
mainwindow.image1.Canvas.moveto(x,round(y+th/4));
mainwindow.image1.Canvas.lineto(x,y1);
end;
mainwindow.image1.Canvas.textout(x1,y1,name);
inc(text_counter);
if text_counter>=length(text_dimensions) then setlength(text_dimensions,text_counter+200);{increase size dynamic array}
{plot deepsky object}
mainwindow.image1.Canvas.Pen.width :=1;//min(4,max(1,round(len/70)));
mainwindow.image1.canvas.pixels[x-2,y+2]:=annotation_color;
mainwindow.image1.canvas.pixels[x+2,y+2]:=annotation_color;
mainwindow.image1.canvas.pixels[x-2,y-2]:=annotation_color;
mainwindow.image1.canvas.pixels[x+2,y-2]:=annotation_color;
end;//name<>''
end;
inc(count);
end;//while loop
end;//plot vsx and vsp
text_dimensions:=nil;{remove used memory}
//memo2_message('Added '+inttostr(text_counter)+ ' annotations.');
end;
end;{plot vsp stars}
function Gaia_star_color(Bp_Rp: integer):integer;
begin
if Bp_Rp=-128 then result:=$00FF00 {unknown, green}
else
if Bp_Rp<=-0.25*10 then result:=$FF0000 {<-0.25 blauw}
else
if Bp_Rp<=-0.1*10 then result:=$FFFF00 {-0.25 tot -0.1 cyaan}
else
if Bp_Rp<=0.3*10 then result:=$FFFFFF {-0.1 tot 0.3 wit}
else
if Bp_Rp<=0.7*10 then result:=$A5FFFF {0.3 tot 0.7 geelwit}
else
if Bp_Rp<=1.0*10 then result:=$00FFFF {0.7 tot 1.0 geel}
else
if Bp_Rp<=1.5*10 then result:=$00A5FF {1.0 tot 1.5 oranje}
else
result:=$0000FF; {>1.5 rood}
end;
procedure get_best_mean(list: array of double; leng : integer; out mean,standard_error_mean: double);{Remove outliers from population using MAD. }
var {idea from https://eurekastatistics.com/using-the-median-absolute-deviation-to-find-outliers/}
i,count : integer;
median, mad,sd : double;
begin
if leng=1 then begin mean:=list[0];exit end
else
if leng=2 then begin mean:=(list[0]+list[1])/2;exit end;
mad_median(list,leng,mad,median);{calculate mad and median without modifying the data}
sd:=mad*1.4826;//standard deviation calculated from mad
count:=0;
mean:=0;
standard_error_mean:=0;
for i:=0 to leng-1 do
if abs(list[i]-median)<1.50*sd then {offset less the 1.5*sigma.}
begin
mean:=mean+list[i];{Calculate mean. This gives a little less noise then calculating median again. Note weighted mean gives poorer result and is not applied.}
inc(count);
end;
if count>0 then
begin
mean:=mean/count; {mean without using outliers}
standard_error_mean:=sd/sqrt(count); //https://onlinestatbook.com/2/estimation/mean.html
end;
end;
procedure get_database_passband(filterstr: string; out passband :string);//report local or online database and the database passband
var
datab,filterstrUP :string;
begin
datab:=stackmenu1.reference_database1.text;
if ((pos('auto',datab)>0) or (pos('Local',datab)>0)) then //local or auto
begin //auto
filterstrUP:=uppercase(filterstr);
if ((length(filterstrUP)=0) or (pos('CV',filterstrUP)>0)) then passband:='BP' //Johnson-V, online
else
if pos('S',filterstrUP)>0 then //sloan
begin
if pos('G',filterstrUP)>0 then passband:='SG' //SDSS-g
else
if pos('R',filterstrUP)>0 then passband:='SR' //SDSS-r
else
if pos('I',filterstrUP)>0 then passband:='SI' //SDSS-i
else
passband:='BP' //online ; //unknown
end
else //Johnson-Cousins
if pos('G',filterstrUP)>0 then passband:='V' //TG, Johnson-V, online
else
if pos('V',filterstrUP)>0 then passband:='V' //Johnson-V, online
else
if pos('B',filterstrUP)>0 then passband:='B' //Johnson-V, online Blue
else
if pos('R',filterstrUP)>0 then passband:='R' //Johnson-V, online red
else
passband:='BP'; //online take clear view
memo2_message('Auto selected transformation as set in tab Photometry. Filter='+filterstr+'. Online Gaia ->'+passband);
end
else //manual
begin
if pos('BP',datab)>0 then passband:='BP' //Gaia blue=CV=Gray, online
else
if pos('V',datab)>0 then passband:='V' //Johnson-V, online
else
if pos('B',datab)>0 then passband:='B' //Johnson-B, online
else
if pos('R',datab)>0 then passband:='R' //Cousins-R, online
else
if pos('SG',datab)>0 then passband:='SG' //Gaia blue=CV=Gray, online
else
if pos('SR',datab)>0 then passband:='SR' //Johnson-V, online
else
if pos('SI',datab)>0 then passband:='SI' //Johnson-B, online
else
passband:='??';
memo2_message('Manual selected transformation as set in tab Photometry. Filter='+filterstr+'. Online Gaia ->'+passband);
end;
end;
procedure plot_and_measure_stars(img : image_array; memo: tstrings; var head : Theader; flux_calibration,plot_stars, report_lim_magn: boolean);{flux calibration, annotate, report limiting magnitude}
var
telescope_ra,telescope_dec,fov,ra2,dec2, magn,Bp_Rp, hfd1,star_fwhm,snr, flux, xc,yc, sep,SIN_dec_ref,COS_dec_ref,
standard_error_mean,fov_org,fitsX,fitsY, frac1,frac2,frac3,frac4,x,y,x2,y2,flux_snr_7,apert,avg_flux_ratio : double;
star_total_counter,len, max_nr_stars, area1,area2,area3,area4,nrstars_required2,count,nrstars : integer;
flip_horizontal, flip_vertical : boolean;
flux_ratio_array,hfd_x_sd : array of double;
selected_passband : string;
data_max : single;
starlist1 : star_list;
procedure plot_star;
begin
if ((flux_calibration) and ( bp_rp>12) and (bp_rp<>999){mono colour database})then exit;{too red star for flux calibration. Bp-Rp>1.2 for about 30% of the stars}
celestial_to_pixel(head,ra2,dec2, fitsX,fitsY);{ra,dec to fitsX,fitsY}
x:=(fitsX-1);//In image array range 0..width-1, fits count from 1, image from zero therefore subtract 1
y:=(fitsY-1);
if ((x>-50) and (x<=head.width+50) and (y>-50) and (y<=head.height+50)) then {within image1 with some overlap}
begin
inc(star_total_counter);
if flip_horizontal then x2:=(head.width-1)-x else x2:=x;
if flip_vertical then y2:=y else y2:=(head.height-1)-y;
if plot_stars then
begin {annotate}
if Bp_Rp<>999 then {colour version}
begin
mainwindow.image1.Canvas.textout(round(x2),round(y2),inttostr(round(magn))+':'+inttostr(round(Bp_Rp)) { +'<-'+inttostr(area290) });
mainwindow.image1.canvas.pen.color:=Gaia_star_color(round(Bp_Rp));{color circel}
end
else
mainwindow.image1.Canvas.textout(round(x2),round(y2),inttostr(round(magn)) );
len:=round((200-magn)/5.02);
mainwindow.image1.canvas.ellipse(round(x2-len),round(y2-len),round(x2+1+len),round(y2+1+len));{circle, the y+1,x+1 are essential to center the circle(ellipse) at the middle of a pixel. Otherwise center is 0.5,0.5 pixel wrong in x, y}
end;
if ((flux_calibration) and (Bp_Rp<>-128 {if -128 then unreliable Johnson-V magnitude, either Bp or Rp is missing in Gaia})) then
// if ((x>70) and (x<head.width-70) and (y>70) and (y<head.height-70)) then // at least 10 pixels from sides
// if sqrt(sqr(x-head.width/2)+sqr(y-head.height/2))<(head.height/2)-20 then //within a circle of center
begin
// annulus_radius:=8;
// head.mzero_radius:=3.9;
HFD(img,round(x),round(y), annulus_radius{14,annulus radius},head.mzero_radius,0 {adu_e. SNR only in ADU for consistency}, hfd1,star_fwhm,snr,flux,xc,yc);{star HFD and FWHM}
if ((hfd1<15) and (hfd1>=0.8) {two pixels minimum}) then
if snr>30 then {star detected in img. 30 is found emperical}
begin
if ((img[0,round(yc),round(xc)]<data_max-1000) and
(img[0,round(yc-1),round(xc)]<data_max-1000) and
(img[0,round(yc+1),round(xc)]<data_max-1000) and
(img[0,round(yc),round(xc-1)]<data_max-1000) and
(img[0,round(yc),round(xc+1)]<data_max-1000) and
(img[0,round(yc-1),round(xc-1)]<data_max-1000) and
(img[0,round(yc-1),round(xc+1)]<data_max-1000) and
(img[0,round(yc+1),round(xc-1)]<data_max-1000) and
(img[0,round(yc+1),round(xc+1)]<data_max-1000) ) then {not saturated}
begin
if counter_flux_measured>=length(flux_ratio_array) then
begin
SetLength(flux_ratio_array,counter_flux_measured+500);{increase length array}
if report_lim_magn then SetLength(hfd_x_sd,counter_flux_measured+500);{increase length array}
end;
flux_ratio_array[counter_flux_measured]:=flux/(power(10,(21 {bias}-magn/10)/2.5)); //Linear flux ratio, should be constant for all stars.
// memo2_message(#9+floattostr4(magn/10)+#9+floattostr4(2.5 * ln(flux)/ln(10) ));
if report_lim_magn then
begin
hfd_x_sd[counter_flux_measured]:=hfd1*sd_bg;{calculate hfd*SD. sd_bg is a global variable from procedure hfd. The minimum diameter for star detection is 4}
end;
// memo2_message(#9+floattostr4(snr)+#9+floattostr4(hfd1)+#9+floattostr4(R_aperture)+#9+floattostr4(sd_bg) );
inc(counter_flux_measured); {increase counter of number of stars analysed}
end;
end; {snr>30}
end;{flux calibration}
end;
end;
begin
if ((head.naxis<>0) and (head.cd1_1<>0)) then
begin
Screen.Cursor:=crHourglass;{$IfDef Darwin}{$else}application.processmessages;{$endif}// Show hourglass cursor, processmessages is for Linux. Note in MacOS processmessages disturbs events keypress for lv_left, lv_right key
flip_vertical:=mainwindow.flip_vertical1.Checked;
flip_horizontal:=mainwindow.flip_horizontal1.Checked;
// sip:=((ap_order>=2) and (mainwindow.Polynomial1.itemindex=1));{use sip corrections?} Already set
bp_rp:=999;{not defined in mono versions of the database}
{Fits range 1..width, if range 1,2,3,4 then middle is 2.5=(4+1)/2 }
pixel_to_celestial(head,(head.width+1)/2,(head.height+1)/2,1{wcs and sip if available},telescope_ra,telescope_dec); {RA,DEC position of the middle of the image. Works also for case head.crpix1,head.crpix2 are not in the middle}
mainwindow.image1.Canvas.Pen.width :=1; // round(1+head.height/mainwindow.image1.height);{thickness lines}
mainwindow.image1.Canvas.Pen.mode:=pmCopy;
mainwindow.image1.canvas.pen.color:=$00B0FF ;{orange}
{$ifdef mswindows}
mainwindow.image1.Canvas.Font.Name :='default';
{$endif}
{$ifdef linux}
mainwindow.image1.Canvas.Font.Name :='DejaVu Sans';
{$endif}
{$ifdef darwin} {MacOS}
mainwindow.image1.Canvas.Font.Name :='Helvetica';
{$endif}
mainwindow.image1.Canvas.font.size:=8; //round(14*head.height/mainwindow.image1.height);{adapt font to image dimensions}
mainwindow.image1.Canvas.brush.Style:=bsClear;
mainwindow.image1.Canvas.font.color:=$00B0FF ;{orange}
star_total_counter:=0;{total counter}
counter_flux_measured:=0;
data_max:=head.datamax_org-1;
max_nr_stars:=round(head.width*head.height*(1216/(2328*1760))); {Check 1216 stars in a circle resulting in about 1000 stars in a rectangle for image 2328 x1760 pixels}
fov_org:= sqrt(sqr(head.width*head.cdelt1)+sqr(head.height*head.cdelt2))*pi/180; {field of view circle covering all corners with 0% extra}
if flux_calibration then
begin
max_nr_stars:=round(head.width*head.height*(730/(2328*1760))); {limit to the brightest stars. Fainter stars have more noise}
//max_nr_stars:=10;
setlength(flux_ratio_array,max_nr_stars);
if report_lim_magn then setlength(hfd_x_sd,max_nr_stars);
end;
{sets file290 so do before fov selection}
if stackmenu1.reference_database1.itemindex=0 then //local database
begin
if select_star_database(stackmenu1.star_database1.text,head.height*abs(head.cdelt2) {fov})=false then exit;
memo2_message('Using star database '+uppercase(name_database));
if uppercase(copy(name_database,1,1))='V' then passband_active:='V' else passband_active:='BP';// for reporting
end
else
begin //Reading online database. Update if required
get_database_passband(head.filter_name,{out} selected_passband);//report selected Gaia passband
ang_sep(telescope_ra,telescope_dec,gaia_ra,gaia_dec,sep);
if ((sep>0.15*fov_org) or (online_database=nil)) then //other sky area, update Gaia database online
begin
if select_star_database(stackmenu1.star_database1.text,fov_org {fov})=false then exit;
if read_stars(telescope_ra,telescope_dec,fov_org, database_type, max_nr_stars,{out} starlist1,{out} nrstars) then {read star from local star database to find the maximum magnitude required for this. Max magnitude is stored in mag2}
begin //maximum magnitude mag2 is known for the amount of stars for calibration using online stars
memo2_message('Requires stars down to magnitude '+floattostrF(mag2/10,FFFixed,0,2)+ ' for '+inttostr( max_nr_stars)+' stars') ;
if read_stars_online(telescope_ra,telescope_dec,fov_org, mag2/10 {max_magnitude})= false then
begin
memo2_message('Error. failure accessing Vizier for Gaia star database!');
Screen.Cursor:=crDefault;
exit;
end;
end
else
begin
memo2_message('Error 1476');
Screen.Cursor:=crDefault;
exit;
end;
end;
database_type:=0;//online
convert_magnitudes(selected_passband {set in call to get_database_passband}) //convert Gaia magnitude to a new magnitude. If the type is already correct, no action will follow
//database_passband will be stored in passband_active
end; //online
sincos(head.dec0,SIN_dec_ref,COS_dec_ref);{do this in advance since it is for each pixel the same}
if database_type>1 then {1476 or 290 files}
begin
if database_type=1476 then {.1476 files}
fov:=min(fov_org,5.142857143*pi/180) {warning FOV should be less the database tiles dimensions, so <=5.142857143 degrees. Otherwise a tile beyond next tile could be selected}
else {.290 files}
fov:=min(fov_org,9.53*pi/180); {warning FOV should be less the database tiles dimensions, so <=9.53 degrees. Otherwise a tile beyond next tile could be selected}
if fov_org>fov then max_nr_stars:=round(max_nr_stars*sqr(fov)/sqr(fov_org));{reduce number of stars for very large FOV}
find_areas( telescope_ra,telescope_dec, fov,{var} area1,area2,area3,area4, frac1,frac2,frac3,frac4);{find up to four star database areas for the square image}
{read 1th area}
if area1<>0 then {read 1th area}
begin
if open_database(telescope_dec,area1)=false then begin exit; end; {open database file or reset buffer}
nrstars_required2:=trunc(max_nr_stars * frac1);
while ((star_total_counter<nrstars_required2) and (readdatabase290(telescope_ra,telescope_dec, fov,{var} ra2,dec2, magn,Bp_Rp)) ) do plot_star;{add star}
end;
{read 2th area}
if area2<>0 then {read 2th area}
begin
if open_database(telescope_dec,area2)=false then begin exit; end; {open database file or reset buffer}
nrstars_required2:=trunc(max_nr_stars * (frac1+frac2));
while ((star_total_counter<nrstars_required2) and (readdatabase290(telescope_ra,telescope_dec, fov,{var} ra2,dec2, magn,Bp_Rp)) ) do plot_star;{add star}
end;
{read 3th area}
if area3<>0 then {read 3th area}
begin
if open_database(telescope_dec,area3)=false then begin exit; end; {open database file or reset buffer}
nrstars_required2:=trunc(max_nr_stars * (frac1+frac2+frac3));
while ((star_total_counter<nrstars_required2) and (readdatabase290(telescope_ra,telescope_dec, fov,{var} ra2,dec2, magn,Bp_Rp)) ) do plot_star;{add star}
end;
{read 4th area}
if area4<>0 then {read 4th area}
begin
if open_database(telescope_dec,area4)=false then begin exit; end; {open database file or reset buffer}
nrstars_required2:=trunc(max_nr_stars * (frac1+frac2+frac3+frac4));
while ((star_total_counter<nrstars_required2) and (readdatabase290(telescope_ra,telescope_dec, fov,{var} ra2,dec2, magn,Bp_Rp)) ) do plot_star;{add star}
end;
close_star_database;
end
else
if database_type=1 then
begin {W08 single file wide field database}
if wide_database<>name_database then
read_stars_wide_field;{load wide field stars array}
count:=0;
while ((star_total_counter<max_nr_stars) and (count<length(wide_field_stars) div 3) ) do {star file 001 database read. Read up to nrstars_required}
begin
magn:=wide_field_stars[count*3];{contains: mag1, ra1,dec1, magn,ra2,dec2,mag3........}
ra2:=wide_field_stars[count*3+1];
dec2:=wide_field_stars[count*3+2];
ang_sep(ra2,dec2,telescope_ra,telescope_dec, sep);{angular seperation}
if ((sep<fov_org*0.5*0.9*(2/sqrt(pi))) and (sep<pi/2)) then {factor 2/sqrt(pi) is to adapt circle search field to surface square. Factor 0.9 is a fiddle factor for trees, house and dark corners. Factor <pi/2 is the limit for procedure equatorial_standard}
begin
plot_star;{add star}
inc(star_total_counter);
end;
inc(count);
end;
end
else
begin //Database_type=0, Vizier online, Gaia
count:=0;
//database should all ready been filled
while (count<length(online_database[0])) do {read stars}
begin
ra2:=online_database[0,count];
dec2:=online_database[1,count];
magn:=online_database[5,count]*10;//magnitude
if magn<>0 then
plot_star;{add star}
inc(count);
end;
end;
if flux_calibration then {flux calibration}
begin
if counter_flux_measured>=3 then {at least three stars}
begin
get_best_mean(flux_ratio_array,counter_flux_measured {length},avg_flux_ratio,standard_error_mean );//calculate average of flux ratio. Can't do that on mzero. Should be a linear scale
head.mzero:=21{bias} + ln(avg_flux_ratio)*2.5/ln(10);//from flux ratio to mzero
standard_error_mean:=ln((avg_flux_ratio+standard_error_mean)/avg_flux_ratio)*2.5/ln(10);//Convert ratio error to error in magnitudes. Note that log(a)−log(b)=log(a/b) and log():=ln()/ln(10)
head.passband_database:=passband_active; //passband_active is global variable. Now store in the header. head.passband_database can also be retrieved using keyword MZEROPAS
if copy(stackmenu1.flux_aperture1.text,1,1)='m' then //=Max, calibration for extended objects
update_float(memo,'MZERO =',' / Magnitude Zero Point. '+head.passband_database+'=-2.5*log(flux)+MZERO',false,head.mzero)
else
update_text(memo,'MZERO =',' 0 / Unknown. Set aperture to MAX for ext. objects ');//use update_text to also clear any old comment
update_float(memo,'MZEROR =',' / '+head.passband_database+'=-2.5*log(flux)+MZEROR using MZEROAPT',false,head.mzero);//mzero for aperture diameter MZEROAPT
update_float(memo,'MZEROAPT=',' / Aperture radius used for MZEROR in pixels',false,head.mzero_radius);
update_text(memo,'MZEROPAS=',copy(char(39)+passband_active+char(39)+' ',1,21)+'/ Passband database used.');
// The magnitude measured is
// fluxratio:=flux * 2.511886432^magn Should be the same for all stars
// fluxratio/flux:=2.511886432^magn
// magn:=ln(flux_ratio/flux)/ln(2.511886432)
// str(ln(flux_ratio/flux)/ln(2.511886432):0:1,mag_str);
// equals str(log(flux_ratio/flux)/log(2.511886432):0:1,mag_str); ln() can be replaced by log() in a division
// Note log(2.511886432)=0.4 equals 1/2.5
// equals str(2.5*log(flux_ratio) - 2.5*log(flux)):0:1,mag_str);
// equals 2.5*log(flux_ratio) is MZERO
// so MZERO=2.5*ln(flux_ratio)/ln(10);
// backward:
// str(MZERO - 2.5*log(flux)):0:1,mag_str);
// str(MZERO - 2.5*ln(flux)/ln(10)):0:1,mag_str);
//
// test proves it:
// mag:=ln(flux_ratio/flux)/ln(2.511886432);
// mag:=MZERO - 2.5*ln(flux)/ln(10);
//flux_ratio:=exp(mzero*ln(10)/2.5);
if head.mzero_radius=99 then
memo2_message('Photometry calibration for EXTENDED OBJECTS successful. '+inttostr(counter_flux_measured)+
' Gaia stars used for flux calibration. Flux aperture diameter: measured star diameter.'+
' Standard error MZERO [magn]: '+floattostrF(standard_error_mean,ffFixed,0,3)+
'%. Annulus inner diameter: '+inttostr(1+(annulus_radius)*2){background is measured 2 pixels outside rs}+' pixels. Stars with pixel values of '+inttostr(round(head.datamax_org))+' or higher are ignored.')
else
memo2_message('Photometry calibration for POINT SOURCES successful. '+inttostr(counter_flux_measured)+
' Gaia stars used for flux calibration. Flux aperture diameter: '+floattostrf(head.mzero_radius*2, ffFixed, 0,2)+' pixels.'+
' Standard error MZERO [magn]: '+floattostrF(standard_error_mean,ffFixed,0,3)+
'%. Annulus inner diameter: '+inttostr(1+(annulus_radius)*2){background is measured 2 pixels outside rs}+' pixels. Stars with pixel values of '+inttostr(round(head.datamax_org))+' or higher are ignored.');
memo2_message('Photometric calibration is only valid if the filter passband ('+head.filter_name+') is compatible with the passband reference database ('+head.passband_database+'). This is indicated by the coloured square icons in tab photometry.');
if report_lim_magn then
begin
{snr formula snr:=flux/sqrt(flux + r*r*pi* sd^2).
for faint stars snr ≈flux/sqrt( 0 + r*r*pi* sd^2)
flux≈snr*sqrt( 0 + r*r*pi* sd^2)
flux≈snr*r*sqrt(pi)*sd
flux≈snr*(hfd*0.8)*sqrt(pi)*sd assuming star diameter is 2*hfd, so radius is hfd
flux≈snr*sqrt(pi)*sd*hfd*0.8 }
flux_snr_7:=7*sqrt(pi)*Smedian(hfd_x_sd,counter_flux_measured {length}){*0.8{fiddle factor} ;{Assuming minimum SNR is 7 and the aperture is reduced to about hfd for the faintest stars.}
apert:=strtofloat2(stackmenu1.flux_aperture1.text);{aperture diamater expressed in HFD's. If aperture diameter is HFD, half of the star flux is lost}
if apert=0 then apert:=10; {aperture is zero if is set at max text. Set very high}
//encircled flux =1-EXP(-0.5*(radial_distance/sigma)^2)
//encircled flux =1-EXP(-0.5*((apert*HFD/2)/(HFD/2.3548))^2)
//encircled flux =1-EXP(-0.5*(apert*2.3548/2))^2)
flux_snr_7:=flux_snr_7*(1-EXP(-0.5*sqr(apert*2.3548/2 {sigma}))); {Correction for reduced aparture.}
head.magn_limit:=head.mzero-ln(flux_snr_7)*2.5/ln(10); //global variable. same as: mzero-ln(flux)*2.5/ln(10)
magn_limit_str:='Limiting magnitude is '+ floattostrF(head.magn_limit,ffFixed,0,2)+' ( σ='+floattostrF(standard_error_mean,ffgeneral,2,0)+', SNR=7, aperture ⌀'+stackmenu1.flux_aperture1.text+')';
update_float(memo,'LIM_MAGN=',' / Limiting magnitude (SNR=7, aperture '+floattostr2(head.mzero_radius)+' px)',false ,head.magn_limit);
memo2_message(magn_limit_str);
mainwindow.caption:='Photometry calibration successful. '+magn_limit_str;
end;
end
else
begin
magn_limit_str:='Calibration failure! Less then three usable stars found.';
mainwindow.caption:=magn_limit_str;
memo2_message(magn_limit_str);
end;
//flux_ratio_array:=nil;
//hfd_x_sd:=nil;
end;
Screen.Cursor:=crDefault;
end;{fits file}
end;{plot stars}
procedure measure_distortion(out stars_measured : integer);{measure or plot distortion}
var
telescope_ra,telescope_dec,fov,fov_org,ra2,dec2, mag2,Bp_Rp, hfd1,star_fwhm,snr, flux, xc,yc,
frac1,frac2,frac3,frac4,u0,v0,x,y,x2,y2,astrometric_error_innner, astrometric_error_outer,sep,
ra3,dec3,astrometric_error_innnerPS,astrometric_error_outerPS : double;
star_total_counter, max_nr_stars, area1,area2,area3,area4,nrstars_required2,i,sub_counter,
sub_counter2,sub_counter3,sub_counter4,scale,count, formalism : integer;
flip_horizontal, flip_vertical : boolean;
errors_sky_pixel1, errors_sky_pixel2,errors_pixel_sky1,errors_pixel_sky2 : array of double;
procedure plot_star;
var
fitsX,fitsY : double;
begin
celestial_to_pixel(head,ra2,dec2, fitsX,fitsY);{ra,dec to fitsX,fitsY}
x:=fitsX-1;//fits count from 1, image from zero therefore subtract 1
y:=fitsY-1;
if ((x>-50) and (x<=head.width+50) and (y>-50) and (y<=head.height+50)) then {within image1 with some overlap}
begin
inc(star_total_counter);
if flip_horizontal then x2:=(head.width-1)-x else x2:=x;
if flip_vertical then y2:=y else y2:=(head.height-1)-y;
HFD(img_loaded,round(x),round(y), 14 {annulus_radius},99 {flux_aperture},0 {adu_e}, hfd1,star_fwhm,snr,flux,xc,yc);{star HFD and FWHM}
if ((hfd1<15) and (hfd1>=0.8) {two pixels minimum} and (snr>10)) then {star detected in img_loaded}
begin
mainwindow.image1.Canvas.Pen.width :=3;
mainwindow.image1.Canvas.MoveTo(round(x2), round(y2));
mainwindow.image1.Canvas.LineTo(round(x2+(x-xc)*50),round(y2-(y-yc)*50 ));
mainwindow.image1.Canvas.Pen.width :=1;
{for median errror}
if ( (sqr(x-head.crpix1)+sqr(y-head.crpix2)<sqr(0.25*head.height)) and (sub_counter<length(errors_sky_pixel1))) then
begin
errors_sky_pixel1[sub_counter]:=sqrt(sqr(X-xc)+sqr(Y-yc));{add errors to array}
inc(sub_counter);
//check sky to pixel errors:
if sub_counter3<length(errors_pixel_sky1) then
begin
pixel_to_celestial(head,xc+1,yc+1,formalism,ra3,dec3);{calculate the ra,dec position}
ang_sep(ra3,dec3,ra2,dec2,errors_pixel_sky1[sub_counter3] );//angular seperation
inc(sub_counter3);
end;
end;
if ( (sqr(x-head.crpix1)+sqr(y-head.crpix2)>sqr(0.5*head.height)) and (sub_counter2<length(errors_sky_pixel2))) then
begin
errors_sky_pixel2[sub_counter2]:=sqrt(sqr(X-xc)+sqr(Y-yc));{add errors to array}
inc(sub_counter2);
//check sky to pixel errors:
if sub_counter4<length(errors_pixel_sky2) then
begin
pixel_to_celestial(head,xc+1,yc+1,formalism,ra3,dec3);{calculate the ra,dec position}
ang_sep(ra3,dec3,ra2,dec2,errors_pixel_sky2[sub_counter4] );//angular seperation
inc(sub_counter4);
end;
end;
if stars_measured<max_nr_stars then {store distortion data}
begin
distortion_data[0,stars_measured]:=x;{database}
distortion_data[1,stars_measured]:=y;
distortion_data[2,stars_measured]:=xc;{measured}
distortion_data[3,stars_measured]:=yc;
inc(stars_measured);
end;
end;
end;
end;{sub procedure}
begin
if ((head.naxis<>0) and (head.cd1_1<>0)) then
begin
Screen.Cursor:=crHourglass;{$IfDef Darwin}{$else}application.processmessages;{$endif}// Show hourglass cursor, processmessages is for Linux. Note in MacOS processmessages disturbs events keypress for lv_left, lv_right key
flip_vertical:=mainwindow.flip_vertical1.Checked;
flip_horizontal:=mainwindow.flip_horizontal1.Checked;
bp_rp:=999;{not defined in mono versions of the database}
{Fits range 1..width, if range 1,2,3,4 then middle is 2.5=(4+1)/2 }
pixel_to_celestial(head,(head.width+1)/2,(head.height+1)/2,0{wcs only},telescope_ra,telescope_dec); {RA,DEC position of the middle of the image. Works also for case head.crpix1,head.crpix2 are not in the middle}
mainwindow.image1.Canvas.Pen.mode:=pmCopy;
mainwindow.image1.Canvas.Pen.width :=1; // round(1+head.height/mainwindow.image1.height);{thickness lines}
if sip=false then mainwindow.image1.canvas.pen.color:=$00B0FF {orange}
else mainwindow.image1.canvas.pen.color:=$00FF00; {green}
star_total_counter:=0;{total counter}
sub_counter:=0;
sub_counter2:=0;
sub_counter3:=0;
sub_counter4:=0;
max_nr_stars:=round(head.width*head.height*(1216/(2328*1760))); {Check 1216 stars in a circle resulting in about 1000 stars in a rectangle for image 2328 x1760 pixels}
setlength(errors_sky_pixel1,max_nr_stars);
setlength(errors_sky_pixel2,max_nr_stars);
setlength(errors_pixel_sky1,max_nr_stars);
setlength(errors_pixel_sky2,max_nr_stars);
{sets file290 so do before fov selection}
if select_star_database(stackmenu1.star_database1.text,15 {neutral})=false then exit;
setlength(distortion_data,4,max_nr_stars);
stars_measured:=0;{star number}
fov_org:= sqrt(sqr(head.width*head.cdelt1)+sqr(head.height*head.cdelt2))*pi/180; {field of view circle covering all corners with 0% extra}
formalism:=mainwindow.Polynomial1.itemindex;
if database_type>1 then {1476 or 290 files}
begin
if database_type=1476 then {.1476 files}
fov:=min(fov_org,5.142857143*pi/180) {warning FOV should be less the database tiles dimensions, so <=5.142857143 degrees. Otherwise a tile beyond next tile could be selected}
else
if database_type=290 then {.290 files}
fov:=min(fov_org,9.53*pi/180); {warning FOV should be less the database tiles dimensions, so <=9.53 degrees. Otherwise a tile beyond next tile could be selected}
find_areas( telescope_ra,telescope_dec, fov,{var} area1,area2,area3,area4, frac1,frac2,frac3,frac4);{find up to four star database areas for the square image}
{read 1th area}
if area1<>0 then {read 1th area}
begin
if open_database(telescope_dec,area1)=false then begin exit; end; {open database file or reset buffer}
nrstars_required2:=trunc(max_nr_stars * frac1);
while ((star_total_counter<nrstars_required2) and (readdatabase290(telescope_ra,telescope_dec, fov,{var} ra2,dec2, mag2,Bp_Rp)) ) do plot_star;{add star}
end;
{read 2th area}
if area2<>0 then {read 2th area}
begin
if open_database(telescope_dec,area2)=false then begin exit; end; {open database file or reset buffer}
nrstars_required2:=trunc(max_nr_stars * (frac1+frac2));
while ((star_total_counter<nrstars_required2) and (readdatabase290(telescope_ra,telescope_dec, fov,{var} ra2,dec2, mag2,Bp_Rp)) ) do plot_star;{add star}
end;
{read 3th area}
if area3<>0 then {read 3th area}
begin
if open_database(telescope_dec,area3)=false then begin exit; end; {open database file or reset buffer}
nrstars_required2:=trunc(max_nr_stars * (frac1+frac2+frac3));
while ((star_total_counter<nrstars_required2) and (readdatabase290(telescope_ra,telescope_dec, fov,{var} ra2,dec2, mag2,Bp_Rp)) ) do plot_star;{add star}
end;
{read 4th area}
if area4<>0 then {read 4th area}
begin
if open_database(telescope_dec,area4)=false then begin exit; end; {open database file or reset buffer}
nrstars_required2:=trunc(max_nr_stars * (frac1+frac2+frac3+frac4));
while ((star_total_counter<nrstars_required2) and (readdatabase290(telescope_ra,telescope_dec, fov,{var} ra2,dec2, mag2,Bp_Rp)) ) do plot_star;{add star}
end;
close_star_database;
end
else
begin {W08 database}
if wide_database<>name_database then
read_stars_wide_field;{load wide field stars array}
count:=0;
while ((star_total_counter<max_nr_stars) and (count<length(wide_field_stars) div 3) ) do {star file 001 database read. Read up to nrstars_required}
begin
mag2:=wide_field_stars[count*3];{contains: mag1, ra1,dec1, mag2,ra2,dec2,mag3........}
ra2:=wide_field_stars[count*3+1];
dec2:=wide_field_stars[count*3+2];
ang_sep(ra2,dec2,telescope_ra,telescope_dec, sep);{angular seperation}
if ((sep<fov_org*0.5*0.9*(2/sqrt(pi))) and (sep<pi/2)) then {factor 2/sqrt(pi) is to adapt circle search field to surface square. Factor 0.9 is a fiddle factor for trees, house and dark corners. Factor <pi/2 is the limit for procedure equatorial_standard}
begin
plot_star;{add star}
inc(star_total_counter);
end;
inc(count);
end;
end;
{$ifdef mswindows}
mainwindow.image1.Canvas.Font.Name :='default';
{$endif}
{$ifdef linux}
mainwindow.image1.Canvas.Font.Name :='DejaVu Sans';
{$endif}
{$ifdef darwin} {MacOS}
mainwindow.image1.Canvas.Font.Name :='Helvetica';
{$endif}
astrometric_error_innner:=smedian(errors_sky_pixel1,sub_counter); //pixels
astrometric_error_outer:=smedian(errors_sky_pixel2,sub_counter2);
astrometric_error_innnerPS:=smedian(errors_pixel_sky1,sub_counter)*180/pi;//median value degrees
astrometric_error_outerPS:=smedian(errors_pixel_sky2,sub_counter2)*180/pi;
memo2_message('Pixel->Sky error inside '+floattostr4(astrometric_error_innnerPS*3600)+'" or ' +floattostr4(astrometric_error_innnerPS/head.cdelt2)+' pixel using '+inttostr(sub_counter3)+ ' stars.'+
' Outside '+floattostr4(astrometric_error_outerPS*3600)+'" or ' +floattostr4(astrometric_error_outerPS/head.cdelt2)+' pixel using '+inttostr(sub_counter4)+ ' stars.');
memo2_message('Sky->Pixel error inside '+floattostr4(astrometric_error_innner*head.cdelt2*3600)+'" or ' +floattostr4(astrometric_error_innner)+' pixel using '+inttostr(sub_counter)+ ' stars.'+
' Outside '+floattostr4(astrometric_error_outer*head.cdelt2*3600)+'" or ' +floattostr4(astrometric_error_outer)+' pixel using '+inttostr(sub_counter2)+ ' stars.');
mainwindow.image1.Canvas.Pen.mode:=pmXor;
mainwindow.image1.canvas.pen.color:=annotation_color;
mainwindow.image1.Canvas.brush.Style:=bsClear;
mainwindow.image1.Canvas.font.color:=annotation_color;
mainwindow.image1.Canvas.font.size:=8;
mainwindow.image1.Canvas.Pen.width :=3;
{scale in pixels}
mainwindow.image1.Canvas.MoveTo(20, head.height-30);
mainwindow.image1.Canvas.LineTo(20+50*3,head.height-30);
for i:=0 to 3 do
begin
mainwindow.image1.Canvas.MoveTo(20+50*i,head.height-25);
mainwindow.image1.Canvas.LineTo(20+50*i,head.height-35);
mainwindow.image1.Canvas.textout(17+50*i,head.height-25,inttostr(i));
end;
mainwindow.image1.Canvas.textout(20,head.height-60,'Scale in pixels');
{scale in arc seconds}
scale:=round(50/(head.cdelt2*3600));
mainwindow.image1.Canvas.MoveTo(220, head.height-30);
mainwindow.image1.Canvas.LineTo(220+scale*3,head.height-30);
for i:=0 to 3 do
begin
mainwindow.image1.Canvas.MoveTo(220+scale*i,head.height-25);
mainwindow.image1.Canvas.LineTo(220+scale*i,head.height-35);
mainwindow.image1.Canvas.textout(217+scale*i,head.height-25,inttostr(i)+'"');
end;
mainwindow.image1.Canvas.textout(220,head.height-60,'Scale in arcsecs');
mainwindow.image1.Canvas.font.size:=12;
mainwindow.image1.Canvas.textout(500,head.height-50,'Pixel->Sky error inside '+floattostr4(astrometric_error_innnerPS*3600)+'", outside '+floattostr4(astrometric_error_outerPS*3600)+'"');
mainwindow.image1.Canvas.textout(500,head.height-25,'Sky->Pixel error inside '+floattostr4(astrometric_error_innner*head.cdelt2*3600)+'", outside '+floattostr4(astrometric_error_outer*head.cdelt2*3600)+'"');
// errors_sky_pixel1 :=nil; not required auto deallocated
// errors_sky_pixel2:=nil;
Screen.Cursor:=crDefault;
end;{fits file}
end;{measure distortion}
procedure plot_artificial_stars(img: image_array;head: theader);{plot stars as single pixel with a value as the magnitude. For super nova and minor planet search}
var
fitsX,fitsY, telescope_ra,telescope_dec,fov_org,ra2,dec2,
mag2, m_limit,sep : double;
x,y,count : integer;
passband : string;
procedure plot_star;
begin
celestial_to_pixel(head, ra2,dec2, fitsX,fitsY);{ra,dec to fitsX,fitsY}
x:=round(fitsX-1); {0..head.width-1}
y:=round(fitsY-1); {0..head.height-1}
if ((x>=0) and (x<=head.width-1) and (y>=0) and (y<=head.height-1)) then {within image1}
begin
if img[0,y,x]>=1000 then //empthy
img[0,y,x]:=mag2 //no star at this location
else
img[0,y,x]:=-2.5*ln(power(10,-0.4*img[0,y,x]) + power(10,-0.4*mag2))/ln(10);//combine magnitudes
end;
end;
begin
if ((head.naxis<>0) and (head.cd1_1<>0)) then
begin
Screen.Cursor:=crHourglass;{$IfDef Darwin}{$else}application.processmessages;{$endif}// Show hourglass cursor, processmessages is for Linux. Note in MacOS processmessages disturbs events keypress for lv_left, lv_right key
counter_flux_measured:=0;
{find middle of the image}
{Fits range 1..width, if range 1,2,3,4 then middle is 2.5=(4+1)/2 }
pixel_to_celestial(head,(head.width+1)/2,(head.height+1)/2,0 {wcs is sufficient},telescope_ra,telescope_dec); {RA,DEC position of the middle of the image. Works also for case head.crpix1,head.crpix2 are not in the middle}
if select_star_database(stackmenu1.star_database1.text,15 {neutral})=false then exit; {sets file290 so do before fov selection}
fov_org:= sqrt(sqr(head.width*head.cdelt1)+sqr(head.height*head.cdelt2))*pi/180; {field of view with 0% extra}
m_limit:=head.magn_limit+1-0.5;//go one magnitude fainter
//since G magnitude is used to retrieve which about 0.5 magnitude fainter then mag limit. {BP~GP+0.5}
linepos:=2;{Set pointer to the beginning. First two lines are comments}
// if database_type>001 then //1476 or 290 files
// begin
// if database_type=1476 then //.1476 files
// fov:=min(fov_org,5.142857143*pi/180) //warning FOV should be less the database tiles dimensions, so <=5.142857143 degrees. Otherwise a tile beyond next tile could be selected
// else
// if database_type=290 then //.290 files
// fov:=min(fov_org,9.53*pi/180); //warning FOV should be less the database tiles dimensions, so <=9.53 degrees. Otherwise a tile beyond next tile could be selected
// find_areas( telescope_ra,telescope_dec, fov,{var} area1,area2,area3,area4, frac1,frac2,frac3,frac4);{find up to four star database areas for the square image}
{read 1th area}
// if area1<>0 then {read 1th area}
// begin
// if open_database(telescope_dec,area1)=false then begin exit; end; {open database file or reset buffer}
// while ((readdatabase290(telescope_ra,telescope_dec, fov,{var} ra2,dec2, mag2,Bp_Rp)) and (mag2<=m_limit*10)) do plot_star;{add star}
// end;
{read 2th area}
// if area2<>0 then {read 2th area}
// begin
// if open_database(telescope_dec,area2)=false then begin exit; end; {open database file or reset buffer}
// while ((readdatabase290(telescope_ra,telescope_dec, fov,{var} ra2,dec2, mag2,Bp_Rp)) and (mag2<=m_limit*10)) do plot_star;{add star}
// end;
{read 3th area}
// if area3<>0 then {read 3th area}
// begin
// if open_database(telescope_dec,area3)=false then begin exit; end; {open database file or reset buffer}
// while ((readdatabase290(telescope_ra,telescope_dec, fov,{var} ra2,dec2, mag2,Bp_Rp)) and (mag2<=m_limit*10)) do plot_star;{add star}
// end;
// {read 4th area}
// if area4<>0 then {read 4th area}
// begin
// if open_database(telescope_dec,area4)=false then begin exit; end; {open database file or reset buffer}
// while ((readdatabase290(telescope_ra,telescope_dec, fov,{var} ra2,dec2, mag2,Bp_Rp)) and (mag2<=m_limit*10)) do plot_star;{add star}
// end;
// close_star_database;
// end
// else
// if database_type=1 then {W08 database}
// begin {W08, 001 database}
// if wide_database<>name_database then
// read_stars_wide_field;{load wide field stars array}
// count:=0;
// while (count<length(wide_field_stars) div 3) do {star 001 database read.}
// begin
// mag2:=wide_field_stars[count*3];{contains: mag1, ra1,dec1, mag2,ra2,dec2,mag3........}
// ra2:=wide_field_stars[count*3+1];
// dec2:=wide_field_stars[count*3+2];
// ang_sep(ra2,dec2,telescope_ra,telescope_dec, sep);{angular seperation}
// if ((sep<fov_org*0.5*0.9*(2/sqrt(pi))) and (sep<pi/2)) then {factor 2/sqrt(pi) is to adapt circle search field to surface square. Factor 0.9 is a fiddle factor for trees, house and dark corners. Factor <pi/2 is the limit for procedure equatorial_standard}
// begin
// plot_star;{add star}
// end;
// inc(count);
// end;
// end
// else
begin //Database_type=0, Vizier online, Gaia
ang_sep(telescope_ra,telescope_dec,gaia_ra,gaia_dec,sep);
if ((sep>0.15*fov_org) or (online_database=nil)) then //other sky area, update Gaia database online
begin
if read_stars_online(telescope_ra,telescope_dec,fov_org,m_limit {max_magnitude}) then
begin
get_database_passband(head.filter_name,passband);//report local or online database and the database passband
convert_magnitudes(passband) //convert gaia magnitude to a new magnitude. If the type is already correct, no action will follow
end;
end;
count:=0;
while count<length(online_database[0]) do {read stars}
begin
ra2:=online_database[0,count];
dec2:=online_database[1,count];
mag2:=online_database[5,count]*10; // transformed magnitude
if mag2=0 then
mag2:=online_database[3,count]*10; // use BP magnitude
if mag2=0 then
mag2:=(online_database[2,count]+0.5)*10; //use G magnitude instead, {BP~GP+0.5}
plot_star;{add star}
inc(count);
end;
end;
Screen.Cursor:=crDefault;
end;{fits file}
end;{plot stars}
procedure plot_stars_used_for_solving(starlist1,starlist2: star_list; hd: Theader;correctionX,correctionY: double); {plot image stars and database stars used for the solution}
var
nrstars,i, starX, starY,size,flipped : integer;
flip_horizontal, flip_vertical : boolean;
xx,yy,x,y : double;
begin
flip_vertical:=mainwindow.flip_vertical1.Checked;
flip_horizontal:=mainwindow.flip_horizontal1.Checked;
{do image stars}
nrstars:=length(starlist2[0]);
mainwindow.image1.Canvas.Pen.Mode := pmMerge;
mainwindow.image1.Canvas.Pen.width := round(1+hd.height/mainwindow.image1.height);{thickness lines}
mainwindow.image1.Canvas.brush.Style:=bsClear;
mainwindow.image1.Canvas.Pen.Color :=clred;
for i:=0 to nrstars-1 do
begin
if flip_horizontal=true then starX:=round((hd.width-starlist2[0,i])) else starX:=round(starlist2[0,i]);
if flip_vertical=false then starY:=round((hd.height-starlist2[1,i])) else starY:=round(starlist2[1,i]);
size:=15;
mainwindow.image1.Canvas.Rectangle(starX-size,starY-size, starX+size, starY+size);{indicate hfd with rectangle}
end;
{do database stars}
if hd.cd1_1*hd.cd2_2 - hd.cd1_2*hd.cd2_1>0 then {Flipped image. Either flipped vertical or horizontal but not both. Flipped both horizontal and vertical is equal to 180 degrees rotation and is not seen as flipped}
flipped:=-1 //change rotation for flipped image
else
flipped:=+1;
nrstars:=length(starlist1[0]);
mainwindow.image1.Canvas.Pen.Color := annotation_color;
for i:=0 to nrstars-1 do
begin
xx:=(starlist1[0,i]-correctionX)/(hd.cdelt1*3600);{apply correction for database stars center and image center and convert arc seconds to pixels}
yy:=(starlist1[1,i]-correctionY)/(hd.cdelt2*3600);
rotate((90-flipped*hd.crota2)*pi/180,xx,yy,X,Y);{rotate to screen orientation}
if flip_horizontal=false then begin starX:=round(hd.crpix1-x); end else begin starX:=round(hd.crpix1+x); end;
if flip_vertical=false then begin starY:=round(hd.crpix2-y); end else begin starY:=round(hd.crpix2+y); end;
size:=20;
mainwindow.image1.Canvas.Rectangle(starX-size,starY-size, starX+size, starY+size);{indicate hfd with rectangle}
end;
end;
function find_object(var objname : string; var ra0,dec0,length0,width0,pa : double): boolean; {find object in database}
begin
result:=false;
if length(objname)>1 then {Object name length should be two or longer}
begin
objname:=uppercase(objname);
load_deep;{Load the deepsky database once. If already loaded, no action}
linepos:=2;{Set pointer to the beginning}
while read_deepsky('T' {full database search} ,0 {ra},0 {dec},1 {cos(telescope_dec)},2*pi{fov},{var} ra0,dec0,length0,width0,pa) {Deepsky database search} do
begin
if ((objname=uppercase(naam2)) or (objname=uppercase(naam3)) or (objname=uppercase(naam4))) then
begin
result:=true;
if naam3='' then objname:=naam2 {Add one object name only}
else
objname:=naam2+'_'+naam3;{Add two object names}
break; {Stop searching}
end;
end;{while loop}
end;
end;
end.
|