/****************************************************************************************/ /* This SAS program reads ASCII format (text format) 2016 SHPPS data and creates a */ /* formatted and labeled SAS dataset. */ /* */ /* Change the file location specifications to the location where */ /* you have stored the SHPPS ASCII data file and the format library before you run this*/ /* program. Change the location specification in three places - in the "filename" */ /* statement and in the two "libname" statements at the top of the program. */ /* */ /* Note: Run "SHPPS 2016 District Formats Program.sas" BEFORE you run */ /* "xxxx_SAS_Input_Program.sas" to create the SHPPS dataset. */ /****************************************************************************************/ libname dataout 'c:\shpps2016'; libname library 'c:\shpps2016'; data dataout.envd2016; infile "c:\shpps2016\envd2016.dat" lrecl=3000; missing A C F N M ; input STCMSID 1-4 STATENAME $5-50 DISTCMSID 51-58 @70 DISTWT 12.7 SAMPSTRA 86-89 ENDM1PAP 90-93 ENDM2PAP 94-97 ENDM3PAP 98-102 RTITLE1 $103-173 RTITLE2 $174-244 RTITLE3 $245-315 END1 316-320 END2a 321-325 END2b 326-330 END2c 331-335 END2d 336-340 END2e 341-345 END3 346-350 END4 351-355 END5a 356-360 END5b 361-365 END5c 366-370 END6a 371-375 END6b 376-380 END6c 381-385 END7 386-390 END8 391-395 END9 396-400 END10 401-405 END11 406-410 END12a 411-415 END12b 416-420 END12c 421-425 END12d 426-430 END12e 431-435 END13 436-440 END14 441-445 END15 446-450 END16a 451-455 END16b 456-460 END16c 461-465 END17a 466-470 END17b 471-475 END17c 476-480 END18 481-485 END19 486-490 END20 491-495 END21 496-500 END22 501-505 END23 506-514 END24 515-519 END25a 520-524 END25b 525-529 END25c 530-534 END25d 535-539 END25e 540-544 END26 545-549 END27 550-554 END28 555-559 END29a 560-564 END29b 565-569 END29c 570-574 END30a 575-579 END30b 580-584 END30c 585-589 END31 590-594 END32 595-599 END33 600-604 END34 605-609 END35 610-614 END36 615-623 END37 624-628 END38 629-633 END39 634-638 END40 639-643 END41a 644-648 END41b 649-653 END42a 654-658 END42b 659-663 END42c 664-668 END42d 669-673 END42e 674-678 END42f 679-683 END42g 684-688 END42h 689-693 END42i 694-698 END42j 699-703 END42k 704-708 END42l 709-713 END42m 714-718 END43a 719-723 END43b 724-728 END43c 729-733 END43d 734-738 END43e 739-743 END43f 744-748 END43g 749-753 END43h 754-758 END43i 759-763 END43j 764-768 END43k 769-773 END43kSPEC $774-974 END44 975-979 END45 980-984 END46 985-989 END47 990-994 END48 995-999 END49 1000-1004 END50_1 1005-1009 END50_2 1010-1014 END50_3 1015-1019 END50_4 1020-1024 END50_5 1025-1029 END50_6 1030-1034 END50_7 1035-1039 END50_8 1040-1044 END50_9 1045-1049 END51 1050-1054 END52 1055-1059 END53 1060-1064 END54 1065-1069 END55 1070-1074 END56a 1075-1079 END56b 1080-1084 END56c 1085-1089 END57 1090-1094 END58a 1095-1099 END58b 1100-1104 END58c 1105-1109 END58d 1110-1114 END59 1115-1119 END60 1120-1124 END61a 1125-1129 END61b 1130-1134 END61c 1135-1139 END61d 1140-1144 END62 1145-1149 END63a 1150-1154 END63b 1155-1159 END63c 1160-1164 END63d 1165-1169 END63e 1170-1174 END64 1175-1179 END65 1180-1184 END66a 1185-1189 END66b 1190-1194 END66c 1195-1199 END66d 1200-1204 END67 1205-1209 END68 1210-1214 END69a 1215-1219 END69b 1220-1224 END69c 1225-1229 END69d 1230-1234 END70 1235-1239 END71 1240-1244 END72a 1245-1249 END72b 1250-1254 END72c 1255-1259 END72d 1260-1264 END73 1265-1269 END74 1270-1274 END75a 1275-1279 END75b 1280-1284 END75c 1285-1289 END75d 1290-1294 END76 1295-1299 END77 1300-1304 END78a 1305-1309 END78b 1310-1314 END78c 1315-1319 END78d 1320-1324 END78e 1325-1329 END78f 1330-1334 END78g 1335-1339 END78h 1340-1344 END78i 1345-1349 END78j 1350-1354 END78k 1355-1359 END79a 1360-1364 END79b 1365-1369 END80 1370-1374 END81a 1375-1379 END81b 1380-1384 END81c 1385-1389 END81d 1390-1394 END81e 1395-1399 END81f 1400-1404 END81g 1405-1409 END81h 1410-1414 END81i 1415-1419 END81j 1420-1424 END82 1425-1429 END83 1430-1434 END84a 1435-1439 END84b 1440-1444 END84c 1445-1449 END84d 1450-1454 END84e 1455-1459 END84f 1460-1464 END85a 1465-1469 END85b 1470-1474 END85c 1475-1479 END85d 1480-1484 END85e 1485-1489 END85f 1490-1494 END85g 1495-1499 END86 1500-1504 END87 1505-1509 END88 1510-1514 END89 1515-1519 END90 1520-1524 END91 1525-1529 END92 1530-1534 END93a 1535-1539 END93b 1540-1544 END93c 1545-1549 END93d 1550-1554 END93e 1555-1559 END93f 1560-1564 END93g 1565-1569 END93h 1570-1574 END93i 1575-1579 END94 1580-1584 END95 1585-1589 END96 1590-1594 END97 1595-1599 END98 1600-1604 END99a 1605-1609 END99b 1610-1614 END99c 1615-1619 END100 1620-1624 END101 1625-1629 END102 1630-1634 END103 1635-1639 END104a 1640-1644 END104b 1645-1649 END104c 1650-1654 END105 1655-1659 END106a 1660-1664 END106b 1665-1669 END106c 1670-1674 END107a 1675-1679 END107b 1680-1684 END107c 1685-1689 END107d 1690-1694 END107e 1695-1699 END107f 1700-1704 END107g 1705-1709 END107h 1710-1714 END107i 1715-1719 END107j 1720-1724 END107k 1725-1729 END108 1730-1734 END109 1735-1739 END110a 1740-1744 END110b 1745-1749 END110c 1750-1754 END110d 1755-1759 END110e 1760-1764 END110f 1765-1769 END110g 1770-1774 END110h 1775-1779 END110i 1780-1784 END110j 1785-1789 END110k 1790-1794 END110l 1795-1799 END110m 1800-1804 END111 1805-1809 END112a 1810-1814 END112b 1815-1819 END112c 1820-1824 END112d 1825-1829 END112e 1830-1834 END112f 1835-1839 END112g 1840-1844 END112h 1845-1849 END113a 1850-1854 END113b 1855-1859 END113c 1860-1864 END113d 1865-1869 END113e 1870-1874 END113f 1875-1879 END113g 1880-1884 END113h 1885-1889 END113i 1890-1894 END113j 1895-1899 END113k 1900-1904 END113l 1905-1909 END113m 1910-1914 END114a 1915-1919 END114b 1920-1924 END114c 1925-1929 END114d 1930-1934 END114e 1935-1939 END115a 1940-1944 END115b 1945-1949 END115c 1950-1954 END115d 1955-1959 END115e 1960-1964 END116a 1965-1969 END116b 1970-1974 END116c 1975-1979 END116d 1980-1984 END116e 1985-1989 END117 1990-1994 END118 1995-1999 END119 2000-2004 END120 2005-2009 END121a 2010-2014 END121b 2015-2019 END121c 2020-2024 END121d 2025-2029 END121e 2030-2034 END121f 2035-2039 END121g 2040-2044 END121h 2045-2049 END121i 2050-2054 END121j 2055-2059 END121k 2060-2064 END121l 2065-2069 END121m 2070-2074 END121n 2075-2079 END121o 2080-2084 END121p 2085-2089 END121q 2090-2094 END122 2095-2099 END123a 2100-2104 END123b 2105-2109 END123c 2110-2114 END123d 2115-2119 END123e 2120-2124 END123f 2125-2129 END123g 2130-2134 END123h 2135-2139 END123i 2140-2144 END123j 2145-2149 END123k 2150-2154 END123l 2155-2159 END123m 2160-2164 END123n 2165-2169 END123o 2170-2174 END123p 2175-2179 END123q 2180-2184 END123r 2185-2189 END124a 2190-2194 END124b 2195-2199 END124c 2200-2204 END125 2205-2209 END126a 2210-2214 END126b 2215-2219 END126c 2220-2224 END126d 2225-2229 END126e 2230-2234 END126f 2235-2239 END126g 2240-2244 END126h 2245-2249 END126i 2250-2254 END126j 2255-2259 END126k 2260-2264 END126l 2265-2269 END127 2270-2274 END128 2275-2279 END129 2280-2284 END130 2285-2289 END131 2290-2294 END132 2295-2299 END133 2300-2304 END134 2305-2309 END135 2310-2314 END136 2315-2319 END137 2320-2324 END138 2325-2329 END139 2330-2334 END140 2335-2339 END141a 2340-2344 END141b 2345-2349 END141c 2350-2354 END141d 2355-2359 END141e 2360-2364 END142a 2365-2369 END142b 2370-2374 END142c 2375-2379 END142d 2380-2384 END142e 2385-2389 END142f 2390-2394 END143 2395-2399 END144 2400-2404 END145 2405-2409 END146 2410-2414 END147 2415-2419 END148 2420-2424 END149a 2425-2429 END149b 2430-2434 END149c 2435-2439 END149d 2440-2444 END149e 2445-2449 END149f 2450-2454 END149g 2455-2459 END149h 2460-2464 END149i 2465-2469 END149j 2470-2474 END149k 2475-2479 END149l 2480-2484 END149m 2485-2489 END149n 2490-2494 END149o 2495-2499 END149p 2500-2504 END149q 2505-2509 END149r 2510-2514 END149s 2515-2519 END149t 2520-2524 END149u 2525-2529 END150 2530-2534 END151 2535-2539 END152 2540-2544 END153 2545-2549 END154 2550-2554 END155 2555-2559 END156 2560-2564 END157 2565-2569 END158a 2570-2574 END158b 2575-2579 END158c 2580-2584 END158d 2585-2589 END158e 2590-2594 END158f 2595-2599 END158g 2600-2604 END158h 2605-2609 END158i 2610-2614 END158j 2615-2619 END158k 2620-2624 END158l 2625-2629 END158m 2630-2634 END158n 2635-2639 END158o 2640-2644 END158p 2645-2649 END158q 2650-2654 END158r 2655-2659 END158s 2660-2664 END158t 2665-2669 END158u 2670-2674 END158v 2675-2679 END158w 2680-2684 END159a 2685-2689 END159b 2690-2694 END159c 2695-2699 END159d 2700-2704 END159e 2705-2709 END159f 2710-2714 END159g 2715-2719 END159h 2720-2724 END159i 2725-2729 END159j 2730-2734 END159k 2735-2739 END159l 2740-2744 END159m 2745-2749 END160a 2750-2754 END160b 2755-2759 END160c 2760-2764 END160d 2765-2769 END160e 2770-2774 END160f 2775-2779 END160g 2780-2784 END160h 2785-2789 END160i 2790-2794 END160j 2795-2799 END160k 2800-2804 END160l 2805-2809 END160m 2810-2814 END161a 2815-2819 END161b 2820-2824 END161c 2825-2829 END161d 2830-2834 END161e 2835-2839 END162 2840-2844 END163 2845-2849 END164 2850-2854 END165 2855-2859 END166 2860-2864 END167 2865-2869 END168 2870-2874; ************************************ * Assign formats to SAS variables.* ************************************; Format END23 END36 TIME8. END1 END2a END2b END2c END2d END2e END3 END4 END5a END5b END5c END6a END6b END6c END7 END8 END9 END11 END12a END12b END12c END12d END12e END13 END14 END15 END16a END16b END16c END17a END17b END17c END18 END19 END20 END24 END25a END25b END25c END25d END25e END26 END27 END28 END29a END29b END29c END30a END30b END30c END31 END32 END33 END37 END40 END41a END41b END42a END42b END42c END42d END42e END42f END42g END42h END42i END42j END42k END42l END42m END43a END43b END43c END43d END43e END43f END43g END43h END43i END43j END43k END45 END46 END47 END48 END49 END50_1 END50_2 END50_3 END50_4 END50_5 END50_6 END50_7 END50_8 END50_9 END51 END52 END53 END54 END55 END56a END56b END56c END57 END58a END58b END58c END58d END59 END60 END61a END61b END61c END61d END62 END63a END63b END63c END63d END63e END64 END65 END66a END66b END66c END66d END67 END68 END69a END69b END69c END69d END70 END71 END72a END72b END72c END72d END73 END74 END75a END75b END75c END75d END76 END77 END78a END78b END78c END78d END78e END78f END78g END78h END78i END78j END78k END80 END81a END81b END81c END81d END81e END81f END81g END81h END81i END81j END82 END83 END132 END134 END135 END136 END140 END141a END141b END141c END141d END141e END143 END144 END145 END146 END149a END149b END149c END149d END149e END149f END149g END149h END149i END149j END149k END149l END149m END149n END149o END149p END149q END149r END149s END149t END149u END150 END151 END152 END153 END154 END155 END157 END158a END158b END158c END158d END158e END158f END158g END158h END158i END158j END158k END158l END158m END158n END158o END158p END158q END158r END158s END158t END158u END158v END158w END160a END160b END160c END160d END160e END160f END160g END160h END160i END160j END160k END160l END160m END161a END161b END161c END161d END161e END163 END164 END168 END85a END85b END85c END85d END85e END85f END85g END86 END90 END93a END93b END93c END93d END93e END93f END93g END93h END93i END94 END95 END96 END97 END98 END100 END101 END102 END103 END104a END104b END104c END105 END106a END106b END106c END107a END107b END107c END107d END107e END107f END107g END107h END107i END107j END107k END108 END109 END110a END110b END110c END110d END110e END110f END110g END110h END110i END110j END110k END110l END110m END111 END114a END114d END114e END115a END115d END115e END116a END116d END116e END118 END119 END120 END121a END121b END121c END121d END121e END121f END121g END121h END121i END121j END121k END121l END121m END121n END121o END121p END121q END122 END123a END123b END123c END123d END123e END123f END123g END123h END123i END123j END123k END123l END123m END123n END123o END123p END123q END123r END124a END124b END124c END125 END127 END129 END130 END131 yesno. END10 END21 END34 END10f. END22 END22f. END35 END35f. END38 END39 END38f. END44 END44f. END79a END79b END126a END126b END126c END126d END126e END126f END126g END126h END126i END126j END126k END126l END79f. END84a END84b END84c END84d END84e END84f END133 END142a END142b END142c END142d END142e END142f END147 END148 END165 END84f. END137 END137f. END138 END138f. END139 END139f. END156 END156f. END159a END159b END159c END159d END159e END159f END159g END159h END159i END159j END159k END159l END159m END159f. END162 end162f. END166 END166f. END167 END167f. END87 END87f. END88 END88f. END89 END89f. END91 END91f. END92 END92f. END99a END99b END99c END99f. END112a END112b END112c END112d END112e END112f END112g END112h END113a END113b END113c END113d END113e END113f END113g END113h END113i END113j END113k END113l END113m END112f. END114b END115b END116b END114bf. END114c END115c End116c END114cf. END117 END117f. END128 END128f. ENDM1PAP ENDM2PAP ENDM3PAP type. SAMPSTRA SAMPSTRAF. ; *********************************** * Assign labels to SAS variables.* ***********************************; Label STCMSID = "STCMSID - State CMS ID" STATENAME = "STATENAME - State Name" DISTCMSID = "DISTCMSID - District CMS ID" DISTWT = "DISTWT - Analysis Weight for District" SAMPSTRA = "SAMPSTRA - Stratum Variable" ENDM1PAP = "ENDM1PAP- Web - Paper Complete Module1" ENDM2PAP = "ENDM2PAP- Web - Paper Complete Module2" ENDM3PAP = "ENDM3PAP- Web - Paper Complete Module3" RTITLE1 = "RTITLE1 - RESPONDENT TITLE MODULE1" RTITLE2 = "RTITLE2 - RESPONDENT TITLE MODULE2" RTITLE3 = "RTITLE3 - RESPONDENT TITLE MODULE3" END1 = 'END1 - ES - Closed campuses' END2a = 'END2a - ES - Monitor - School halls during classes' END2b = 'END2b - ES - Monitor - School halls between classes' END2c = 'END2c - ES - Monitor - Restrooms' END2d = 'END2d - ES - Monitor - School grounds' END2e = 'END2e - ES - Monitor - Cafeteria' END3 = 'END3 - ES - Students wear uniforms' END4 = 'END4 - ES - Student dress code' END5a = 'END5a - ES - Students wear ID badges' END5b = 'END5b - ES - Fac/staff wear ID badges' END5c = 'END5c - ES - Visitors wear ID badges' END6a = 'END6a - ES - Use security cameras' END6b = 'END6b - ES - Use metal detectors' END6c = 'END6c - ES - Use communic devices for security' END7 = 'END7 - ES locked during school day' END8 = 'END8 - ES - Students refrain from using personal communic devices' END9 = 'END9 - ES - Use police/security guards during day' END10 = 'END10 - Std distance for ES busing eligibility' END11 = 'END11 - MS - Closed campuses' END12a = 'END12a - MS - Monitor - School halls during classes' END12b = 'END12b - MS - Monitor - School halls between classes' END12c = 'END12c - MS - Monitor - Restrooms' END12d = 'END12d - MS - Monitor - School grounds' END12e = 'END12e - MS - Monitor - Cafeteria' END13 = 'END13 - MS - Conduct locker searches' END14 = 'END14 - MS - Students wear uniforms' END15 = 'END15 - MS - Student dress code' END16a = 'END16a - MS - Students wear ID badges' END16b = 'END16b - MS - Fac/staff wear ID badges' END16c = 'END16c - MS - Visitors wear ID badges' END17a = 'END17a - MS - Use security cameras' END17b = 'END17b - MS - Use metal detectors' END17c = 'END17c - MS - Use communic devices for security' END18 = 'END18 - MS locked during school day' END19 = 'END19 - MS - Students refrain from using personal communic devices' END20 = 'END20 - MS - Use police/security guards during day' END21 = 'END21 - Std distance for MS busing eligibility' END22 = 'END22 - Dist req/rec MS start times' END23 = 'END23 - Earliest req/rec MS start time' END24 = 'END24 - HS - Closed campuses' END25a = 'END25a - HS - Monitor - School halls during classes' END25b = 'END25b - HS - Monitor - School halls between classes' END25c = 'END25c - HS - Monitor - Restrooms' END25d = 'END25d - HS - Monitor - School grounds' END25e = 'END25e - HS - Monitor - Cafeteria' END26 = 'END26 - HS - Conduct locker searches' END27 = 'END27 - HS - Students wear uniforms' END28 = 'END28 - HS - Student dress code' END29a = 'END29a - HS - Students wear ID badges' END29b = 'END29b - HS - Fac/staff wear ID badges' END29c = 'END29c - HS - Visitors wear ID badges' END30a = 'END30a - HS - Use security cameras' END30b = 'END30b - HS - Use metal detectors' END30c = 'END30c - HS - Use communic devices for security' END31 = 'END31 - HS locked during school day' END32 = 'END32 - HS - Students refrain from using personal communic devices' END33 = 'END33 - HS - Use police/security guards during day' END34 = 'END34 - Std distance for HS busing eligibility' END35 = 'END35 - Dist req/rec HS start times' END36 = 'END36 - Earliest req/rec HS start time' END37 = 'END37 - Promo walking/biking to/from school' END38 = 'END38 - Promo use of public trans by students ' END39 = 'END39 - Promo use of public trans by fac/staff' END40 = 'END40 - Dist has joint use agreement' END41a = 'END41a - Joint use agreement - Student use of cmty facilities' END41b = 'END41b - Joint use agreement - Cmty member/group school facility use' END42a = 'END42a - Dist agree applies to - Indoor recreation/PA' END42b = 'END42b - Dist agree applies to - Outdoor recreation/PA' END42c = 'END42c - Dist agree applies to - Library services' END42d = 'END42d - Dist agree applies to - Preschool/infant child care prog' END42e = 'END42e - Dist agree applies to - Before/after-school prog' END42f = 'END42f - Dist agree applies to - Adult ed prog' END42g = 'END42g - Dist agree applies to - Hlthcare services' END42h = 'END42h - Dist agree applies to - MH/SS' END42i = 'END42i - Dist agree applies to - Meeting space for civic/cmty group' END42j = 'END42j - Dist agree applies to - Meeting space for local gov use' END42k = 'END42k - Dist agree applies to - Performances' END42l = 'END42l - Dist agree applies to - Univ/college/tech schools ed-based prog' END42m = 'END42m - Dist agree applies to - Emergency response' END43a = 'END43a - Dist agree w local gov dept' END43b = 'END43b - Dist agree w non-gov sports prog/league' END43c = 'END43c - Dist agree w university/college/tech school' END43d = 'END43d - Dist agree w civic or cmty groups' END43e = 'END43e - Dist agree w youth org' END43f = 'END43f - Dist agree w faith-based org' END43g = 'END43g - Dist agree w hlth club' END43h = 'END43h - Dist agree w hlthcare facility' END43i = 'END43i - Dist agree w MH/SS facility' END43j = 'END43j - Dist agree w library system' END43k = 'END43k - Dist agree w other public/private entity ' END43kSPEC = 'END43kSPEC - Specify' END44 = 'END44 -Dist allows indoor/outdoor facilities use w/o joint use agreement' END45 = 'END45 - Prohib gang activity' END46 = 'END46 - Prohib bullying on school property' END47 = 'END47 - Prohib bullying at locations to/from school' END48 = 'END48 - Prohib bullying at off-campus events' END49 = 'END49 - Pol prohib bullying lists groups w specific traits' END50_1 = 'END50_1 - Bullying pol enumerates - Race/ethnicity' END50_2 = 'END50_2 - Bullying pol enumerates - Disability' END50_3 = 'END50_3 - Bullying pol enumerates - Religion' END50_4 = 'END50_4 - Bullying pol enumerates - Sex' END50_5 = 'END50_5 - Bullying pol enumerates - Sexual orientation' END50_6 = 'END50_6 - Bullying pol enumerates - Gender identity/expression' END50_7 = 'END50_7 - Bullying pol enumerates - Age' END50_8 = 'END50_8 - Bullying pol enumerates - Socio-economic status' END50_9 = 'END50_9 - Bullying pol enumerates - Other traits' END51 = 'END51 - Prohib cyber-bullying interfering with ed env' END52 = 'END52 - Prohib sexual harassment on school property' END53 = 'END53 - Prohib sexual harassment at locations to/from school' END54 = 'END54 - Prohib sexual harassment at off-campus events' END55 = 'END55 - Action plan for suicide risk' END56a = "END56a - Suicide plan - Inform student's family" END56b = 'END56b - Suicide plan - Student ref to MH provider' END56c = 'END56c - Suicide plan - Document visit to MH provider ' END57 = 'END57 - Prohib cig smoking by students' END58a = 'END58a - Prohib cig smoking by students - School buildings' END58b = 'END58b - Prohib cig smoking by students - Outside on school grounds' END58c = 'END58c - Prohib cig smoking by students - School buses' END58d = 'END58d - Prohib cig smoking by students - Off-campus school-sponsored events' END59 = 'END59 - Prohib cigar/pipe smoking by students' END60 = 'END60 - Prohib smokeless tobacco use by students' END61a = 'END61a - Prohib smokeless tobacco use by students - School buildings' END61b = 'END61b - Prohib smokeless tobacco use by students - Outside on school grounds' END61c = 'END61c - Prohib smokeless tobacco use by students - School buses' END61d = 'END61d - Prohib smokeless tobacco use by students - Off-campus school-sponsored events' END62 = 'END62 - Prohib electronic vapor products by students' END63a = 'END63a - Prohib tobacco marketing - School buildings' END63b = 'END63b - Prohib tobacco marketing - Outside on school grounds' END63c = 'END63c - Prohib tobacco marketing - School buses' END63d = 'END63d - Prohib tobacco marketing - School publications' END63e = 'END63e - Prohib tobacco marketing - Sponsorship of school events' END64 = 'END64 - Prohib students wearing tobacco brand apparel' END65 = 'END65 - Prohib cig smoking by fac/staff' END66a = 'END66a - Prohib cig smoking by fac/staff - School buildings' END66b = 'END66b - Prohib cig smoking by fac/staff - Outside on school grounds' END66c = 'END66c - Prohib cig smoking by fac/staff - School buses' END66d = 'END66d - Prohib cig smoking by fac/staff - Off-campus school-sponsored events' END67 = 'END67 - Prohib cigar/pipe smoking by fac/staff' END68 = 'END68 -Prohib smokeless tobacco use by fac/staff' END69a = 'END69a - Prohib smokeless tobacco use by fac/staff - School buildings' END69b = 'END69b - Prohib smokeless tobacco use by fac/staff - Outside on school grounds' END69c = 'END69c - Prohib smokeless tobacco use by fac/staff - School buses' END69d = 'END69d - Prohib smokeless tobacco use by fac/staff - Off-campus school-sponsored events' END70 = 'END70 - Prohib electronic vapor products by fac/staff' END71 = 'END71 - Prohib cig smoking by visitors' END72a = 'END72a - Prohib cig smoking by school visitors - School buildings' END72b = 'END72b - Prohib cig smoking by school visitors - Outside on school grounds' END72c = 'END72c - Prohib cig smoking by school visitors - School buses' END72d = 'END72d - Prohib cig smoking by school visitors - Off-campus school-sponsored events' END73 = 'END73 - Prohib cigar/pipe smoking by school visitors' END74 = 'END74 - Prohib smokeless tobacco use by school visitors' END75a = 'END75a - Prohib smokeless tobacco use by school visitors - School buildings' END75b = 'END75b - Prohib smokeless tobacco use by school visitors - Outside on school grounds' END75c = 'END75c - Prohib smokeless tobacco use by school visitors - School buses' END75d = 'END75d - Prohib smokeless tobacco use by school visitors - Off-campus school-sponsored events' END76 = 'END76 - Prohib electronic vapor products by visitors' END77 = 'END77 - Student drug testing' END78a = 'END78a - Insp/maint - Playground facilities and equipment' END78b = 'END78b - Insp/maint - Indoor athletic facilities' END78c = 'END78c - Insp/maint - Outdoor athletic facilities' END78d = 'END78d - Insp/maint - Special classroom areas' END78e = 'END78e - Insp/maint - Other school areas' END78f = 'END78f - Insp/maint - Smoke alarms' END78g = 'END78g - Insp/maint - Fire extinguishers' END78h = 'END78h - Insp/maint - Sprinkler systems' END78i = 'END78i - Insp/maint - Lighting inside school buildings' END78j = 'END78j - Insp/maint - Lighting outside school buildings' END78k = 'END78k - Insp/maint - Automated external defibrillators' END79a = 'END79a - Protective gear - Wood shop/metal shop' END79b = 'END79b - Protective gear - Lab activ' END80 = 'END80 - Hearing protection' END81a = 'END81a - Playground safety - Ratio of monitors to students' END81b = 'END81b - Playground safety - Criteria for monitor selection' END81c = 'END81c - Playground safety - Duties of playground monitors' END81d = 'END81d - Playground safety - Training for playground monitors' END81e = 'END81e - Playground safety - Discipline proc' END81f = 'END81f - Playground safety - Injury proc' END81g = 'END81g - Playground safety - Selection, placement, and installation of surfacing' END81h = 'END81h - Playground safety - Selection, placement, and installation of equipment' END81i = 'END81i - Playground safety - Rule posting' END81j = 'END81j - Playground safety - ID of person resp for enforcing pol' END82 = 'END82 - Dist train - Playground monitors' END83 = 'END83 - Dist sued for injury occurring on school property' END84a = 'END84a - Dist req/rec - Schedule outdoor activ to avoid peak sun' END84b = 'END84b - Dist req/rec - Allow for sunscreen application' END84c = 'END84c - Dist req/rec - Encourage sunscreen application' END84d = 'END84d - Dist req/rec - Encourage wearing protective clothing' END84e = 'END84e - Dist req/rec - Encourage hats/visors' END84f = 'END84f - Dist req/rec - Encourage wearing sunglasses' END85a = 'END85a - Periodic insp - Condensation' END85b = 'END85b - Periodic insp - Building foundation/walls/roof' END85c = 'END85c - Periodic insp - Mold' END85d = 'END85d - Periodic insp - Plumbing system' END85e = 'END85e - Periodic insp - HVAC system' END85f = 'END85f - Periodic insp - Test drinking water for lead' END85g = 'END85g - Periodic insp - Cleaning' END86 = 'END86 - Schools have main instr building constructed before 1980' END87 = 'END87 - Insp for lead paint' END88 = 'END88 - Insp for PCBs in caulking' END89 = 'END89 - Insp for PCBs in fluorescent light ballasts' END90 = 'END90 - Dist uses IPM' END91 = 'END91 - How often pest insp' END92 = 'END92 - How often notification prior to pesticides' END93a = 'END93a - Dist req - Seal openings' END93b = 'END93b - Dist req - Keep vegetation at least 1 foot from buildings' END93c = 'END93c - Dist req - Allow eating only in designated areas' END93d = 'END93d - Dist req - Store waste in plastic/glass/metal containers w lids' END93e = 'END93e - Dist req - Repair cracks in pavements/sidewalks' END93f = 'END93f - Dist req - Remove infested/diseased plants' END93g = 'END93g - Dist req - Use spot Tx rather than widespread pesticides' END93h = 'END93h - Dist req - Mark indoor/outdoor areas treated with pesticides' END93i = 'END93i - Dist req - Store food in plastic/glass/metal containers with lids' END94 = 'END94 - Dist IAQ mgmt prog' END95 = 'END95 - Dist IAQ mgmt prog based on EPA IAQ Tools for Schools' END96 = 'END96 - Addressing mold prob' END97 = 'END97 - Respond to moisture within 48 hours' END98 = 'END98 - Radon testing' END99a = 'END99a - Dist engine idling prog - School buses' END99b = 'END99b - Dist engine idling prog - Commercial vehicles' END99c = 'END99c - Dist engine idling prog - Personal vehicles' END100 = 'END100 - Dist prov bus drivers training for engine idling prog' END101 = 'END101 - Purchase low-emitting products' END102 = 'END102 - Purchase mercury-free products' END103 = 'END103 - Schools have school-operated water system' END104a = 'END104a - Req test water for bacteria' END104b = 'END104b - Req test water for coliforms' END104c = 'END104c - Req test water for other contaminants' END105 = 'END105 - Req flush drinking water outlets' END106a = 'END106a - Dist approval req - Cleaning/maint products' END106b = 'END106b - Dist approval req - Pesticides' END106c = 'END106c - Dist approval req - Chemicals' END107a = 'END107a - Training - Mercury spill cleanup' END107b = 'END107b - Training - Use of hazardous materials' END107c = 'END107c - Training - Labeling of hazardous materials' END107d = 'END107d - Training - Storage of hazardous materials' END107e = 'END107e - Training - Disposal of hazardous materials' END107f = 'END107f - Training - Reduce use of hazardous materials' END107g = 'END107g - Training - Addressing mold prob' END107h = 'END107h - Training - Indoor air qual' END107i = 'END107i - Training - Drinking water qual' END107j = 'END107j - Training - IPM' END107k = 'END107k - Training - Green cleaning products/pract' END108 = 'END108 - Green building design' END109 = 'END109 - Dist req use of 3rd party cert' END110a = 'END110a - Natural light' END110b = 'END110b - Energy efficient lighting/electrical' END110c = 'END110c - Renewable energy' END110d = 'END110d - Conservation of water' END110e = 'END110e - Impl of recycling prog' END110f = 'END110f - Orienting buildings' END110g = 'END110g - Native landscaping' END110h = 'END110h - Alternative transportation' END110i = 'END110i - System for managing arrivals/departures ' END110j = 'END110j - Preservation of green space' END110k = 'END110k - Use of low-/no-VOC building materials' END110l = 'END110l - Proc/systems to protect IAQ' END110m = 'END110m - Radon resistant new construction pract' END111 = 'END111 - Dist initiated construction of school facility on new site' END112a = 'END112a - Influential factors - Accommodate population growth' END112b = 'END112b - Influential factors - School consolidation pol' END112c = 'END112c - Influential factors - Support current/future ed prog' END112d = 'END112d - Influential factors - Ease of obtaining funding ' END112e = 'END112e - Influential factors - Ease of obtaining approvals' END112f = 'END112f - Influential factors - Cost of repairing existing facility' END112g = 'END112g - Influential factors - Desire to have more energy-efficient facility' END112h = 'END112h - Influential factors - Desire to accommodate cmty use of facility' END113a = "END113a - Influential factors where - Local govt officials' input" END113b = 'END113b - Influential factors where - Need for athletic facilities' END113c = 'END113c - Influential factors where - Need for parking' END113d = 'END113d - Influential factors where - Avail/design of existing roads/infrastructure' END113e = 'END113e - Influential factors where - Land prices' END113f = 'END113f - Influential factors where - Site donated' END113g = 'END113g - Influential factors where - Site already owned' END113h = 'END113h - Influential factors where - Ability to walk/bike to/from school' END113i = 'END113i - Influential factors where - Demographics' END113j = 'END113j - Influential factors where - Compatibility with local growth plan' END113k = 'END113k - Influential factors where - Env concerns' END113l = 'END113l - Influential factors where - Potential clean up costs' END113m = 'END113m - Influential factors where - Desire to accommodate cmty use of facility' END114a = 'END114a - Require input - Public' END114b = 'END114b - Require input - Local govt transportation officials' END114c = 'END114c - Require input - Local govt land use or cmty planning officials' END114d = 'END114d - Require input - Local hlth dept/env hlth officials' END114e = 'END114e - Require input - St govt officials' END115a = 'END115a - Require input where - Public' END115b = 'END115b - Require input where - Local govt transportation officials' END115c = 'END115c - Require input where - Local govt land use or cmty planning officials' END115d = 'END115d - Require input where - Local hlth dept/env hlth officials' END115e = 'END115e - Require input where - St govt officials' END116a = 'END116a - Require input env review - Public' END116b = 'END116b - Require input env review - Local govt transportation officials' END116c = 'END116c - Require input env review - Local govt land use/cmty planning officials' END116d = 'END116d - Require input env review - Local hlth dept/env hlth officials' END116e = 'END116e - Require input env review - St govt officials' END117 = 'END117 - Phase I env site assessments' END118 = 'END118 - New hires trained in phys env issues' END119 = 'END119 - Dist used materials from US DOE for crisis prep' END120 = 'END120 - Dist has comp plan to address crisis prep' END121a = 'END121a - Dist crisis plan - Evac protocols for crises involv >1 school' END121b = 'END121b - Dist crisis plan - Protocols for communic with building-level mgr' END121c = 'END121c - Dist crisis plan - Plans for supplies for shelter-in-place' END121d = 'END121d - Dist crisis plan - Reqs to conduct dist-level drills ' END121e = 'END121e - Dist crisis plan - Plans for training school staff' END121f = 'END121f - Dist crisis plan - Plans for serving as cmty shelter' END121g = 'END121g - Dist crisis plan - Plans to resume normal activ' END121h = 'END121h - Dist crisis plan - Mechanisms for eval outside offers' END121i = 'END121i - Dist crisis plan - Provision of MH/SS for students/fac/staff' END121j = 'END121j - Dist crisis plan - Establ of incident command system' END121k = 'END121k - Dist crisis plan - Mechanisms for communic with school personnel' END121l = 'END121l - Dist crisis plan - Mechanisms for communic with parents' END121m = 'END121m - Dist crisis plan - Proc for responding to media inquiries' END121n = 'END121n - Dist crisis plan - Reqs to review/revise emerg response plans' END121o = 'END121o - Dist crisis plan - Proc for responding to outbreaks' END121p = 'END121p - Dist crisis plan - Proc for impl unplanned school dismissal or closure' END121q = 'END121q - Dist crisis plan - Proc for continuity of ed after unplanned closure' END122 = 'END122 - Req comp plan to address crisis prep/response/recovery' END123a = 'END123a - School plan includes - Evacuation plans' END123b = 'END123b - School plan includes - Lock down plans' END123c = 'END123c - School plan includes - Proc to control exterior of building' END123d = 'END123d - School plan includes - Seek immediate shelter during chemical/biological emerg' END123e = 'END123e - School plan includes - Conduct reg emerg drills' END123f = 'END123f - School plan includes - Family reunification proc' END123g = 'END123g - School plan includes - Provisions for students and staff with special needs' END123h = 'END123h - School plan includes - Plans to resume normal activ' END123i = 'END123i - School plan includes - Provision of MH/SS for students/fac/staff' END123j = 'END123j - School plan includes - Mechanisms for communic with school personnel' END123k = 'END123k - School plan includes - Mechanisms for communic with parents' END123l = 'END123l - School plan includes - Establ of an incident command system' END123m = 'END123m - School plan includes - Proc for responding to media inquiries' END123n = "END123n - School plan includes - Mechanisms for communic the plan to students' families" END123o = 'END123o - School plan includes - Reqs to review/revise emerg response plans' END123p = 'END123p - School plan includes - Proc for responding to pandemic flu or other infectious disease outbreaks' END123q = 'END123q - School plan includes - Proc for impl unplanned school dismissal or closure' END123r = 'END123r - School plan includes - Proc for continuity of ed after unplanned closure' END124a = 'END124a - Dist prov training - School fac/staff' END124b = 'END124b - Dist prov training - Students' END124c = "END124c - Dist prov training - Students' families" END125 = "END125 - Dist off ed on crisis prep to students' families" END126a = 'END126a - Dist dev plan w staff from schools' END126b = 'END126b - Dist dev plan w students' END126c = 'END126c - Dist dev plan w students families' END126d = 'END126d - Dist dev plan w fire dept' END126e = 'END126e - Dist dev plan w law enforcement agency' END126f = 'END126f - Dist dev plan w emerg medical services' END126g = 'END126g - Dist dev plan w public transportation dept' END126h = 'END126h - Dist dev plan w hlth dept' END126i = 'END126i - Dist dev plan w MH/SS agency' END126j = 'END126j - Dist dev plan w hosp' END126k = 'END126k - Dist dev plan w homeland security office or emerg mgmt agency' END126l = 'END126l - Dist dev plan w other cmty members' END127 = 'END127 - Dist crisis plan eval or assessed' END128 = 'END128 - Dist member of local emerg planning comm' END129 = 'END129 - Schools in dist serve as staging areas/shelters' END130 = 'END130 - Dist conduct dist-level drills other than fire drills' END131 = 'END131 - Schools must have NOAA weather radio' END132 = 'END132 - Students req to partic in cmty service' END133 = 'END133 - Dist req/rec schools prov service-learning opp' END134 = 'END134 - ES will partic in role model/mentor prog' END135 = 'END135 - MS will partic in role model/mentor prog' END136 = 'END136 - HS will partic in role model/mentor prog' END137 = 'END137 - Dist req/rec - ES prohib student access to vending machines ' END138 = 'END138 - Dist req/rec - MS prohib student access to vending machines ' END139 = 'END139 - Dist req/rec - HS prohib student access to vending machines ' END140 = 'END140 - Dist allows water bottle' END141a = 'END141a - Dist req schools prov free water - Cafeteria during breakfast' END141b = 'END141b - Dist req schools prov free water - Cafeteria during lunch' END141c = 'END141c - Dist req schools prov free water - Gym' END141d = 'END141d - Dist req schools prov free water - Outdoor PA facilities' END141e = 'END141e - Dist req schools prov free water - Hallways' END142a = 'END142a - Dist req/rec schools prohib ads for non Smart Snacks - In school bldg' END142b = 'END142b - Dist req/rec schools prohib ads for non Smart Snacks - School grounds' END142c = 'END142c - Dist req/rec schools prohib ads for non Smart Snacks - School buses' END142d = 'END142d - Dist req/rec schools prohib ads for non Smart Snacks - School publications' END142e = 'END142e - Dist req/rec schools prohib ads for non Smart Snacks - Ed materials' END142f = 'END142f - Dist req/rec schools prohib ads for non Smart Snacks - Products ' END143 = 'END143 - Dist allows schools to sell soft drinks ' END144 = 'END144 - Dist receives percentage of soft drink sales receipts' END145 = 'END145 - Dist receives incentives once receipts total specified amount' END146 = 'END146 - Dist prohib from selling soft drinks produced by more than one company' END147 = 'END147 - Prohib non Smart Snack foods/beverages for fundraisers' END148 = 'END148 - Prohib fast food fundraisers' END149a = 'END149a - Prof dev - Classroom mgmt' END149b = 'END149b - Prof dev - Cyber-bullying prev' END149c = 'END149c - Prof dev - Other bullying prev' END149d = 'END149d - Prof dev - Sexual harassment prev' END149e = 'END149e - Prof dev - Dating violence prev' END149f = 'END149f - Prof dev - Other violence prev' END149g = 'END149g - Prof dev - Family engagement' END149h = 'END149h - Prof dev - Cmty involv' END149i = 'END149i - Prof dev - Injury prev/safety' END149j = 'END149j - Prof dev - Sun safety' END149k = 'END149k - Prof dev - Tobacco use prev' END149l = 'END149l - Prof dev - Alcohol use prev' END149m = 'END149m - Prof dev - Illegal drug use prev' END149n = 'END149n - Prof dev - Crisis prep/response/recovery' END149o = 'END149o - Prof dev - IAQ' END149p = 'END149p - Prof dev - Drinking water qual' END149q = 'END149q - Prof dev - Integrated pest mgmt' END149r = 'END149r - Prof dev - Green cleaning products and practices' END149s = 'END149s - Prof dev - Radon testing' END149t = 'END149t - Prof dev - Mercury exposure prev' END149u = 'END149u - Prof dev - Employee wellness' END150 = 'END150 - Dist pol - School employee wellness prog' END151 = 'END151 - Dist person oversee/coord wellness progs' END152 = 'END152 - Each school has person to oversee/coord wellness progs' END153 = 'END153 - Dist prov funding - EAP' END154 = 'END154 - Dist prov funding - Hlth risk appraisals' END155 = 'END155 - Dist fac/staff receive subsidies/discounts for hlth promo activ' END156 = 'END156 - Dist prov funding for incentives' END157 = 'END157 - Dist-level school hlth group' END158a = 'END158a - Groups address - Tobacco use prev' END158b = 'END158b - Groups address - Alcohol/other drug use prev' END158c = 'END158c - Groups address - Nutr env/services' END158d = 'END158d - Groups address - PE/PA' END158e = 'END158e - Groups address - Preg prev' END158f = 'END158f - Groups address - HIV prev' END158g = 'END158g - Groups address - STD prev' END158h = 'END158h - Groups address - Violence prev' END158i = 'END158i - Groups address - Injury prev/safety' END158j = 'END158j - Groups address - HE' END158k = 'END158k - Groups address - HSV' END158l = 'END158l - Groups address - Counsel/psych/SS' END158m = 'END158m - Groups address - Social/emot school climate' END158n = 'END158n - Groups address - Employee wellness' END158o = 'END158o - Groups address - Family engage in school hlth prog' END158p = 'END158p - Groups address - Cmty involv in school hlth prog' END158q = 'END158q - Groups address - Phys school env' END158r = 'END158r - Groups address - Crisis prep/response/recovery' END158s = 'END158s - Groups address - Chronic hlth condition mgmt' END158t = 'END158t - Groups address - Infectious disease mgmt' END158u = 'END158u - Groups address - Foodborne illness mgmt' END158v = 'END158v - Groups address - Food allergy mgmt' END158w = 'END158w - Groups address - Local wellness pol' END159a = 'END159a - Groups incl - HE teach' END159b = 'END159b - Groups incl - PE teach' END159c = 'END159c - Groups incl - HSV staff' END159d = 'END159d - Groups incl - Nutr staff' END159e = 'END159e - Groups incl - MH/SS staff' END159f = 'END159f - Groups incl - Maint staff' END159g = 'END159g - Groups incl - Transportation staff' END159h = 'END159h - Groups incl - Technology staff' END159i = 'END159i - Groups incl - Library or media center staff' END159j = 'END159j - Groups incl - Dist admin' END159k = 'END159k - Groups incl - School-level admin' END159l = 'END159l - Groups incl - Students' END159m = "END159m - Groups incl - Students' parents or families" END160a = 'END160a - Groups incl - School board member' END160b = 'END160b - Groups incl - Cmty member' END160c = 'END160c - Groups incl - Hlth dept' END160d = 'END160d - Groups incl - MH/SS agencies' END160e = 'END160e - Groups incl - Hlthcare providers' END160f = 'END160f - Groups incl - Hlth orgs' END160g = 'END160g - Groups incl - Youth orgs' END160h = 'END160h - Groups incl - Businesses' END160i = 'END160i - Groups incl - Hosp' END160j = 'END160j - Groups incl - Service clubs' END160k = 'END160k - Groups incl - Public safety agencies' END160l = 'END160l - Groups incl - Faith-based orgs' END160m = 'END160m - Groups incl - Other local govt agencies' END161a = 'END161a - Groups - ID student hlth needs ' END161b = 'END161b - Groups - Rec new/revised pol/activ' END161c = 'END161c - Groups - Seek funding' END161d = 'END161d - Groups - Review curric' END161e = 'END161e - Groups - Communic importance of hlth and safety pol/activ ' END162 = 'END162 - How often group met' END163 = 'END163 - Dist prov schools funding - Establ school hlth group' END164 = 'END164 - Dist used self-assessment tools' END165 = 'END165 - Dist req/rec self-assessment tool' END166 = 'END166 - Dist school improvement plan includes hlth and safety obj' END167 = 'END167 - Dist req schools include hlth and safety obj in written SIP' END168 = 'END168 - Dist person oversee/coord school hlth/safety pol/activ' ; run; 国产精品久久久久久一级毛片