Skip to main content

Geography of Bangladesh

Geography of Bangladesh : Quick look

Location: Southern Asia, bordering the Bay of Bengal, between Burma and India.

Geographic coordinates: 24 00 N, 90 00 E.
Map references: Asia

Area:
total: 144,000 sq km.
land: 133,910 sq km.
water: 10,090 sq km.

Area-comparative: slightly smaller than Iowa.

Land boundaries:

total: 4,246 km
border countries: Burma 193 km, India 4,053 km

Coastline: 580 km.
Maritime claims:
contiguous zone: 18 nm.
continental shelf: up to the outer limits of the continental margin.
exclusive economic zone: 200 nm.
territorial sea: 12 nm.

Climate: tropical; mild winter (October to March); hot, humid summer (March to June); humid, warm rainy monsoon (June to October)

Terrain: mostly flat alluvial plain; hilly in southeast.

Elevation extremes:
lowest point: Indian Ocean 0 m.
highest point: Keokradong 1,230 m.

Natural resources: natural gas, arable land, timber.

Land use:
arable land: 61%
permanent crops: 3%
other: 36% (1998 est.)

Irrigated land: 38,440 sq km (1998 est.)

Natural hazards: droughts, cyclones; much of the country routinely flooded during the summer monsoon season.

Environment-current issues: many people are landless and forced to live on and cultivate flood-prone land; limited access to potable water; water-borne diseases prevalent; water pollution especially of fishing areas results from the use of commercial pesticides; intermittent water shortages because of falling water tables in the northern and central parts of the country; soil degradation; deforestation; severe overpopulation.

Environment-international agreements:
party to: Biodiversity, Climate Change, Climate Change-Kyoto Protocol, Desertification, Endangered Species, Environmental Modification, Hazardous Wastes, Law of the Sea, Nuclear Test Ban, Ozone Layer Protection, Wetlands signed, but not ratified: none of the selected agreements

Transnational Issues 

Disputes-international: Only a small portion of the boundary with India remains undelimited; discussions to demarcate the boundary, exchange 162 miniscule enclaves, and allocate divided villages remain stalled; skirmishes, illegal border trafficking, and violence along the border continue; Bangladesh has protested India's attempts to fence off high traffic sections of the porous boundary; Burmese attempts to construct a dam on the border stream in 2001 prompted an armed response halting construction; Burmese Muslim refugees migrate into Bangladesh straining meager resources.

Comments

Popular posts from this blog

Program_function_02

Adding two Integer number using Function. /* Adding two Integer number using Function.*/  #include <stdio.h> int sum( int x, int y); /* function prototype */ int sub( int x, int y); int mul( int x, int y); int div( int x, int y);  /* function main begins program execution */  void main( )  {     sum (5,7);     sub (10,5);     mul (10,5);     div (10,5);  } /* end main */ /* Function maximum definition */ /* x, y and z are parameters */ int sum( int x, int y) {     printf ("%d", x+y);     getch(); } /* end function maximum */ int sub( int x, int y) {     printf ("%d", x-y);     getch(); } int mul( int x, int y) {     printf ("%d", x*y);     getch(); } int div( int x, int y) {     printf (...

Program_function_01

Using Function: Finding the maximum of three integers. /* Fig. 5.4: fig05_04.c     Finding the maximum of three integers */  #include <stdio.h> int maximum( int x, int y, int z ); /* function prototype */  /* function main begins program execution */  int main( void )  {     int number1; /* first integer */     int number2; /* second integer */     int number3; /* third integer */     printf( "Enter three integers: " );     scanf( "%d%d%d", &number1, &number2, &number3 );     /* number1, number2 and number3 are arguments        to the maximum function call */     printf( "Maximum is: %d\n",  );     return 0; /* indicates successful termination */  } /* end main */ /* Function maximum definition */ /* x, y ...

C Program01 Chap01: Area of Squre

/*Prime.Chapter_01/17 Write a program for Area of Squre*/   //document #include<stdio.h>    //Header file #include<conio.h>   //Header file Preprocessor Directive #define N 10        //Symbolic constant     void main()     //main program starts {     int area;       //variable declaration     area = N*N;     //process stmt      printf("Area of square:\n"); // o/p stmt     printf("%d", area);            // to show the output visible     getch();     return 0; }   // Program ends.