-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassets (1).json
6786 lines (6786 loc) · 184 KB
/
assets (1).json
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
[
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Abdullah Pall Street (Imdad Cinma)",
"division": "ZARGOON TOWN",
"elevation": "5512 ± 3m",
"installation_date": "23/05/04",
"lat": "30.1888888888889",
"lng": "67.0036944444445",
"pipe_diameter": "3",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Akhter Mohammad Road Shanti Nagar",
"division": "ZARGOON TOWN",
"elevation": "5579 ± 5m",
"lat": "30.1801944444444",
"lng": "67.0060555555556",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Alif Din Road near Quary Road RTU 35",
"division": "ZARGOON TOWN",
"elevation": "5562 ± 2m",
"lat": "30.1828611111111",
"lng": "67.0125555555556",
"pipe_diameter": "3",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "QMC Store Quary Road",
"division": "ZARGOON TOWN",
"elevation": "5590 ± 4m",
"installation_date": "22-06-14",
"lat": "30.1823055555556",
"lng": "67.0011666666667",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Alla Dina Road Gravyard",
"division": "ZARGOON TOWN",
"elevation": "5588 ± 3m",
"installation_date": "18/07/16",
"lat": "30.1814166666667",
"lng": "67.0213333333333",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Arbab Samiullah / Zahir Jan Mohammad Road",
"division": "ZARGOON TOWN",
"elevation": "5538 ± 5m",
"installation_date": "20/11/07",
"lat": "30.1804722222222",
"lng": "67.0032777777778",
"pipe_diameter": "3",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Ashyzai Masjid Pashtoonabad",
"division": "ZARGOON TOWN",
"elevation": "5641 ± 3m",
"lat": "30.1731666666667",
"lng": "67.0168888888889",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"communication type": "ER"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Arbab zahir house khudaidad road",
"division": "ZARGOON TOWN",
"elevation": "5570 ± 3m",
"installation_date": "09-09-14",
"lat": "30.1868611111111",
"lng": "67.0201666666667",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Balochi Street Mecongy Road Manzoor Kakar",
"division": "ZARGOON TOWN",
"elevation": "5576 ± 3m",
"installation_date": "24/12/06",
"lat": "30.1847222222222",
"lng": "67.0174444444445",
"pipe_diameter": "3",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Balochi Street/ Shara e Abdul Aziz PTCL Office",
"division": "ZARGOON TOWN",
"elevation": "5564 ± 4m",
"lat": "30.1858611111111",
"lng": "67.0156666666667",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Barginza Vila New Zarghoon Road",
"division": "ZARGOON TOWN",
"elevation": "5508 ± 3m",
"installation_date": "11/8/2006",
"lat": "30.1875555555556",
"lng": "67.0023611111111",
"pipe_diameter": "3",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Barginza Vila Ward 26 Old Zarghoon Road",
"division": "ZARGOON TOWN",
"elevation": "5504 ± 4m",
"installation_date": "12/9/2003",
"lat": "30.187",
"lng": "67.0033055555556",
"pipe_diameter": "3-2.5",
"rock_type": "Alluvial",
"status": "Pump pull out since last 7 months",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Burma Street akhter Mohammad road",
"division": "ZARGOON TOWN",
"elevation": "5564 ± 3m",
"lat": "30.1810555555556",
"lng": "67.0064444444444",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Duranni Bagh ( HR ) Kansi Road",
"division": "ZARGOON TOWN",
"elevation": "5628 ± 4m",
"installation_date": "25/03/99",
"lat": "30.1792222222222",
"lng": "67.0243888888889",
"pipe_diameter": "6",
"rock_type": "H/R",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Durrani Bagh ( HR ) Kansi Road RTU 34",
"division": "ZARGOON TOWN",
"elevation": "5616 ± 4m",
"installation_date": "21/08/95",
"lat": "30.178",
"lng": "67.0240277777778",
"pipe_diameter": "4",
"rock_type": "H/R",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Dayal Bagh (PHED)",
"division": "ZARGOON TOWN",
"elevation": "5558 ± 4m",
"lat": "30.1836944444444",
"lng": "67.0155",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Eid gah mecongy road",
"division": "ZARGOON TOWN",
"elevation": "5561 ± 7m",
"lat": "30.1829166666667",
"lng": "67.0135833333333",
"rock_type": "Alluvial",
"status": "Pump pull out since last 8 months",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Gari Ihatha gali Sirki Road",
"division": "ZARGOON TOWN",
"elevation": "5594 ± 4m",
"lat": "30.1793333333333",
"lng": "67.0103333333333",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Girls Collage Quarry Road",
"division": "ZARGOON TOWN",
"elevation": "5580 ± 3m",
"lat": "30.1820833333333",
"lng": "67.0132777777778",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Haji Ghaibi Road",
"division": "ZARGOON TOWN",
"elevation": "5619 ± 4m",
"installation_date": "29/05/03",
"lat": "30.18",
"lng": "67.0193333333333",
"pipe_diameter": "3",
"rock_type": "H/R",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Haji Ghaibi Road (Hassan Nazim)",
"division": "ZARGOON TOWN",
"elevation": "5640 ± 4m",
"installation_date": "2/6/2006",
"lat": "30.1756111111111",
"lng": "67.0222222222222",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Halqa No 37 Mulla Salam Road RTU 61 (Naseebullah)",
"division": "ZARGOON TOWN",
"elevation": "5636 ± 5m",
"lat": "30.1728888888889",
"lng": "67.01375",
"pipe_diameter": "4",
"rock_type": "Alluvial",
"status": "Not energized yet",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Hameed Street Jan Mohammad Road",
"division": "ZARGOON TOWN",
"elevation": "5587 ± 4m",
"installation_date": "10/05/05",
"lat": "30.1814166666667",
"lng": "67.0051944444444",
"pipe_diameter": "2",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Iqra City Faqeer Mohammed Road",
"division": "ZARGOON TOWN",
"elevation": "5609 ± 5m",
"lat": "30.1810555555556",
"lng": "67.0075277777778",
"pipe_diameter": "2.5",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Ismail Colny ( Azeem Dairy ) Sirki Road",
"division": "ZARGOON TOWN",
"elevation": "5582 ± 4m",
"lat": "30.1757222222222",
"lng": "67.0127222222222",
"pipe_diameter": "3",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Ismail Colony New Gali No. 4 Sirki Road",
"division": "ZARGOON TOWN",
"elevation": "5574 ± 5m",
"lat": "30.17725",
"lng": "67.0105277777778",
"pipe_diameter": "3",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Ismail Colony New Gali No. 2 Badezai house",
"division": "ZARGOON TOWN",
"elevation": "5591 ± 3m",
"installation_date": "26.07.17",
"lat": "30.1765277777778",
"lng": "67.0136666666667",
"rock_type": "Alluvial",
"status": "Not energized yet",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Mulla Salam Road Masjid Malezai",
"division": "ZARGOON TOWN",
"elevation": "5606 ± 3m",
"lat": "30.1751944444444",
"lng": "67.0143333333333",
"rock_type": "Alluvial",
"status": "Not energized yet",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "New Afghan Road (Baloch Khan Chowk)",
"division": "ZARGOON TOWN",
"elevation": "5612 ± 4m",
"installation_date": "01-09-14",
"lat": "30.1713055555556",
"lng": "67.0112777777778",
"pipe_diameter": "3",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Jatoi Colony Double Road",
"division": "ZARGOON TOWN",
"elevation": "5528 ± 4m",
"installation_date": "15//06/10",
"lat": "30.1776666666667",
"lng": "66.9998611111111",
"pipe_diameter": "3",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Kansi Qabrastan Haji Umer RTU 33",
"division": "ZARGOON TOWN",
"elevation": "5589 ± 3m",
"installation_date": "8/1/2002",
"lat": "30.1825277777778",
"lng": "67.0255555555556",
"pipe_diameter": "5",
"rock_type": "H/R",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Kansi Qabrastan Haji Umer Solar",
"division": "ZARGOON TOWN",
"elevation": "5598 ± 3m",
"lat": "30.18475",
"lng": "67.0280555555556",
"rock_type": "H/R",
"status": "Not energized yet",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Khaliqabad New Jan Mohammad Road",
"division": "ZARGOON TOWN",
"elevation": "5522 ± 3m",
"installation_date": "11-09-14",
"lat": "30.1783333333333",
"lng": "67.0012777777778",
"rock_type": "Alluvial",
"status": "Pump pull out since last 9 months",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Kachra Road Nazeer Kheeti",
"division": "ZARGOON TOWN",
"elevation": "5595 ± 3m",
"lat": "30.1784166666667",
"lng": "67.0142777777778",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Kachra Road Nazeer Kheeti",
"division": "ZARGOON TOWN",
"elevation": "5598 ± 3m",
"installation_date": "15.08.17",
"lat": "30.1783333333333",
"lng": "67.0141944444444",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Killi Durani Haji Ghabi Road Mountain",
"division": "ZARGOON TOWN",
"elevation": "5661 ± 3m",
"installation_date": "23/11/07",
"lat": "30.1743055555556",
"lng": "67.0246388888889",
"pipe_diameter": "4",
"rock_type": "H/R",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "12"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Killi Durani Haji Ghabi Road Gravyard",
"division": "ZARGOON TOWN",
"elevation": "5640 ± 4m",
"installation_date": "23/11/07",
"lat": "30.1768611111111",
"lng": "67.0238611111111",
"pipe_diameter": "4",
"rock_type": "H/R",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "12"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Madrasa Tajveedul Quran Sirki Road",
"division": "ZARGOON TOWN",
"elevation": "5574 ± 4m",
"installation_date": "4/9/2007",
"lat": "30.1790277777778",
"lng": "67.0070555555556",
"pipe_diameter": "2",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Moti Ram Road",
"division": "ZARGOON TOWN",
"elevation": "5557 ± 10m",
"installation_date": "8/11/2002",
"lat": "30.1855277777778",
"lng": "67.0109166666667",
"pipe_diameter": "2.5",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Malik Hassan road (PHED)",
"division": "ZARGOON TOWN",
"elevation": "5585 ± 4m",
"lat": "30.1828888888889",
"lng": "67.018",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "New Afghan Road Sirki Road",
"division": "ZARGOON TOWN",
"elevation": "5596 ± 3m",
"installation_date": "15/05/07",
"lat": "30.1736944444444",
"lng": "67.0273888888889",
"pipe_diameter": "3",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "New Al Gilani Road (Tahir mehmood MPA fund)",
"division": "ZARGOON TOWN",
"elevation": "5536 ± 3m",
"lat": "30.18275",
"lng": "67.0017222222222",
"pipe_diameter": "2.5",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Nomi Street Zarghoon Road (Kansi street)",
"division": "ZARGOON TOWN",
"elevation": "5524 ± 3m",
"installation_date": "13/09/03",
"lat": "30.1854722222222",
"lng": "67.0016111111111",
"pipe_diameter": "3",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Patail Road",
"division": "ZARGOON TOWN",
"elevation": "5542 ± 8m",
"lat": "30.18875",
"lng": "67.0111388888889",
"pipe_diameter": "3",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "QMC Store Quary Road",
"division": "ZARGOON TOWN",
"elevation": "5571 ± 3m",
"installation_date": "27/08/99",
"lat": "30.1823055555556",
"lng": "67.0116944444444",
"pipe_diameter": "3",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Rehmat Colony Sirki Road ( Nargis )",
"division": "ZARGOON TOWN",
"elevation": "5593 ± 3m",
"installation_date": "7/6/2016",
"lat": "30.1715833333333",
"lng": "67.0029444444444",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Rehmat Colny Sirki Road Faisal street",
"division": "ZARGOON TOWN",
"elevation": "5614 ± 3m",
"lat": "30.1928611111111",
"lng": "67.0100555555556",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Ramzan gali near afghan road (baqi tube well)",
"division": "ZARGOON TOWN",
"elevation": "5596 ± 4m",
"lat": "30.1745833333333",
"lng": "67.0120833333333",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Saleem Banglow Zarghoon Road Quetta",
"division": "ZARGOON TOWN",
"elevation": "5537 ± 4m",
"lat": "30.1846944444444",
"lng": "67.0005",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Shawekshah Road Education Directorate",
"division": "ZARGOON TOWN",
"elevation": "5540 ± 7m",
"installation_date": "10.05.17",
"lat": "30.1865833333333",
"lng": "67.0106666666667",
"pipe_diameter": "3",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Special High School",
"division": "ZARGOON TOWN",
"elevation": "5549 ± 3m",
"lat": "30.1869722222222",
"lng": "67.0126666666667",
"rock_type": "Alluvial",
"status": "Abandoned",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Sirki Kala",
"division": "ZARGOON TOWN",
"elevation": "5572 ± 3m",
"installation_date": "25/10/09",
"lat": "30.1732222222222",
"lng": "67.00175",
"pipe_diameter": "2",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Sirki Kala (Arbab)",
"division": "ZARGOON TOWN",
"elevation": "5585 ± 3m",
"installation_date": "2/7/2014",
"lat": "30.1755833333333",
"lng": "67.0035",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Stewrat Road Baloch Colony",
"division": "ZARGOON TOWN",
"elevation": "5536 ± 4m",
"lat": "30.1873888888889",
"lng": "67.0052222222222",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Tareen Road near Gualmandi Police Station",
"division": "ZARGOON TOWN",
"elevation": "5611 ± 4m",
"installation_date": "15/07/06",
"lat": "30.1806388888889",
"lng": "67.0142777777778",
"pipe_diameter": "2.5",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Tareen Road (Naseeb Mama)",
"division": "ZARGOON TOWN",
"elevation": "5619 ± 4m",
"installation_date": "17.08.17",
"lat": "30.1745277777778",
"lng": "67.0185555555556",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Taro Chowk Pashtoonabad",
"division": "ZARGOON TOWN",
"elevation": "5631 ± 3m",
"installation_date": "21/05/16",
"lat": "30.1742777777778",
"lng": "67.0166944444444",
"pipe_diameter": "3",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Yousaf Homes Sirki Road near Cinema",
"division": "ZARGOON TOWN",
"elevation": "5645 ± 4m",
"lat": "30.1696666666667",
"lng": "67.0055277777778",
"pipe_diameter": "3",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Zaman Khan Road Quarry Road",
"division": "ZARGOON TOWN",
"elevation": "5585 ± 4m",
"lat": "30.1855277777778",
"lng": "67.0077777777778",
"pipe_diameter": "2",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION",
"tw_diameter": "10"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Rehmat Colony Wahab dairy sirki road",
"division": "ZARGOON TOWN",
"elevation": "5597 ± 4m",
"lat": "30.17575",
"lng": "67.0120277777778",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Kucha Aman Quarry Road",
"division": "ZARGOON TOWN",
"elevation": "5543 ± 3m",
"lat": "30.1844722222222",
"lng": "67.0085277777778",
"rock_type": "Alluvial",
"status": "Abandoned",
"subdivision": "GWALMANDI SUB DIVISION"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Achakzai Market",
"division": "ZARGOON TOWN",
"elevation": "5643 ± 4m",
"lat": "30.1635",
"lng": "67.0094444444444",
"rock_type": "Alluvial",
"status": "Energized",
"subdivision": "Pashtoonabad Sub Division"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Abdul Wali Chowk Pashtoonabad",
"division": "ZARGOON TOWN",
"elevation": "5690 ± 3m",
"lat": "30.1711666666667",
"lng": "67.02225",
"rock_type": "H/R",
"status": "Energized",
"subdivision": "Pashtoonabad Sub Division"
}
},
{
"department_name": "Q-WASA",
"type": "tubewell",
"attributes": {
"name": "Afghania road pashtoon town Dr Ubaidullah",
"division": "ZARGOON TOWN",
"elevation": "5824± 3m",
"lat": "30.0921944444444",
"lng": "66.99825",
"rock_type": "H/R",
"status": "Energized",
"subdivision": "Pashtoonabad Sub Division"
}
},
{