Skip to main content

What is Geography? (www.availablestudy.blogspot.in)


 

What is geography?

Geography is the study of Earth’s landscapes, peoples, places and environments. It is, quite simply, about the world in which we live.
Geography is unique in bridging the social sciences (human geography) with the natural sciences (physical geography). Human geography concerns the understanding of the dynamics of cultures, societies and economies, and physical geography concerns the understanding of the dynamics of physical landscapes and the environment.
Geography puts this understanding of social and physical processes within the context of places and regions - recognising the great differences in cultures, political systems, economies, landscapes and environments across the world, and the links between them. Understanding the causes of differences and inequalities between places and social groups underlie much of the newer developments in human geography.
Geography provides an ideal framework for relating other fields of knowledge. It is not surprising that those trained as geographers often contribute substantially to the applied management of resources and environments.
Geography is, in the broadest sense, an education for life and for living. Learning through geography – whether gained through formal learning or experientially through travel, fieldwork and expeditions – helps us all to be more socially and environmentally sensitive, informed and responsible citizens and employees.

Geography informs us about

  • The places and communities in which we live and work
  • Our natural environments and the pressures they face
  • The interconnectedness of the world and our communities within it
  • How and why the world is changing, globally and locally
  • How our individual and societal
    actions contribute to those changes
  • The choices that exist in managing our world for the future
  • The importance of location in business and decision-making

Further information


www.availablestudy.blogspot.in


What is Geography?

What is Geography?
Geography is the discipline that attempts to explore how environments emerge by natural processes, how societies produce, organize, use and misuse environments, and how societies themselves are influenced by the environments in which they are located. Thus, geography aims to study both natural and human realms and their interactions, focusing on space, places, and regions, addressing and questioning both short-term and longer-term processes and their resultant patterns.
The contribution of geography to knowledge is in its focus on space and the environment as its principal notions of study. Since space is a basic dimension of both Nature and humanity, containing and related to numerous natural processes and human activities, geography provides integrating and holistic perspectives for phenomena and processes handled simultaneously by several other disciplines.
The contribution of geography to society is multifold: it provides people with a better understanding of the places, regions and countries in which they live, as well as of other countries and regions and of the planet at large. It further adds the spatial and integrative dimension and holistic perspective to various planning, forecasting and decision making processes.

www.availablestudy.blogspot.in




Comments

Popular posts from this blog

Microsoft office 2007 tutorial Pdf

Click Here Download Links [PDF] Microsoft Office 2007 Training Manual [PDF] Microsoft Word 2007 [PDF] ESSENTIAL MICROSOFT OFFICE 2007™ Tutorials for Teachers [PDF] Introduction to MS Excel 2007 - West Virginia University [PDF] Microsoft Word 2007 A Beginners' Guide - University of Reading

Electronic color code (B.B. Roy of Great Britain Has a Very Good Wife) Availablestudy.blogspot.in

The  electronic color code  is used to indicate the values or ratings of electronic components, very commonly for  resistors , but also for  capacitors ,  inductors , and others. A separate code, the  25-pair color code , is used to identify wires in some  telecommunications  cables. The electronic color code was developed in the early 1920s by the Radio Manufacturers Association (now part of  Electronic Industries Alliance [1]  (EIA)), and was published as EIA-RS-279. The current international standard is IEC 60062. [2] Colorbands were commonly used (especially on  resistors ) because they were easily printed on tiny components, decreasing construction costs. However, there were drawbacks, especially for color blind  people. Overheating of a component, or dirt accumulation, may make it impossible to distinguish brown from red from orange. Advances in printing technology have made printed numbers practical for small compo...

Functions _(c++ programming language)

Now that you should have learned about variables, loops, and conditional statements it is time to learn about functions. You should have an idea of their uses as we have already used them and defined one in the guise of main. cin.get() is an example of a function. In general, functions are blocks of code that perform a number of pre-defined commands to accomplish something productive.  Functions that a programmer writes will generally require a prototype. Just like a blueprint, the prototype tells the compiler what the function will return, what the function will be called, as well as what arguments the function can be passed. When I say that the function returns a value, I mean that the function can be used in the same manner as a variable would be. For example, a variable can be set equal to a function that returns a value between zero and four.  For example: #include <cstdlib> // Include rand() using namespace std; // Make rand() visible int a = rand(); ...