Changeset 17419 for trunk/Ohana/src/libdvo
- Timestamp:
- Apr 9, 2008, 12:15:16 PM (18 years ago)
- Location:
- trunk/Ohana/src/libdvo
- Files:
-
- 4 edited
-
Makefile (modified) (1 diff)
-
include/dvo.h (modified) (2 diffs)
-
src/coordops.c (modified) (5 diffs)
-
src/dvo_catalog_split.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/libdvo/Makefile
r17190 r17419 30 30 $(DESTINC)/panstarrs_dev_1_defs.h \ 31 31 $(DESTINC)/ps1_dev_1_defs.h \ 32 $(DESTINC)/ps1_dev_2_defs.h 32 $(DESTINC)/ps1_dev_2_defs.h \ 33 $(DESTINC)/ps1_dev_3_defs.h 33 34 34 35 INCS = $(DEFS) $(DESTINC)/dvo.h $(DESTINC)/autocode.h -
trunk/Ohana/src/libdvo/include/dvo.h
r17245 r17419 34 34 PROJ_SIN, // zenithal 35 35 PROJ_TAN, // zenithal 36 PROJ_TNX, // zenithal 36 37 PROJ_DIS, // zenithal (TAN + polyterms) 37 38 PROJ_LIN, // cartesian … … 404 405 # include "ps1_dev_1_defs.h" 405 406 # include "ps1_dev_2_defs.h" 407 # include "ps1_dev_3_defs.h" 406 408 407 409 /*** DVO image db I/O Functions ***/ -
trunk/Ohana/src/libdvo/src/coordops.c
r16980 r17419 82 82 switch (proj) { 83 83 case PROJ_TAN: 84 case PROJ_TNX: 84 85 case PROJ_DIS: 85 86 // R = cot (theta) = cos(theta) / sin(theta) … … 225 226 switch (proj) { 226 227 case PROJ_TAN: 228 case PROJ_TNX: 227 229 case PROJ_DIS: 228 230 // R = cot (theta) = cos(theta) / sin(theta) … … 697 699 if (!strcmp(&ctype[0], "MM")) return PROJ_SIN; // note ctype[0] 698 700 if (!strcmp(&ctype[4], "-TAN")) return PROJ_TAN; 701 if (!strcmp(&ctype[4], "-TNX")) return PROJ_TNX; 699 702 if (!strcmp(&ctype[4], "-DIS")) return PROJ_DIS; 700 703 if (!strcmp(&ctype[4], "-LIN")) return PROJ_LIN; … … 716 719 case PROJ_SIN: strcpy(&ctype[4], "-SIN"); return TRUE; 717 720 case PROJ_TAN: strcpy(&ctype[4], "-TAN"); return TRUE; 721 case PROJ_TNX: strcpy(&ctype[4], "-TNX"); return TRUE; 718 722 case PROJ_DIS: strcpy(&ctype[4], "-DIS"); return TRUE; 719 723 case PROJ_LIN: strcpy(&ctype[4], "-LIN"); return TRUE; … … 736 740 case PROJ_SIN: 737 741 case PROJ_TAN: 742 case PROJ_TNX: 738 743 case PROJ_DIS: 739 744 return PROJ_MODE_ZENITHAL; -
trunk/Ohana/src/libdvo/src/dvo_catalog_split.c
r17245 r17419 849 849 int dvo_catalog_update_split (Catalog *catalog, char VERBOSE) { 850 850 851 int Nitems;852 851 Header header; 853 852 FTable ftable;
Note:
See TracChangeset
for help on using the changeset viewer.
