forked from EverAnh/covid-basic-needs-scraping
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmontana-schools.kml
2271 lines (2271 loc) · 95.9 KB
/
montana-schools.kml
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
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<name>Montana School Meal Locations</name>
<description><![CDATA[A map of pickup & delivery locations for school meals during the 2020 coronavirus school closure in the Treasure State.]]></description>
<Style id="icon-1722-F57C00-normal">
<IconStyle>
<scale>1</scale>
<Icon>
<href>images/icon-1.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="icon-1722-F57C00-highlight">
<IconStyle>
<scale>1</scale>
<Icon>
<href>images/icon-1.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>1</scale>
</LabelStyle>
</Style>
<StyleMap id="icon-1722-F57C00">
<Pair>
<key>normal</key>
<styleUrl>#icon-1722-F57C00-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-1722-F57C00-highlight</styleUrl>
</Pair>
</StyleMap>
<Style id="icon-1899-7CB342-normal">
<IconStyle>
<scale>1</scale>
<Icon>
<href>images/icon-2.png</href>
</Icon>
<hotSpot x="32" xunits="pixels" y="64" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="icon-1899-7CB342-highlight">
<IconStyle>
<scale>1</scale>
<Icon>
<href>images/icon-2.png</href>
</Icon>
<hotSpot x="32" xunits="pixels" y="64" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>1</scale>
</LabelStyle>
</Style>
<StyleMap id="icon-1899-7CB342">
<Pair>
<key>normal</key>
<styleUrl>#icon-1899-7CB342-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-1899-7CB342-highlight</styleUrl>
</Pair>
</StyleMap>
<Folder>
<name>Montana Meal Distribution Site During COVID-19 Closure (Responses) - Sheet4 (2).csv</name>
<Placemark>
<name>Richey Public Schools</name>
<address>205 Royal Ave. Richey MT 59259</address>
<description><![CDATA[Site: Delivery<br>Address: 205 Royal Ave. Richey MT 59259<br>Contact: Kim Benes<br>Phone: 4069795967<br>Meals: Both Breakfast and Lunch<br>Delivery: Yes<br>Days available: Monday March 23-Thursday March 27<br>Times: Deliveries<br>Special Instructions: ]]></description>
<styleUrl>#icon-1722-F57C00</styleUrl>
<ExtendedData>
<Data name="Site">
<value>Delivery</value>
</Data>
<Data name="Address">
<value>205 Royal Ave. Richey MT 59259</value>
</Data>
<Data name="Contact">
<value>Kim Benes</value>
</Data>
<Data name="Phone">
<value>4069795967</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>Yes</value>
</Data>
<Data name="Days available">
<value>Monday March 23-Thursday March 27</value>
</Data>
<Data name="Times">
<value>Deliveries</value>
</Data>
<Data name="Special Instructions">
<value/>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Lambert School District</name>
<address>121 3rd ave NW, Lambert, MT</address>
<description><![CDATA[Site: Delivery<br>Address: 121 3rd ave NW, Lambert, MT<br>Contact: Leanne Evenson<br>Phone: 7014263421<br>Meals: Both Breakfast and Lunch<br>Delivery: Yes<br>Days available: Tuesday March 17th-Friday March 27th<br>Times: 9 am and 12pm<br>Special Instructions: Parent or student must contact me the day before]]></description>
<styleUrl>#icon-1722-F57C00</styleUrl>
<ExtendedData>
<Data name="Site">
<value>Delivery</value>
</Data>
<Data name="Address">
<value>121 3rd ave NW, Lambert, MT</value>
</Data>
<Data name="Contact">
<value>Leanne Evenson</value>
</Data>
<Data name="Phone">
<value>7014263421</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>Yes</value>
</Data>
<Data name="Days available">
<value>Tuesday March 17th-Friday March 27th</value>
</Data>
<Data name="Times">
<value>9 am and 12pm</value>
</Data>
<Data name="Special Instructions">
<value>Parent or student must contact me the day before</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Fortine School</name>
<address>458 Meadow Creek Rd. Fortine montana</address>
<description><![CDATA[Site: Fortine School<br>Address: 458 Meadow Creek Rd. Fortine montana<br>Contact: Virginia Cope<br>Phone: 4062911159<br>Meals: Both Breakfast and Lunch<br>Delivery: Yes<br>Days available: Moday through Friday weekly<br>Times: 9:00 AM - 11:00AM<br>Special Instructions: This is an open site providing meals to anyone under the age of 18]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>Fortine School</value>
</Data>
<Data name="Address">
<value>458 Meadow Creek Rd. Fortine montana</value>
</Data>
<Data name="Contact">
<value>Virginia Cope</value>
</Data>
<Data name="Phone">
<value>4062911159</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>Yes</value>
</Data>
<Data name="Days available">
<value>Moday through Friday weekly</value>
</Data>
<Data name="Times">
<value>9:00 AM - 11:00AM</value>
</Data>
<Data name="Special Instructions">
<value>This is an open site providing meals to anyone under the age of 18</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Saco School Dist 12A and B</name>
<address>321 HWY 243 Saco, MT</address>
<description><![CDATA[Site: Saco School<br>Address: 321 HWY 243 Saco, MT<br>Contact: Tanya Funk<br>Phone: 4065273531<br>Meals: Both Breakfast and Lunch<br>Delivery: No<br>Days available: Mon thru Thurs.<br>Times: 9:00A.M.<br>Special Instructions: no already done]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>Saco School</value>
</Data>
<Data name="Address">
<value>321 HWY 243 Saco, MT</value>
</Data>
<Data name="Contact">
<value>Tanya Funk</value>
</Data>
<Data name="Phone">
<value>4065273531</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>No</value>
</Data>
<Data name="Days available">
<value>Mon thru Thurs.</value>
</Data>
<Data name="Times">
<value>9:00A.M.</value>
</Data>
<Data name="Special Instructions">
<value>no already done</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Fairview School District</name>
<address>713 Western Ave Fairview, MT 59221</address>
<description><![CDATA[Site: Fairview School Cafeteria <br>Address: 713 Western Ave Fairview, MT 59221<br>Contact: Jessica Nay<br>Phone: 406-742-5200<br>Meals: Both Breakfast and Lunch<br>Delivery: Yes<br>Days available: Monday March 23-Thursday March 26<br>Times: 11 am to Noon <br>Special Instructions: Delivery day is Thursday March 26th only. Pickup at cafeteria doors Mon-Thurs ]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>Fairview School Cafeteria </value>
</Data>
<Data name="Address">
<value>713 Western Ave Fairview, MT 59221</value>
</Data>
<Data name="Contact">
<value>Jessica Nay</value>
</Data>
<Data name="Phone">
<value>406-742-5200</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>Yes</value>
</Data>
<Data name="Days available">
<value>Monday March 23-Thursday March 26</value>
</Data>
<Data name="Times">
<value>11 am to Noon </value>
</Data>
<Data name="Special Instructions">
<value>Delivery day is Thursday March 26th only. Pickup at cafeteria doors Mon-Thurs </value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Belgrade School District</name>
<address>303 N Hoffman, Belgrade, MT, 59714</address>
<description><![CDATA[Site: High School<br>Address: 303 N Hoffman, Belgrade, MT, 59714<br>Contact: Brittany Moats<br>Phone: 4069512624<br>Meals: Both Breakfast and Lunch<br>Delivery: Yes<br>Days available: Monday, March 23-Friday, March 27<br>Times: 11 AM - 1 PM<br>Special Instructions: student must be present, pickup in parking lots]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>High School</value>
</Data>
<Data name="Address">
<value>303 N Hoffman, Belgrade, MT, 59714</value>
</Data>
<Data name="Contact">
<value>Brittany Moats</value>
</Data>
<Data name="Phone">
<value>4069512624</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>Yes</value>
</Data>
<Data name="Days available">
<value>Monday, March 23-Friday, March 27</value>
</Data>
<Data name="Times">
<value>11 AM - 1 PM</value>
</Data>
<Data name="Special Instructions">
<value>student must be present, pickup in parking lots</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Dixon school District 9</name>
<address>411 B Street Dixon, Mt. 59831</address>
<description><![CDATA[Site: Delivery<br>Address: 411 B Street Dixon, Mt. 59831<br>Contact: Crista Anderson<br>Phone: 406 246 3566<br>Meals: Both Breakfast and Lunch<br>Delivery: Yes<br>Days available: tuesday march 17-friday, mon. march 23-friday march 27<br>Times: delivered 11:30<br>Special Instructions: ]]></description>
<styleUrl>#icon-1722-F57C00</styleUrl>
<ExtendedData>
<Data name="Site">
<value>Delivery</value>
</Data>
<Data name="Address">
<value>411 B Street Dixon, Mt. 59831</value>
</Data>
<Data name="Contact">
<value>Crista Anderson</value>
</Data>
<Data name="Phone">
<value>406 246 3566</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>Yes</value>
</Data>
<Data name="Days available">
<value>tuesday march 17-friday, mon. march 23-friday march 27</value>
</Data>
<Data name="Times">
<value>delivered 11:30</value>
</Data>
<Data name="Special Instructions">
<value/>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Deer Lodge Elementary School District 1</name>
<address>444 Montana Ave Deer Lodge, MT</address>
<description><![CDATA[Site: Granville Stuart<br>Address: 444 Montana Ave Deer Lodge, MT<br>Contact: Shelli Boggess<br>Phone: 406 846 1553 ext 210 or 406 491 3419<br>Meals: Both Breakfast and Lunch<br>Delivery: No<br>Days available: Tuesday 3/17 - Friday March 28<br>Times: 12:00 - 12:30 <br>Special Instructions: Students must pick up the meals, Please reserve your meals on the districts web site, only pick up meals at this time, however may implement delivery at a later time. <br>]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>Granville Stuart</value>
</Data>
<Data name="Address">
<value>444 Montana Ave Deer Lodge, MT</value>
</Data>
<Data name="Contact">
<value>Shelli Boggess</value>
</Data>
<Data name="Phone">
<value> 406 846 1553 ext 210 or 406 491 3419</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>No</value>
</Data>
<Data name="Days available">
<value>Tuesday 3/17 - Friday March 28</value>
</Data>
<Data name="Times">
<value>12:00 - 12:30 </value>
</Data>
<Data name="Special Instructions">
<value>Students must pick up the meals, Please reserve your meals on the districts web site, only pick up meals at this time, however may implement delivery at a later time.
</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Conrad Public Schools</name>
<address>17 3rd Ave Sw, Conrad, MT 59425</address>
<description><![CDATA[Site: Meadowlark School<br>Address: 17 3rd Ave Sw, Conrad, MT 59425<br>Contact: Laurie Hopper<br>Phone: 406-697-6290<br>Meals: Both Breakfast and Lunch<br>Delivery: No<br>Days available: Monday March 23 - Friday March 28<br>Times: 7 am - 12pm<br>Special Instructions: Pick up meals at the north door of the kitchen located on the playground side of Meadowlark School]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>Meadowlark School</value>
</Data>
<Data name="Address">
<value>17 3rd Ave Sw, Conrad, MT 59425</value>
</Data>
<Data name="Contact">
<value>Laurie Hopper</value>
</Data>
<Data name="Phone">
<value>406-697-6290</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>No</value>
</Data>
<Data name="Days available">
<value>Monday March 23 - Friday March 28</value>
</Data>
<Data name="Times">
<value>7 am - 12pm</value>
</Data>
<Data name="Special Instructions">
<value>Pick up meals at the north door of the kitchen located on the playground side of Meadowlark School</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Whitewater School District</name>
<address>117 1st Ave. W. Whitewater, MT 59544</address>
<description><![CDATA[Site: Whitewater School Delivery<br>Address: 117 1st Ave. W. Whitewater, MT 59544<br>Contact: Darin Cummings<br>Phone: 406 674-5417<br>Meals: Lunch Only<br>Delivery: Yes<br>Days available: Tuesday, March 24- Thursday, March 27<br>Times: Not Sure at the Moment<br>Special Instructions: Parents will let us know if they would like a lunch from the school]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>Whitewater School Delivery</value>
</Data>
<Data name="Address">
<value>117 1st Ave. W. Whitewater, MT 59544</value>
</Data>
<Data name="Contact">
<value>Darin Cummings</value>
</Data>
<Data name="Phone">
<value> 406 674-5417</value>
</Data>
<Data name="Meals">
<value>Lunch Only</value>
</Data>
<Data name="Delivery">
<value>Yes</value>
</Data>
<Data name="Days available">
<value>Tuesday, March 24- Thursday, March 27</value>
</Data>
<Data name="Times">
<value>Not Sure at the Moment</value>
</Data>
<Data name="Special Instructions">
<value>Parents will let us know if they would like a lunch from the school</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Elysian School District</name>
<address>6416 Elysian Road, Billings, MT 59101</address>
<description><![CDATA[Site: Elysian Elementary School<br>Address: 6416 Elysian Road, Billings, MT 59101<br>Contact: Laurie Hickethier, District Clerk, Leanne Lind Kitchen Manager<br>Phone: 406 656 4101<br>Meals: Lunch Only<br>Delivery: No<br>Days available: Monday, March 16-Friday, March 27<br>Times: 11:30-12:30<br>Special Instructions: ]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>Elysian Elementary School</value>
</Data>
<Data name="Address">
<value>6416 Elysian Road, Billings, MT 59101</value>
</Data>
<Data name="Contact">
<value>Laurie Hickethier, District Clerk, Leanne Lind Kitchen Manager</value>
</Data>
<Data name="Phone">
<value>406 656 4101</value>
</Data>
<Data name="Meals">
<value>Lunch Only</value>
</Data>
<Data name="Delivery">
<value>No</value>
</Data>
<Data name="Days available">
<value>Monday, March 16-Friday, March 27</value>
</Data>
<Data name="Times">
<value>11:30-12:30</value>
</Data>
<Data name="Special Instructions">
<value/>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>District 17</name>
<address>8824 Pryor Road Billings, MT</address>
<description><![CDATA[Site: Delivery<br>Address: 8824 Pryor Road Billings, MT<br>Contact: Christy Jaeger<br>Phone: 406-598-7240<br>Meals: Both Breakfast and Lunch<br>Delivery: Yes<br>Days available: 3/17/2020 monday-friday<br>Times: 10:30 start time<br>Special Instructions: Student and participating children must be preasent]]></description>
<styleUrl>#icon-1722-F57C00</styleUrl>
<ExtendedData>
<Data name="Site">
<value>Delivery</value>
</Data>
<Data name="Address">
<value>8824 Pryor Road Billings, MT</value>
</Data>
<Data name="Contact">
<value>Christy Jaeger</value>
</Data>
<Data name="Phone">
<value>406-598-7240</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>Yes</value>
</Data>
<Data name="Days available">
<value>3/17/2020 monday-friday</value>
</Data>
<Data name="Times">
<value>10:30 start time</value>
</Data>
<Data name="Special Instructions">
<value>Student and participating children must be preasent</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Stevensville Public Schools </name>
<address>District 300 Park Ave, Stevensville, MT 59870</address>
<description><![CDATA[Site: Delivery, Burnt Fork Market, Airport Rd and Illinois Bench Rd Intersection <br>Address: District 300 Park Ave, Stevensville, MT 59870<br>Contact: Jenna Henning <br>Phone: 406 214-9942<br>Meals: Both Breakfast and Lunch<br>Delivery: Yes<br>Days available: March 17-20, March 23-27<br>Times: Early morning and 10am-12pm<br>Special Instructions: ]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>Delivery, Burnt Fork Market, Airport Rd and Illinois Bench Rd Intersection </value>
</Data>
<Data name="Address">
<value>District 300 Park Ave, Stevensville, MT 59870</value>
</Data>
<Data name="Contact">
<value>Jenna Henning </value>
</Data>
<Data name="Phone">
<value> 406 214-9942</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>Yes</value>
</Data>
<Data name="Days available">
<value>March 17-20, March 23-27</value>
</Data>
<Data name="Times">
<value>Early morning and 10am-12pm</value>
</Data>
<Data name="Special Instructions">
<value/>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Noxon Public Schools</name>
<address>300 Noxon ave. Noxon, MT</address>
<description><![CDATA[Site: School and Delivery<br>Address: 300 Noxon ave. Noxon, MT<br>Contact: Louise Chandler<br>Phone: 406.847.2442x203<br>Meals: Both Breakfast and Lunch<br>Delivery: Yes<br>Days available: Tuesday 3/17 until school resumes <br>Times: 11 am- 12.30 pm<br>Special Instructions: Parents must call to make arrangements for pick-up or delivery]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>School and Delivery</value>
</Data>
<Data name="Address">
<value>300 Noxon ave. Noxon, MT</value>
</Data>
<Data name="Contact">
<value>Louise Chandler</value>
</Data>
<Data name="Phone">
<value>406.847.2442x203</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>Yes</value>
</Data>
<Data name="Days available">
<value>Tuesday 3/17 until school resumes </value>
</Data>
<Data name="Times">
<value>11 am- 12.30 pm</value>
</Data>
<Data name="Special Instructions">
<value>Parents must call to make arrangements for pick-up or delivery</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Cascade County Juvenile Detention</name>
<address>1600 26th St. S. Great Falls, MT</address>
<description><![CDATA[Site: CCJDC<br>Address: 1600 26th St. S. Great Falls, MT<br>Contact: Ron Brinkman<br>Phone: 4064546930 or 4065901884<br>Meals: Breakfast Only, Both Breakfast and Lunch<br>Delivery: No<br>Days available: everyday of the week<br>Times: 24 hours a day<br>Special Instructions: call ahead if not in detention, will provide breakfast, lunch and dinner to those in need]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>CCJDC</value>
</Data>
<Data name="Address">
<value>1600 26th St. S. Great Falls, MT</value>
</Data>
<Data name="Contact">
<value>Ron Brinkman</value>
</Data>
<Data name="Phone">
<value>4064546930 or 4065901884</value>
</Data>
<Data name="Meals">
<value>Breakfast Only, Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>No</value>
</Data>
<Data name="Days available">
<value>everyday of the week</value>
</Data>
<Data name="Times">
<value>24 hours a day</value>
</Data>
<Data name="Special Instructions">
<value>call ahead if not in detention, will provide breakfast, lunch and dinner to those in need</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>St Regis School </name>
<address>90 Tiger Street St. Regis, MT</address>
<description><![CDATA[Site: St Regis School and delivery<br>Address: 90 Tiger Street St. Regis, MT<br>Contact: Dawn Palmer <br>Phone: 4066492311<br>Meals: Both Breakfast and Lunch<br>Delivery: Yes<br>Days available: Monday-Friday <br>Times: 10 am-12pm<br>Special Instructions: ]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>St Regis School and delivery</value>
</Data>
<Data name="Address">
<value>90 Tiger Street St. Regis, MT</value>
</Data>
<Data name="Contact">
<value>Dawn Palmer </value>
</Data>
<Data name="Phone">
<value>4066492311</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>Yes</value>
</Data>
<Data name="Days available">
<value>Monday-Friday </value>
</Data>
<Data name="Times">
<value>10 am-12pm</value>
</Data>
<Data name="Special Instructions">
<value/>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Superior School District</name>
<address>1003 5th Ave. East Superior, MT</address>
<description><![CDATA[Site: Superior Elementary<br>Address: 1003 5th Ave. East Superior, MT<br>Contact: Chandra Plakke<br>Phone: 4068223600 x 230<br>Meals: Both Breakfast and Lunch<br>Delivery: Yes<br>Days available: 3/16-3/20 and 3/23-3/27<br>Times: 11am-1pm<br>Special Instructions: 1 person comes to the door at a time to receive meals for the whole family]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>Superior Elementary</value>
</Data>
<Data name="Address">
<value>1003 5th Ave. East Superior, MT</value>
</Data>
<Data name="Contact">
<value>Chandra Plakke</value>
</Data>
<Data name="Phone">
<value>4068223600 x 230</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>Yes</value>
</Data>
<Data name="Days available">
<value>3/16-3/20 and 3/23-3/27</value>
</Data>
<Data name="Times">
<value>11am-1pm</value>
</Data>
<Data name="Special Instructions">
<value>1 person comes to the door at a time to receive meals for the whole family</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Hamilton School District 3</name>
<address>208 Daly Ave Hamilton, MT</address>
<description><![CDATA[Site: Daly Elementary School<br>Address: 208 Daly Ave Hamilton, MT<br>Contact: Denise Burrows<br>Phone: 4063635038<br>Meals: Both Breakfast and Lunch<br>Delivery: Yes<br>Days available: Monday March 16-Friday March 27 so far<br>Times: 10am-2pm<br>Special Instructions: Food is available in the foyer of the New entry to Daly Elementary]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>Daly Elementary School</value>
</Data>
<Data name="Address">
<value>208 Daly Ave Hamilton, MT</value>
</Data>
<Data name="Contact">
<value>Denise Burrows</value>
</Data>
<Data name="Phone">
<value>4063635038</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>Yes</value>
</Data>
<Data name="Days available">
<value>Monday March 16-Friday March 27 so far</value>
</Data>
<Data name="Times">
<value>10am-2pm</value>
</Data>
<Data name="Special Instructions">
<value>Food is available in the foyer of the New entry to Daly Elementary</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Target Range School Dist 23</name>
<address>4095 S Ave W Missoula, MT</address>
<description><![CDATA[Site: 4095 South Ave W, Missoula MT 59804<br>Address: 4095 S Ave W Missoula, MT<br>Contact: Neice Dahlseid<br>Phone: 4065291827<br>Meals: Both Breakfast and Lunch<br>Delivery: Yes, No<br>Days available: Monday, March 23-<br>Times: 9:00-1:00<br>Special Instructions: Curbside delivery at rear entrance for students with transportation, buses to deliver to areas where transportation is not available]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>4095 South Ave W, Missoula MT 59804</value>
</Data>
<Data name="Address">
<value>4095 S Ave W Missoula, MT</value>
</Data>
<Data name="Contact">
<value>Neice Dahlseid</value>
</Data>
<Data name="Phone">
<value>4065291827</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>Yes, No</value>
</Data>
<Data name="Days available">
<value>Monday, March 23-</value>
</Data>
<Data name="Times">
<value>9:00-1:00</value>
</Data>
<Data name="Special Instructions">
<value>Curbside delivery at rear entrance for students with transportation, buses to deliver to areas where transportation is not available</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Wibaux School District</name>
<address>415 west nolan wibaux mt</address>
<description><![CDATA[Site: Elementary delivery<br>Address: 415 west nolan wibaux mt<br>Contact: Jan Huisman<br>Phone: 14067962518<br>Meals: Both Breakfast and Lunch<br>Delivery: Yes<br>Days available: March 23-27. And possibly more<br>Times: 11:00<br>Special Instructions: Text between Jan between 7 and 9 a.m.]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>Elementary delivery</value>
</Data>
<Data name="Address">
<value>415 west nolan wibaux mt</value>
</Data>
<Data name="Contact">
<value>Jan Huisman</value>
</Data>
<Data name="Phone">
<value>14067962518</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>Yes</value>
</Data>
<Data name="Days available">
<value>March 23-27. And possibly more</value>
</Data>
<Data name="Times">
<value>11:00</value>
</Data>
<Data name="Special Instructions">
<value>Text between Jan between 7 and 9 a.m.</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Circle Public Schools</name>
<address>1105 F Ave Circle, MT</address>
<description><![CDATA[Site: Circle High School<br>Address: 1105 F Ave Circle, MT<br>Contact: Della Van Horn<br>Phone: 406-485-3600<br>Meals: Both Breakfast and Lunch<br>Delivery: No<br>Days available: Monday-Thursday <br>Times: 7:30-8:15 and 11:30-12:30<br>Special Instructions: Notify school if they want meals by 9.]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>Circle High School</value>
</Data>
<Data name="Address">
<value>1105 F Ave Circle, MT</value>
</Data>
<Data name="Contact">
<value>Della Van Horn</value>
</Data>
<Data name="Phone">
<value>406-485-3600</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>No</value>
</Data>
<Data name="Days available">
<value>Monday-Thursday </value>
</Data>
<Data name="Times">
<value>7:30-8:15 and 11:30-12:30</value>
</Data>
<Data name="Special Instructions">
<value>Notify school if they want meals by 9.</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Savage school district</name>
<address>376 Mesa Street, Savage, MT 59262</address>
<description><![CDATA[Site: Savage public school "delivery"<br>Address: 376 Mesa Street, Savage, MT 59262<br>Contact: Darcy Kessel<br>Phone: 406 776 2317<br>Meals: Both Breakfast and Lunch<br>Delivery: Yes<br>Days available: March 23-26<br>Times: 11 am - 12 pm<br>Special Instructions: Students must be present]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value><![CDATA[Savage public school "delivery"]]></value>
</Data>
<Data name="Address">
<value>376 Mesa Street, Savage, MT 59262</value>
</Data>
<Data name="Contact">
<value>Darcy Kessel</value>
</Data>
<Data name="Phone">
<value>406 776 2317</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>Yes</value>
</Data>
<Data name="Days available">
<value>March 23-26</value>
</Data>
<Data name="Times">
<value>11 am - 12 pm</value>
</Data>
<Data name="Special Instructions">
<value>Students must be present</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name> DeSmet school </name>
<address>6355 Padre Lane Missoula MT 59846</address>
<description><![CDATA[Site: DeSmet school<br>Address: 6355 Padre Lane Missoula MT 59846<br>Contact: Anne Brown <br>Phone: 4062398390<br>Meals: Both Breakfast and Lunch<br>Delivery: Yes<br>Days available: March 23-March 28<br>Times: 12 noon<br>Special Instructions: ]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>DeSmet school</value>
</Data>
<Data name="Address">
<value>6355 Padre Lane Missoula MT 59846</value>
</Data>
<Data name="Contact">
<value>Anne Brown </value>
</Data>
<Data name="Phone">
<value>4062398390</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>Yes</value>
</Data>
<Data name="Days available">
<value>March 23-March 28</value>
</Data>
<Data name="Times">
<value>12 noon</value>
</Data>
<Data name="Special Instructions">
<value/>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Fairfield school district 21</name>
<address>13 7th St. N. Fairfield Mt. 59436</address>
<description><![CDATA[Site: Fairfield Elementary<br>Address: 13 7th St. N. Fairfield Mt. 59436<br>Contact: Ramona O'Banion<br>Phone: 406 590 0943 or 406 467-2528<br>Meals: Lunch Only<br>Delivery: No<br>Days available: March 19-27th<br>Times: noon<br>Special Instructions: ]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>Fairfield Elementary</value>
</Data>
<Data name="Address">
<value>13 7th St. N. Fairfield Mt. 59436</value>
</Data>
<Data name="Contact">
<value><![CDATA[Ramona O'Banion]]></value>
</Data>
<Data name="Phone">
<value>406 590 0943 or 406 467-2528</value>
</Data>
<Data name="Meals">
<value>Lunch Only</value>
</Data>
<Data name="Delivery">
<value>No</value>
</Data>
<Data name="Days available">
<value>March 19-27th</value>
</Data>
<Data name="Times">
<value>noon</value>
</Data>
<Data name="Special Instructions">
<value/>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Corvallis School District</name>
<address>1149 Eastside highway Corvallis MT 59828</address>
<description><![CDATA[Site: Middle School cafeteria parking lot<br>Address: 1149 Eastside highway Corvallis MT 59828<br>Contact: Kathy Martin<br>Phone: 406-961-3201 ext 139<br>Meals: Both Breakfast and Lunch<br>Delivery: No<br>Days available: Tuesday March 24 and Thursday March 26<br>Times: 7:30 am to 10:00 am<br>Special Instructions: student must be present]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>Middle School cafeteria parking lot</value>
</Data>
<Data name="Address">
<value>1149 Eastside highway Corvallis MT 59828</value>
</Data>
<Data name="Contact">
<value>Kathy Martin</value>
</Data>
<Data name="Phone">
<value>406-961-3201 ext 139</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>No</value>
</Data>
<Data name="Days available">
<value>Tuesday March 24 and Thursday March 26</value>
</Data>
<Data name="Times">
<value>7:30 am to 10:00 am</value>
</Data>
<Data name="Special Instructions">
<value>student must be present</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Winifred Public Schools</name>
<address>500 Main Street,Winifred, MT 59489</address>
<description><![CDATA[Site: Winifred School<br>Address: 500 Main Street,Winifred, MT 59489<br>Contact: Chris Dodson<br>Phone: 406 462-5420<br>Meals: Both Breakfast and Lunch<br>Delivery: No<br>Days available: 3/18 - 3/27<br>Times: Pick up time is at 10AM <br>Special Instructions: Must email or call ahead to contact person alternate phone number 462-5372 during off hours by 7PM the day before requesting meals.]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>Winifred School</value>
</Data>
<Data name="Address">
<value>500 Main Street,Winifred, MT 59489</value>
</Data>
<Data name="Contact">
<value>Chris Dodson</value>
</Data>
<Data name="Phone">
<value> 406 462-5420</value>
</Data>
<Data name="Meals">
<value>Both Breakfast and Lunch</value>
</Data>
<Data name="Delivery">
<value>No</value>
</Data>
<Data name="Days available">
<value>3/18 - 3/27</value>
</Data>
<Data name="Times">
<value>Pick up time is at 10AM </value>
</Data>
<Data name="Special Instructions">
<value>Must email or call ahead to contact person alternate phone number 462-5372 during off hours by 7PM the day before requesting meals.</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<name>Columbus School District</name>
<address>1036 East Pike Ave. Columbus, MT 59019</address>
<description><![CDATA[Site: Stillwater Youth Center<br>Address: 1036 East Pike Ave. Columbus, MT 59019<br>Contact: Sarah Peters<br>Phone: 406 321 2098<br>Meals: Both Breakfast and Lunch<br>Delivery: Yes<br>Days available: Wednesday March 18- Friday March 27<br>Times: 11:30am-1:00 pm<br>Special Instructions: email Sarah to get your kids signed up. Stay in your car, we will bring food to you.]]></description>
<styleUrl>#icon-1899-7CB342</styleUrl>
<ExtendedData>
<Data name="Site">
<value>Stillwater Youth Center</value>
</Data>
<Data name="Address">
<value>1036 East Pike Ave. Columbus, MT 59019</value>
</Data>
<Data name="Contact">
<value>Sarah Peters</value>
</Data>
<Data name="Phone">