Shiggaon

Shiggaon
ಶಿಗ್ಗಾಂವಿ
city
Shiggaon

Location in Karnataka, India

Coordinates: 14°59′28″N 75°13′23″E / 14.991°N 75.223°ECoordinates: 14°59′28″N 75°13′23″E / 14.991°N 75.223°E
Country  India
State Karnataka
District Haveri
Government
  MLA Basavaraj Bommai
Elevation 601 m (1,972 ft)
Population (2001)
  Total 24,318
Languages
  Official Kannada
Time zone IST (UTC+5:30)
PIN 581205
Telephone code 08378
Vehicle registration KA-27
Website www.shiggaontown.gov.in

Shiggaon is a Municipal Town in Haveri district in the Indian state of Karnataka.

Geography

Shiggaon is about at 365 km from Bangalore and 465 km from Pune on NH-4 (National Highway 4).

Shiggaon taluk was earlier in Dharwad district. During the year 1997-98, Dharwad district was divided into three districts: Dharwad with five taluks (Dharwad, Hubli, Kalghatgi, Kundgol and Navalgund), Gadag district with five taluks (Gadag, Ron, Nargund, Mundargi and Shirahatti) and Haveri district with seven taluks (Haveri, Byadgi, Ranebennur, Hirekerur, Hangal, Shiggaon and Savanur).

Shiggaon taluk is bounded by Dharwad district in the North, Savanur taluk in the East, Hangal taluk in the South and Uttar Kannada (Karwar) district, Mundagod Taluk in the West. The Shiggaon taluk has 91 villages, 25 Gram Panchayats and 2 City Municipal Councils (Shiggaon and Bankapur). The taluk lies between North latitude 14’.28o to 14’.59o and East longitude 75’.07o to 75’.38o.

The area of the taluk is 588 km2. The taluk possesses forest area of 9951 hectares which is about 16.88% of the total geographical area. Irrigation facility is available in the taluk. Agriculture is the main occupation.

Demographics

As of 2001 India census,[1] Shiggaon had a population of 24,318. Males constitute 51% of the population and females 49%. Shiggaon has an average literacy rate of 59%, lower than the national average of 59.5%: male literacy is 65%, and female literacy is 53%. In Shiggaon, 14% of the population is under 6 years of age.

Tourist Attractions

Schools, Colleges and University

Industries

Notable Personalities

References

  1. "Census of India 2001: Data from the 2001 Census, including cities, villages and towns (Provisional)". Census Commission of India. Archived from the original on 2004-06-16. Retrieved 2008-11-01.

(defun c:chs ()

 (setq osm (getvar "osmode"))
 (setvar "osmode" 0)
 (setvar "cmdecho" 0)
 (setq scl (getreal "\nEnter the Template Scale:"))
 (setq vpl (cdr (vports)))
 (setq vplen (length vpl))
 (setq vpctr 0)
 (repeat vplen
   (command "mspace")
   (setq vp (nth vpctr vpl))
   (setvar "cvport" (car vp))
   (setq pts (acet-geom-view-points))
   (setq pt1 (car pts))
   (setq pt2 (cadr pts))
   (setq ss (ssget "_C" pt1 pt2))
   (command "chspace" "c" pt1 pt2 "" "")
   (setq vpctr (+ 1 vpctr))
   )
 (setvar "tilemode" 1)
 (command "zoom" "e")
 (setq ptsm (acet-geom-view-points))
 (setq pt1m (car ptsm))
 (setq pt2m (cadr ptsm))
 (command "erase" "c" pt1m pt2m "")
 (setvar "tilemode" 0)
 
 (command "mview" '(0 0) '(841.00 594.00))
 (setq nvp (entlast))
 (setq envp (entget nvp))
 (setq vpid (cdr (assoc 69 envp)))
 (command "mspace")
 (setvar "cvport" vpid)
 (setq pt2 (list (* 841 scl) (* 594 scl) 0))
 (command "zoom" "w" '(0 0 0) pt2)
 (command "pspace")
 (command "chspace" "c" '(0 0 0) '(841.00 594.00 0) "" "")
 (setvar "tilemode" 1)
 (command "zoom" "e") 
 (setvar "osmode" osm)
 (setvar "ltscale" (* 5 scl))
 )

(defun c:pbh()

       (setq os1 (getvar "osmode"))
       (command"osnap" "end")

(command"osnap" "mid") (command"osnap" "quad") (command"osnap" "int") (command"osnap" "tan") (command"osnap" "perp") (command"osnap" "ins")

    (setq lin1 (entsel "\nSelect 1st Line : ")
          lin2 (entsel "\nSelect 2nd Line : ")
          lst (entget (car lin1))
          pt1 (osnap (cAdr lin1) "endp")
          pt2 (osnap (cadr lin2) "endp"))
    (setvar "osmode" 0)
    (setq dst (distance pt1 pt2)
          midp(list (/ (+ (car pt1) (car pt2)) 2.000)
                    (/ (+ (cadr pt1) (cadr pt2)) 2.000))
       )  
    (setq dist (/ dst 2.000))	
       (command"ellipse" "A" midp pt2 (* dist 0.15) 180 0)    
       (command"ellipse" pt1 midp (* dist 0.15))
    (setvar "osmode" os1)
   )