answersLogoWhite

0

Surveying. Since 1940, aerial photography and since 1980, satellite photography have been more widely used.

User Avatar

Wiki User

16y ago

What else can I help you with?

Continue Learning about Natural Sciences

What are types of mapping?

There are three main types of mapping: thematic mapping, topographic mapping, and web mapping. Thematic mapping focuses on specific themes or topics, topographic mapping shows physical features of an area like elevation and terrain, and web mapping involves displaying maps on the internet using interactive tools.


What are the differences among direct mapping associative mapping and set associative mapping?

The differences among direct mapping and set-associative mapping :Direct mapping : Each line in main memory maps onto a single cache line.Set-associative : Each line in main memory maps onto a small (collection) set of cache line.Direct mapping : A memory block is mapped into a unique cache line, depending on the memory address of the respective block.Set-associative : A memory block is mapped into any of the line of a set. The set is determined by the memory address, but the line inside the set can be any one.dont knowyet


What is concerned with the description and mapping of the main features of the universe a astronomy b cosmography c cosmology d geomorphology?

Cosmography


What method of separation would you use to separate water and a fine sand and how?

Separating the nails from the sand is to use a magnet. This works .... and water in a sealed jar, the sand spreads through the water ...... to be crushed to a fine powder before the copper ore.


What is the Steps of text mapping?

First,,,you must read the text thoroughly and then you must apply those legends which can refer for some guidelines on your text mapped.Then connect your ideas, main ideas, subtitles, and etc. with those legends, and then that's it !

Related Questions

What was the main method of mapping in the US before the 1940's?

Using the stars to navigate


How do you print message before main in java?

You cannot do that. The main method of a java class is the point where the execution begins. You can print messages only after a main method is invoked.


Three cache mapping techniques?

Three types of mapping procedures are there? (1) Associative Mapping-The fastest and most flexible cache organizations uses associative mapping. The associative memory stores both the address and content of memory word. This permits any location in catche to store word in main memory. (2) Direct Mapping-Associative memories are expesive compared to RAM's because of added logic associated with each cell. (3) Set Associative Mapping-It is a more general method that includes pure associative and direct mapping as special case. It is an improvement over the direct mapping organization in that each word of cache can store two or more words of memory under the same index address. Each data word is stored together with its tag and the number of tag data items in one word of cache is said to form a set. With Regards Veer Thakur Chandigarh


What are types of mapping?

There are three main types of mapping: thematic mapping, topographic mapping, and web mapping. Thematic mapping focuses on specific themes or topics, topographic mapping shows physical features of an area like elevation and terrain, and web mapping involves displaying maps on the internet using interactive tools.


Description and mapping of the main features of universe?

cosmology


What the difference among direct mapping associative mapping and autoassociative mapping?

Direct mappingA given Main Memory block can be mapped to one and only one Cache Memory line.It is Simple, Inexpensive, fastIt lacks mapping flexibilityAssociative mappingA block in the Main Memory can be mapped to any line in the Cache Memory available (not already occupied)It is slow, expensiveIt has mapping flexibility


What is the main emphasis of the human genome project?

gene mapping


What are the differences among direct mapping associative mapping and set associative mapping?

The differences among direct mapping and set-associative mapping :Direct mapping : Each line in main memory maps onto a single cache line.Set-associative : Each line in main memory maps onto a small (collection) set of cache line.Direct mapping : A memory block is mapped into a unique cache line, depending on the memory address of the respective block.Set-associative : A memory block is mapped into any of the line of a set. The set is determined by the memory address, but the line inside the set can be any one.dont knowyet


What are the main features of the Mercator project?

Mapping of Earth on a flat surface. ;)


Is it possible to define a java static method inside a main method?

Because, the main method is the starting point of the java program and if we need an object of that class even before the main can be invoked, it is not possible. Hence it is declared static so that the JVM Can acess the main method without having to instantiate that particular class


What actors and actresses appeared in Main Hari - 1940?

The cast of Main Hari - 1940 includes: Hari Shivdasani


Why main method is static?

Main method in java is always static as main method id the only method from where the program execution starts,and as we all know that main method is defined inside a class so JVM needs to make a object of the class to call the method and objects are build inside the main method ,so to execute the main method it has to make objects of the class but objects are build inside main method so that's the reason that main method is static so that JVM can execute the main method without making its object as static members can be called by class anme only