-
Notifications
You must be signed in to change notification settings - Fork 0
/
Birds.html
1423 lines (1255 loc) · 49.4 KB
/
Birds.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Birds - Thar desert photography</title>
<!--
- favicon
-->
<link rel="shortcut icon" href="./assets/images/favicon-logo.png" type="image/svg+xml">
<!--
- custom css link
-->
<link rel="stylesheet" href="./assets/css/style.css">
<!--
- google font link
-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap"
rel="stylesheet">
<!-- for table css -->
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td,
th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(odd) {
background-color: #dddddd;
}
</style>
<!-- for google ad sense start -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6987276683420538"
crossorigin="anonymous"></script>
<!-- for google ad sense end -->
</head>
<body id="top">
<!--
- #HEADER
-->
<header class="header" data-header>
<div class="overlay" data-overlay></div>
<div class="header-top">
<div class="container">
<a href="tel:+91 9929262986" class="helpline-box">
<div class="icon-box">
<ion-icon name="call-outline"></ion-icon>
</div>
<div class="wrapper">
<p class="helpline-title">For Further Inquires :</p>
<p class="helpline-number">+91 9929262986</p>
</div>
</a>
<a href="./index.html" class="logo">
<!-- <img src="./assets/images/logo-m-RS.png" alt=" logo"> -->
<p class="logoTop">Thar Desert Photography</p>
</a>
<div class="header-btn-group">
<button class="nav-open-btn" aria-label="Open Menu" data-nav-open-btn>
<ion-icon name="menu-outline"></ion-icon>
</button>
</div>
</div>
</div>
<div class="header-bottom">
<div class="container">
<nav class="navbar" data-navbar>
<div class="navbar-top">
<a href="./index.html#home" class="logo">
<p class="logoTopMenu"> <b><b>Thar Desert Photography</b></b></p>
<!-- <img src="./assets/images/logo-m-rs_black.png" alt="Radhe shyam logo menu "> -->
</a>
<button class="nav-close-btn" aria-label="Close Menu" data-nav-close-btn>
<ion-icon name="close-outline"></ion-icon>
</button>
</div>
<ul class="navbar-list">
<li>
<a href="./index.html#home" class="navbar-link" data-nav-link>home</a>
</li>
<li>
<a href="./about.html" class="navbar-link" data-nav-link>about me</a>
</li>
<li class="dropdown">
<a class="navbar-link" >destination</a>
<ul class="dropdown-menu">
<li><a href="./Dhawa.html"> <b> Dhawa-Doli wildlife santuary</b></a></li>
<hr>
<li><a href="./DNP.html"> <b> Desert National Park
</b></a></li>
<hr>
<li><a href="./Destination.html"> <b>Other destination</b></a></li>
<!-- <li><a href="./Destination.html"> <b>Jaisalmer</b></a></li> -->
<li><a href="#"> <b></b></a></li>
</ul>
<li>
<!-- <li class="dropdown">
<a class="navbar-link">Animals</a>
<ul class="dropdown-menu">
<li><a href="./Mamels.html"><b>Mammals</b></a></li>
<hr>
<li><a href="./Reptiles.html"><b>Reptiles</b></a></li>
<hr>
<li><a href="./Birds.html"><b>Birds</b></a></li>
</ul> -->
<li>
<a href="./gallery.html" class="navbar-link" data-nav-link>gallery</a>
</li>
<!-- <li>
<a href="./GIB.html" class="navbar-link" data-nav-link>GIB</a>
</li> -->
<li>
<a href="./Contact.html" class="navbar-link" data-nav-link>contact me</a>
</li>
<li>
<a href="./team.html" class="navbar-link" data-nav-link>Our team</a>
</li>
</ul>
</nav>
<a href="https://forms.gle/KX871rPaAT5FMqoS6" target="_blank">
<button class="btn btn-primary">Book Now</button>
</a>
</div>
</div>
</header>
<main>
<article>
<!-- for whatsapp flot icon start -->
<a class="whapp animated pulse"
href="https://wa.me/919929262986?text=hello%20sarvan%20patel%20I%27m%20interested%20to%20visit%20Dhawa%20Doli%20wildlife%20santuary."
target="_blank">
<div class="whapp-btn">
<img
src="https://uploads-ssl.webflow.com/62b5ca109278e030a060e942/62bf28776d90ec6fa2bec0f4_iconmonstr-whatsapp-1-240.png">
</div>
</a>
<!-- for whatsapp flot icon end -->
<!--
- #HERO
-->
<section class="hero" id="home" style="background-image: url(./assets/images/birds/birds-home.JPG);">
<div class="container">
<h2 class="h1 hero-title">Birds</h2>
<p class="hero-text">
Birds of Desert National Park: A Symphony of Feathers in the Arid Skies
</p>
<div class="btn-group">
<a href="./about.html" target="_blank">
<button class="btn btn-primary">About me</button>
</a>
<a href="https://forms.gle/sBWPWkdsfHUVrkqD9" target="_blank">
<button class="btn btn-secondary">Book now</button>
</a>
</div>
</div>
</section>
<!--
- #GALLERY
-->
<section class="gallery" id="gallery">
<div class="container">
<!-- <p class="section-subtitle">Photo Gallery</p>
<h2 class="h2 section-title">Great Indian Busterd</h2> -->
<!-- <p class="section-text">
Fusce hic augue velit wisi quibusdam pariatur, iusto primis, nec nemo, rutrum. Vestibulum cumque laudantium.
Sit ornare
mollitia tenetur, aptent.
</p> -->
<p>Desert National Park in Rajasthan, India, is a unique and captivating destination for <b>birdwatching
</b>enthusiasts. This arid and seemingly desolate landscape, covering approximately 3,162 square kilometers,
offers a surprising diversity of avian life. Birding in Desert National Park can be a rewarding experience,
with numerous subheadings that provide insight into this fascinating ornithological haven.</p>
<br><br>
<p class="section-subtitle">Birds photo's form radhe's lens</p>
<ul class="gallery-list">
<li class="gallery-item">
<figure class="gallery-image">
<img src="./assets/images/birds/birds-1.JPG" alt="Gallery image">
</figure>
</li>
<li class="gallery-item">
<figure class="gallery-image">
<img src="./assets/images/birds/birds-2.JPG" alt="Gallery image">
</figure>
</li>
<li class="gallery-item">
<figure class="gallery-image">
<img src="./assets/images/birds/birds-3.JPEG" alt="Gallery image">
</figure>
</li>
<li class="gallery-item">
<figure class="gallery-image">
<img src="./assets/images/birds/birds-4.JPG" alt="Gallery image">
</figure>
</li>
<li class="gallery-item">
<figure class="gallery-image">
<img src="./assets/images/birds/birds-5.JPG" alt="Gallery image">
</figure>
</li>
<br><br>
</ul>
<br>
<ul>
<li><strong>1. Arid Avian Oasis</strong>
Despite its harsh desert environment, Desert National Park serves as a vital refuge for a wide variety of
bird
species. The park's diverse ecosystems, including sand dunes, rocky terrain, and thorn scrub, attract a
wealth
of avian life. Birders visiting this region can expect to encounter both resident and migratory species,
making it a
year-round destination for birdwatching.
</li><br>
<li><strong>2. Migratory Marvels</strong>
One of the most remarkable aspects of Desert National Park is its role as a critical stopover for
migratory birds
along the Central Asian Flyway. During the winter months, the park becomes a temporary home to thousands
of
migratory species. Among the notable visitors are Demoiselle Cranes and various waterfowl species, making
the park a
spectacle of avian diversity.
</li><br>
<li><strong>3. Iconic Endemics</strong>
Desert National Park boasts several bird species that are endemic to this region, making it a must-visit
for serious
birdwatchers. The Great Indian Bustard and the Indian Courser are two iconic endemics found here. Their
survival in
this harsh desert landscape underscores the park's importance for the conservation of these unique
species.
</li><br>
<li><strong>4. Varied Habitats</strong>
The park's topography offers a range of habitats for birds, from sand dunes and salt flats to saline lakes
and
thorny shrubbery. Each habitat hosts its own set of bird species, making it possible to spot a wide array
of birds
in a single visit. Birdwatchers can explore these diverse ecosystems, each with its own charm and avian
inhabitants.
</li><br>
<li><strong>5. Prime Photographic Opportunities</strong>
Bird photography enthusiasts will find Desert National Park an ideal location to capture stunning shots of
avian
life against the backdrop of the desert landscape. The park's unique lighting conditions and the contrast
between
the vibrant plumage of birds and the arid surroundings create remarkable photo opportunities.
</li><br>
<li><strong>6. Conservation Efforts</strong>
Desert National Park is not only a sanctuary for birds but also a testament to conservation efforts in
India. The
park's management focuses on preserving the fragile desert ecosystem and protecting its avian inhabitants.
Understanding the conservation initiatives in place can deepen one's appreciation for the park's
significance.
</li><br>
<li><strong>7. Best Birding Seasons</strong>
While Desert National Park offers birdwatching opportunities year-round, the best time to visit for
birding is during
the winter months, from November to March. This period coincides with the arrival of migratory birds and
offers
pleasant weather for outdoor activities.
</li><br>
<li>
<strong>8.Radheshyam: The Expert Birding Guide</strong>
When exploring the avian wonders of Desert National Park, there's no better companion than Radheshyam, a
seasoned birding guide with an unrivaled knowledge of the park's birdlife. Radheshyam's expertise in
identifying and locating birds, combined with his passion for conservation, ensures that every birding
expedition with him is both educational and rewarding. Whether you're a novice or an experienced birder,
Radheshyam's guidance enhances the birdwatching experience.
</li>
<br>
<li>
<strong>9.Diverse Bird Species</strong>
Desert National Park is home to an impressive diversity of bird species, with over 250 documented in the
region. In addition to the iconic Great Indian Bustard and Indian Courser, you'll encounter raptors like
the Short-toed Eagle and Bonelli's Eagle, elegant waterbirds such as the Black-headed Ibis and Eurasian
Spoonbill, and vibrant songbirds like the Indian Golden Oriole and Bluethroat. Each visit to the park
unveils new avian delights, thanks to its diverse ecosystems.
</li>
<br>
<li>
<strong>10.Nocturnal Birding Adventures</strong>
<!-- <br> -->
For those seeking unique birdwatching experiences, Desert National Park offers thrilling nocturnal birding
opportunities. Radheshyam can lead you on nighttime excursions to spot elusive nightjars like Sykes's
Nightjar and Indian Nightjar. These excursions provide a chance to witness the park's avian nightlife and
observe the mysterious behaviors of nocturnal birds.
</li>
<br>
<li>
<strong>11.Bird Ringing Programs</strong>
<!-- <br> -->
Participate in bird ringing programs conducted in collaboration with local conservation organizations.
Radheshyam can facilitate your involvement in these programs, allowing you to learn about bird migration
patterns and contribute to ongoing research efforts. It's a hands-on experience that deepens your
understanding of the park's avian inhabitants.
</li>
<br>
<li>
<strong>12.Cultural Insights</strong>
<!-- <br> -->
Beyond birdwatching, Radheshyam can introduce you to the rich cultural heritage of the region's indigenous
communities. You'll gain insights into the harmonious relationship between these communities and the local
birdlife. Radheshyam's storytelling skills bring to life the cultural significance of birds in the
desert's folklore and traditions.
</li>
<br>
<li>
<strong>13.Birding Etiquette and Conservation</strong>
<!-- <br> -->
With Radheshyam's guidance, you'll not only enjoy exceptional birding but also practice responsible
birdwatching. He emphasizes the importance of birding etiquette, such as maintaining a respectful distance
from nesting sites and minimizing disturbances to birds. Radheshyam is dedicated to instilling a sense of
responsibility for bird conservation in every visitor he guides.
</li>
<br>
<li>
<strong>14.The Joy of Bird Calls</strong>
<br>
Birding in Desert National Park isn't just about sightings; it's also about the symphony of bird calls
that fills the air. Radheshyam's keen ear can decipher the melodious calls of various species, enhancing
your birdwatching experience. From the resonant calls of the Indian Peafowl to the haunting songs of the
Oriental Turtle Dove, you'll develop an appreciation for the auditory delights of birding.
</li>
<br>
</ul>
<p>
In conclusion, Desert National Park offers an enchanting world of birds waiting to be discovered. With
Radheshyam as your guide, you'll embark on a birdwatching journey that combines expertise, conservation
awareness, and cultural immersion, making it an unforgettable experience for bird enthusiasts of all levels.
</p>
</ul>
<br><br><br>
<h3 style="text-align: center;">CHECKLIST OF BIRDS</h3>
<table>
<thead>
<tr>
<th>Species</th>
<th>Season</th>
<th>Conservation Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>Great Indian Bustard</td>
<td>Resident</td>
<td>Critical Endangered</td>
</tr>
<tr>
<td>MacQueen Bustard</td>
<td>Winter</td>
<td>Rare</td>
</tr>
<tr>
<td>Trumpeter Finch</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Desert Courser</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Red Tailed Wheather</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Rufous Tailed Scrub Robin</td>
<td>Passage</td>
<td>Least Concern</td>
</tr>
<tr>
<td>European Nightjar</td>
<td>Passage</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Red Backed Shrike</td>
<td>Passage</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Red Tailed Shrike</td>
<td>Passage</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Isabline Shrike</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Great Grey Shrike</td>
<td>Resident</td>
<td></td>
</tr>
<tr>
<td>Bay Backed Shrike</td>
<td>Passage</td>
<td>Least Concern</td>
</tr>
<tr>
<td>European Roller</td>
<td>Passage</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Blue Checked Bee Eater</td>
<td>Passage</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Desert Lark</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Greater Hoopoe Lark</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Bimaculted Lark</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Short Toed Lark</td>
<td>Resident</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Created Lark</td>
<td>Resident</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Oriental Sky Lark</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Rufous Tailed Lark</td>
<td>Passage</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Laggar Falcon</td>
<td>Resident</td>
<td>Near-threatened</td>
</tr>
<tr>
<td>Merlin Falcon</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Saker Falcon</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Common Kestrel</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Lesser Kestrel</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Long Legged Buzzard</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Common Buzzard</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>White Eyed Buzzard</td>
<td>Passage</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Tawny Eagle</td>
<td>Resident</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Steepe Eagle</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Imperial Eagle</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Spotted Eagle</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Golden Eagle</td>
<td>Winter</td>
<td>Rare</td>
</tr>
<tr>
<td>Booted Eagle</td>
<td>Winter</td>
<td>Rare</td>
</tr>
<tr>
<td>Egyptian Vulture</td>
<td>Resident</td>
<td>Least Concern</td>
</tr>
<tr>
<td>White Rumped Vulture</td>
<td>Winter</td>
<td>Critical Endangered</td>
</tr>
<tr>
<td>Red Headed Vulture</td>
<td>Resident</td>
<td>Critical Endangered</td>
</tr>
<tr>
<td>Indian Vulture</td>
<td>Winter</td>
<td>Critical Endangered</td>
</tr>
<tr>
<td>Cinereous Vulture</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Eurasian Griffon Vulture</td>
<td>Winter</td>
<td>Near-threatened</td>
</tr>
<tr>
<td>Himalayan Vulture</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Montagu's Harrier</td>
<td>Passage</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Pallid Harrier</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Marsh Harrier</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Hen Harrier</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Short Toed Snake Eagle</td>
<td>Passage</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Spotted Fly Catcher</td>
<td>Passage</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Asian Desert Warbler</td>
<td>Winter</td>
<td>Near-threatened</td>
</tr>
<tr>
<td>Plain Leaf Warbler</td>
<td>Resident</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Orphean Warbler</td>
<td>Resident</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Hume's Warbler</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Booted Warbler</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Sykes's Warbler</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Common Chiffchaff</td>
<td>Resident</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Lesser Whitethroat</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Rock Eagle Owl</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Short Eared Owl</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Yellow Crowned Woodpecker</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Indian Roller</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>White Bellied Drongo</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Grey Necked Bunting</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Red Headed Bunting</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Black Headed Bunting</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Rufous Fronted Prinia</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Jungle Prinia</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Streak Throated Swallow</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Indian Courser</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Punjab Raven</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Bonelli's Eagle</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Grey Francolin</td>
<td>Resident</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Common Quail</td>
<td>Resident</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Little Swift</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Demoiselle Crane</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Common Crane</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Western Reef Egret</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Spanish Sparrow</td>
<td>Winter</td>
<td>Rare</td>
</tr>
<tr>
<td>Sind Sparrow</td>
<td>Winter</td>
<td>Rare</td>
</tr>
<tr>
<td>Red Rumped Swallow</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Wire Tailed Swallow</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Dusky Crag Martin</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Himalayan Bulbul</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Red Vent Bulbul</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Yellow Vent Bulbul</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Red Breasted Flycatcher</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Desert Wheatear</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Isabelline Wheatear</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Ashy Crowned Sparrow Lark</td>
<td>Resident</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Black Crowned Sparrow Lark</td>
<td>Resident</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Singing Bushlark</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Indian Bushlark</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>White Browed Bushchat</td>
<td>Resident</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Chestnut Bellied Sandgrouse</td>
<td>Resident</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Black Bellied Sandgrouse</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Spotted Sandgrouse</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Little Ringed Plover</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Kentish Plover</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Mallard</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Long-bellied Duck</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Common Coot</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Rock Dove</td>
<td>Resident</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Eurasian Collared Dove</td>
<td>Resident</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Rosy Starling</td>
<td>Passage</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Common Starling</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Yellow Eyed Pigeon</td>
<td>Winter</td>
<td>Near Threatened</td>
</tr>
<tr>
<td>Oriental Magpie Robin</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Indian Robin</td>
<td>Resident</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Common Stonechat</td>
<td>Resident</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Pied Bushchat</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Brown Rockchat</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Purple Sunbird</td>
<td>Winter</td>
<td>Least Concern</td>
</tr>
<tr>
<td>Yellow Wagtail</td>
<td>Resident</td>
<td>Least Concern</td>
</tr>
<tr>
<td>White Wagtail</td>
<td>Winter</td>