Changeset 13275 in main
- Timestamp:
- 03/02/17 06:23:23 (5 years ago)
- Location:
- adopters/ky-epht/trunk/src/main/backend_qModules/2.x
- Files:
-
- 27 edited
Legend:
- Unmodified
- Added
- Removed
-
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/airq-epht/MM.cfg
r12572 r13275 29 29 d saspopdata pop_den_00_14 30 30 31 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin32 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin31 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin 32 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin 33 33 34 34 r data_where 2001<=Year<=2011 -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/airq-epht/O3.cfg
r11638 r13275 28 28 d saspopdata pop_den_00_14 29 29 30 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin31 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin30 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin 31 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin 32 32 33 33 r data_where 1999<=Year<=2014 -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/airq-epht/O3pers.cfg
r11638 r13275 28 28 d saspopdata pop_den_00_14 29 29 30 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin31 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin30 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin 31 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin 32 32 33 33 r data_where 1999<=Year<=2014 -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/airq-epht/PM25.cfg
r11638 r13275 25 25 d sasdata pm25_days_exceed 26 26 d saspopdata pop_den_00_14 27 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin28 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin27 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin 28 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin 29 29 30 30 #r data_where 1999<=Year<=2014 -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/airq-epht/PM25Average.cfg
r11638 r13275 26 26 d sasdata pm25_ann_ave 27 27 d saspopdata pop_den_00_14 28 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin29 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin28 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin 29 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin 30 30 #r data_where 1999<=Year<=2014 31 31 r pop_where 1999<=Year<=2014 -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/childlead/AnnCountElev5t10.def
r11639 r13275 5 5 6 6 proc summary data=tmp missing; 7 var x497 ;7 var x497 x413; 8 8 class %cross1% %cross2%; 9 output out=tmp sum=n ;9 output out=tmp sum=n nt; 10 10 proc print data=tmp; 11 11 run; 12 12 13 13 proc print data=tmp; title1 ' '; title2 'Summary tmp'; 14 14 run; 15 16 data tmp; 17 set tmp; 15 18 16 data tmp; 17 set tmp; 18 if n = . then n = 0; 19 if n = -1 then n = .; 19 if n = . and nt gt 0 then do; 20 nodisp=put('Suppressed', $15.); 21 end; 22 if n = . and nt= . then do; 23 nodisp=put('No Tests', $15.); 24 end; 20 25 run; 21 26 22 27 Proc print data=tmp; title1 ' '; title2 'tmp'; 23 28 run; … … 30 35 f out_detail lbl_not_used__see_xml_out_map_file 31 36 n 15.0 37 nodisp 15.0 32 38 --------BoNdArY-------- -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/childlead/AnnCountElevGT10.def
r11639 r13275 5 5 6 6 proc summary data=tmp missing; 7 var x415 ;7 var x415 x413; 8 8 class %cross1% %cross2%; 9 output out=tmp sum=n ;9 output out=tmp sum=n nt; 10 10 proc print data=tmp; 11 11 run; 12 12 13 13 proc print data=tmp; title1 ' '; title2 'Summary tmp'; 14 14 run; 15 16 data tmp; 17 set tmp; 15 18 16 data tmp; 17 set tmp; 18 if n = . then n = 0; 19 if n = -1 then n = .; 19 if n = . and nt gt 0 then do; 20 nodisp=put('Suppressed', $15.); 21 end; 22 if n = . and nt= . then do; 23 nodisp=put('No Tests', $15.); 24 end; 20 25 run; 21 26 22 27 Proc print data=tmp; title1 ' '; title2 'tmp'; 23 28 run; … … 30 35 f out_detail lbl_not_used__see_xml_out_map_file 31 36 n 15.0 37 nodisp 15.0 32 38 --------BoNdArY-------- -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/childlead/AnnPercent5t10.def
r12577 r13275 5 5 6 6 proc summary data=tmp missing; 7 var x498 ;7 var x498 x413; 8 8 class %cross1% %cross2%; 9 output out=tmp mean=n;9 output out=tmp sum=n nt; 10 10 proc print data=tmp; 11 11 run; 12 12 13 13 proc print data=tmp; title1 ' '; title2 'Summary tmp'; 14 14 run; 15 16 data tmp; 17 set tmp; 15 18 16 data tmp; 17 set tmp; 18 if n = . then n = 0; 19 if n = -1 then n = .; 19 if n = . and nt gt 0 then do; 20 nodisp=put('Suppressed', $15.); 21 end; 22 if n = . and nt= . then do; 23 nodisp=put('No Tests', $15.); 24 end; 20 25 run; 21 26 22 27 Proc print data=tmp; title1 ' '; title2 'tmp'; 23 28 run; … … 30 35 f out_detail lbl_not_used__see_xml_out_map_file 31 36 n 11.1 37 nodisp 15.0 32 38 --------BoNdArY-------- -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/childlead/AnnPercentGT10.def
r12578 r13275 5 5 6 6 proc summary data=tmp missing; 7 var x416 ;7 var x416 x413; 8 8 class %cross1% %cross2%; 9 output out=tmp mean=n;9 output out=tmp sum=n nt; 10 10 proc print data=tmp; 11 11 run; 12 12 13 13 proc print data=tmp; title1 ' '; title2 'Summary tmp'; 14 14 run; 15 16 data tmp; 17 set tmp; 15 18 16 data tmp; 17 set tmp; 18 if n = . then n = 0; 19 if n = -1 then n = .; 19 if n = . and nt gt 0 then do; 20 nodisp=put('Suppressed', $15.); 21 end; 22 if n = . and nt= . then do; 23 nodisp=put('No Tests', $15.); 24 end; 20 25 run; 21 26 22 27 Proc print data=tmp; title1 ' '; title2 'tmp'; 23 28 run; … … 30 35 f out_detail lbl_not_used__see_xml_out_map_file 31 36 n 11.1 37 nodisp 15.0 32 38 --------BoNdArY-------- -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/childlead/Count.def
r11639 r13275 1 #f label Count 1 #f label Count 2 2 f type special 3 3 ######################################### … … 17 17 set tmp; 18 18 if n = . then n = 0; 19 if n = -1 then n = .; 19 20 run; 20 21 21 22 Proc print data=tmp; title1 ' '; title2 'tmp'; 22 23 run; … … 30 31 n 15.0 31 32 --------BoNdArY-------- 33 -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/childlead/Count5t10.def
r11639 r13275 1 #f label Count 1 #f label Count 2 2 f type special 3 3 ######################################### … … 5 5 6 6 proc summary data=tmp missing; 7 var x499 ;7 var x499 x89; 8 8 class %cross1% %cross2%; 9 output out=tmp sum=n ;9 output out=tmp sum=n nt; 10 10 proc print data=tmp; 11 11 run; … … 13 13 proc print data=tmp; title1 ' '; title2 'Summary tmp'; 14 14 run; 15 16 data tmp; 17 set tmp; 15 18 16 data tmp; 17 set tmp; 18 if n = . then n = 0; 19 if n = -1 then n = .; 19 if n = . and nt gt 0 then do; 20 nodisp=put('Suppressed', $15.); 21 end; 22 if n = . and nt= . then do; 23 nodisp=put('No Tests', $15.); 24 end; 20 25 run; 21 26 22 27 Proc print data=tmp; title1 ' '; title2 'tmp'; 23 28 run; … … 30 35 f out_detail lbl_not_used__see_xml_out_map_file 31 36 n 15.0 37 nodisp 15.0 32 38 --------BoNdArY-------- -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/childlead/CountGT10.def
r11639 r13275 1 #f label Count 1 #f label Count 2 2 f type special 3 3 ######################################### … … 5 5 6 6 proc summary data=tmp missing; 7 var x93 ;7 var x93 x89; 8 8 class %cross1% %cross2%; 9 output out=tmp sum=n ;9 output out=tmp sum=n nt; 10 10 proc print data=tmp; 11 11 run; … … 13 13 proc print data=tmp; title1 ' '; title2 'Summary tmp'; 14 14 run; 15 16 data tmp; 17 set tmp; 15 18 16 data tmp; 17 set tmp; 18 if n = . then n = 0; 19 if n = -1 then n = .; 19 if n = . and nt gt 0 then do; 20 nodisp=put('Suppressed', $15.); 21 end; 22 if n = . and nt= . then do; 23 nodisp=put('No Tests', $15.); 24 end; 20 25 run; 21 26 22 27 Proc print data=tmp; title1 ' '; title2 'tmp'; 23 28 run; … … 30 35 f out_detail lbl_not_used__see_xml_out_map_file 31 36 n 15.0 37 nodisp 15.0 32 38 --------BoNdArY-------- -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/childlead/Percent5t10.def
r12580 r13275 5 5 6 6 proc summary data=tmp missing; 7 var x500 ;7 var x500 x89; 8 8 class %cross1% %cross2%; 9 output out=tmp mean=n;9 output out=tmp sum=n nt; 10 10 proc print data=tmp; 11 11 run; 12 12 13 13 proc print data=tmp; title1 ' '; title2 'Summary tmp'; 14 14 run; 15 16 data tmp; 17 set tmp; 15 18 16 data tmp; 17 set tmp; 18 if n = . then n = 0; 19 if n = -1.0 then n = .; 19 if n = . and nt gt 0 then do; 20 nodisp=put('Suppressed', $15.); 21 end; 22 if n = . and nt= . then do; 23 nodisp=put('No Tests', $15.); 24 end; 20 25 run; 21 26 22 27 Proc print data=tmp; title1 ' '; title2 'tmp'; 23 28 run; … … 30 35 f out_detail lbl_not_used__see_xml_out_map_file 31 36 n 11.1 37 nodisp 15.0 32 38 --------BoNdArY-------- -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/childlead/PercentGT10.def
r12581 r13275 5 5 6 6 proc summary data=tmp missing; 7 var x94 ;7 var x94 x89; 8 8 class %cross1% %cross2%; 9 output out=tmp mean=n;9 output out=tmp sum=n nt; 10 10 proc print data=tmp; 11 11 run; 12 12 13 13 proc print data=tmp; title1 ' '; title2 'Summary tmp'; 14 14 run; 15 16 data tmp; 17 set tmp; 15 18 16 data tmp; 17 set tmp; 18 if n = . then n = 0; 19 if n = -1.0 then n = .; 19 if n = . and nt gt 0 then do; 20 nodisp=put('Suppressed', $15.); 21 end; 22 if n = . and nt= . then do; 23 nodisp=put('No Tests', $15.); 24 end; 20 25 run; 21 26 22 27 Proc print data=tmp; title1 ' '; title2 'tmp'; 23 28 run; … … 30 35 f out_detail lbl_not_used__see_xml_out_map_file 31 36 n 11.1 37 nodisp 15.0 32 38 --------BoNdArY-------- -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/childlead/XMLCount.map
r11639 r13275 1 1 1 Count VALUE 2 2 Count RELIABILITY_FLAG2 2 NoDataType VALUE -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/childlead/XMLPercent.map
r11639 r13275 1 1 1 Percent VALUE 2 2 NoDataType VALUE -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/childlead/bll_cohort.cfg
r11639 r13275 25 25 d saspath C:\IBIS\ibisq\sasData\final\ 26 26 d saspop C:\IBIS\ibisq\sasData\final\ 27 d sasdata bll_cohort 27 d sasdata bll_cohort2 28 28 d saspopdata pop_den_00_14 29 29 30 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin31 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin30 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin 31 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin 32 32 33 r data_where 2000<=Year<=201 234 #r pop_where 2000<=Year<=201 233 r data_where 2000<=Year<=2013 34 #r pop_where 2000<=Year<=2013 35 35 r sasstdpop morstd 36 36 ################################################################################## -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/childlead/clp6.cfg
r11639 r13275 25 25 d saspath C:\IBIS\ibisq\sasData\final\ 26 26 d saspop C:\IBIS\ibisq\sasData\final\ 27 d sasdata clp6 27 d sasdata clp6_2 28 28 d saspopdata pop_den_00_14 29 29 30 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin31 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin30 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin 31 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin 32 32 33 r data_where 2000<=Year<=201 234 #r pop_where 2000<=Year<=201 233 r data_where 2000<=Year<=2014 34 #r pop_where 2000<=Year<=2014 35 35 r sasstdpop morstd 36 36 ################################################################################## -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/childlead/housing.cfg
r12576 r13275 28 28 #d saspopdata pop_den_00_14 29 29 30 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin31 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin30 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin 31 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin 32 32 33 33 #r data_where 2000<=Year<=2012 -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/clim_weather/flood_vuln.cfg
r11641 r13275 28 28 #d saspopdata pop_den_00_14 29 29 30 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin31 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin30 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin 31 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin 32 32 33 33 #r data_where 2000<=Year<=2012 -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/eddd_epht/_eddd_EPHT.cfg
r11293 r13275 20 20 d sasdata epht_ed 21 21 d saspopdata pop_den_00_14 22 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin23 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin22 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin 23 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin 24 24 ## Limit yr in pop data,otherwise all avail yrs shown in "all" button # 25 r pop_where 2008<=year<=201 325 r pop_where 2008<=year<=2014 26 26 #################################################################### 27 27 d response_head_content XMLResponse.head … … 93 93 6 ptcounty2 GeoCnty rescnty Residential&County num 0 3 94 94 6 zip GeoZIP null ZIP num 0 8 95 6 dist2GeoLHD dist2 Local&Health&District num 0 896 6 distGeoADD dist Area&Development&District num 0 895 6 geoLHD GeoLHD dist2 Local&Health&District num 0 8 96 6 geoADD GeoADD dist Area&Development&District num 0 8 97 97 ## indicator or measures ########################## 98 98 9 mi HeartAttack null HeartAttackHosp num 0 8 -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/hidd_EPHT/_hidd_EPHT.cfg
r11262 r13275 20 20 d sasdata epht_ip 21 21 d saspopdata pop_den_00_14 22 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin 22 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin 23 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin 23 24 ## Limit yr in pop data,otherwise all avail yrs shown in "all" button # 24 r pop_where 2000<=year<=201 325 r pop_where 2000<=year<=2015 25 26 #################################################################### 26 27 d response_head_content XMLResponse.head -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/population/Pop.cfg
r11129 r13275 18 18 d sasdata pop_den_00_14 19 19 d saspopdata none 20 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin 20 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin 21 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin 21 22 #r pop_where 1999<=year<=2008 22 23 d sasstdpop morstd -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/water/Water_AnnMax.cfg
r11642 r13275 12 12 #################################################################### 13 13 #d sas_bin C:\SASServer9.1.3\sas\sas.exe 14 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin15 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin14 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin 15 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin 16 16 #r sas_bin sas&-memsize&0 17 17 d saspath C:\ibis\ibisq\sasData\final\ -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/water/Water_AnnMean.cfg
r11642 r13275 16 16 17 17 #d sas_bin C:\SASServer9.1.3\sas\sas.exe 18 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin19 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin18 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin 19 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin 20 20 #r sas_bin sas&-memsize&0 21 21 #################################################################### … … 71 71 2 meanTHM Level_THM null Level&by&THM num 0 3 72 72 2 meanUranium Level_Uranium null Level&by&Uranium num 0 3 73 3 geocnty GeoCnty null Residential&County num 0 3 74 3 geolhd GeoLHD null Local&Health&Department num 0 3 75 3 geoadd GeoADD null Area&Development&District num 0 3 73 76 74 77 3 PopSize PopSize null Persons&Served&by&System num 0 4 -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/water/Water_PWS.cfg
r11642 r13275 12 12 #################################################################### 13 13 #d sas_bin C:\SASServer9.1.3\sas\sas.exe 14 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin15 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin14 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin 15 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin 16 16 17 17 d saspath C:\ibis\ibisq\sasData\final\ -
adopters/ky-epht/trunk/src/main/backend_qModules/2.x/water/Water_Qtr.cfg
r11642 r13275 12 12 #################################################################### 13 13 #d sas_bin C:\SASServer9.1.3\sas\sas.exe 14 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin15 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin14 #d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.4\sas.exe"&-sysin 15 d sas_bin "C:\Program&Files\SASHome\SASFoundation\9.3\sas.exe"&-sysin 16 16 #r sas_bin sas&-memsize&0 17 17 d saspath C:\ibis\ibisq\sasData\final\ … … 63 63 2 meanNit Level_Nitrate null Level&by&Nitrates num 0 3 64 64 2 meanTHM Level_THM null Level&by&THM num 0 3 65 3 geocnty GeoCnty null Residential&County num 0 3 66 3 geolhd GeoLHD null Local&Health&Department num 0 3 67 3 geoadd GeoADD null Area&Development&District num 0 3 65 68 66 69 3 popsize PopSize null Persons&Served&by&System num 0 4
Note: See TracChangeset
for help on using the changeset viewer.