Changeset 20965 in main
- Timestamp:
- 07/05/20 17:40:33 (7 months ago)
- Location:
- adopters/nm/trunk/src/main/backend_qModules/3.0
- Files:
-
- 64 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
adopters/nm/trunk/src/main/backend_qModules/3.0/_EPHT/wateranalytes/ConcsMax.def
r19939 r20965 38 38 ################################################# 39 39 # definition for output file 40 f xml_out_map_file XML Count.map40 f xml_out_map_file XMLMaxA.map 41 41 --------BoNdArY-------- 42 42 f out_detail lbl_not_used__see_xml_out_map_file -
adopters/nm/trunk/src/main/backend_qModules/3.0/_EPHT/wateranalytes/ConcsMeans.def
r19939 r20965 31 31 run; 32 32 --------BoNdArY-------- 33 f out_variable count33 f out_variable Mean 34 34 ################################################# 35 35 # definition for output file 36 f xml_out_map_file XMLCount.map 36 # analytecode $5. 37 38 f xml_out_map_file XMLMeanA.map 37 39 --------BoNdArY-------- 38 40 f out_detail lbl_not_used__see_xml_out_map_file 41 AnalyteCode $5 42 Year_S 4.0 39 43 Mean 12.2 40 44 --------BoNdArY-------- -
adopters/nm/trunk/src/main/backend_qModules/3.0/_EPHT/wateranalytes/_WaterAnalytes.cfg
r19939 r20965 1 #========================================================================= =====1 #========================================================================= 2 2 # IBIS-Q Configuration File 3 3 # 4 4 # Modifications: 5 5 # Date By Description 6 # ---------- ---------- ------------------------------------------------ -6 # ---------- ---------- ------------------------------------------------ 7 7 # 12/02/2013 Brian Use NM Water module model and cfg. 8 #========================================================================= =====8 #========================================================================= 9 9 #value name_path value_path 10 10 d homepath E:\ibisq\qModules30\_EPHT\wateranalytes … … 14 14 d sasdata water_cwsanalytes 15 15 d sascdata temp 16 #################################################################### 16 ########################################################################## 17 17 d response_head_content XMLResponse.head 18 18 d response_tail_content XMLResponse.tail 19 ##################################################################### 19 ########################################################################## 20 20 r form 30 21 21 r output xml … … 26 26 r sas 0 27 27 r test 0 28 ########################################################################## ###28 ########################################################################## 29 29 #value =any value, place holder only 30 30 # name_sas = SAS variable name in the numerator data set (birth data set) 31 # name_html = html name that specified under <DIMENSION> <NAME> in Module XML file 32 # name_pop = SAS variable name in denominator data set (population data set) 33 # prompt = Place holder only, could by any character string. (I used x to pad the line) 34 # type1 = CGI data type for SAS variable type (see comment lines 48 & 49) 35 # type2 = CGI data type for CGI regrouping purpose (see comment lines 51-59) 31 # name_html = html name that specified under <DIMENSION> <NAME> in Module 32 # XML file 33 # name_pop = SAS variable name in denominator data set (population) 34 # prompt = Place holder only, could by any character string. 35 # type1 = CGI data type for SAS variable type (see lines 48 & 49) 36 # type2 = CGI data type for CGI regrouping purpose (see lines 51-59) 36 37 # length = used to indicate the variable length in SAS dataset 37 38 # … … 48 49 # 9 -- Disable variable (To avoid conflict) 49 50 # 10 Proxy variable 50 #========================================================================= ===51 #========================================================================= 51 52 #value name_sas Dimension_name_html name_pop prompt type1 type2 length 52 #========================================================================= ===53 #========================================================================= 53 54 54 1 year_s Year _Snull Year num 0 455 2 PWSID CWSInventory null Community&Water&System num 0 855 1 year_s Year null Year num 0 4 56 2 PWSID PWSInventory null Community&Water&System num 0 8 56 57 3 AnalyteCode AnalyteType Null Water&Contaminant char 0 4 57 58 3 ConcentrationUnits UnitsType null Concentration&Units char 0 4 -
adopters/nm/trunk/src/main/backend_qModules/3.0/birth/NM_RateBirth1KGirls_3YrAvg.def
r20663 r20965 108 108 create table numbers as 109 109 select tmp.*, pop.* 110 from tmp ,pop111 where110 from tmp left join pop 111 on 112 112 ?popcross1? tmp.%cross1%=pop.%popcross1%; 113 113 ?popcross2? tmp.%cross2%=pop.%popcross2%; … … 124 124 create table numbers as 125 125 select tmp.*, pop.* 126 from tmp, pop 127 where tmp.%cross1%=pop.%popcross1% and 126 from tmp left join pop 127 on 128 tmp.%cross1%=pop.%popcross1% and 128 129 tmp.%cross2%=pop.%popcross2%; 129 130 quit;
Note: See TracChangeset
for help on using the changeset viewer.