Adesar

Adesar is a small village in Kutch district, Gujarat, India.

History

The town was protected by fort which were damaged in 1816 following war with Rao Bharmalji of Cutch State.[1]

The town had ancient Suryanarayan temple destroyed in 2001 Bhuj earthquake. It was rebuilt again later.[2]

gollark: ```ruststruct Fib1 { cache: Vec<u128>}impl Iterator for Fib1 { type Item = u128; fn next(&mut self) -> Option<Self::Item> { let n = self.cache.len(); let next = self.cache[n - 1].wrapping_add(self.cache[n - 2]); self.cache.push(next); Some(next) }}fn fib1() -> Fib1 { Fib1 { cache: vec![0, 1] } }fn main() { for n in fib1() { print!("{} ", n); }}```
gollark: I prefer it this way.
gollark: Idea: wrapping_add.
gollark: Unlike LyricLy's bad thing, which timed out.
gollark: See, it was too fast, it overflowed.

References

  1. Gazetteer of the Bombay Presidency: Cutch, Palanpur, and Mahi Kantha. Printed at the Government Central Press. 1880. p. 210.
  2. "Surya Narayan temple -Adesar". The Megalithic Portal. 28 October 2007. Retrieved 1 August 2015.

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.