<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Geohuddle</title>
	<atom:link href="https://geohuddle.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://geohuddle.com</link>
	<description>Geospatial A-Where-ness site</description>
	<lastBuildDate>Thu, 08 Jun 2023 15:49:46 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>

<image>
	<url>https://geohuddle.com/wp-content/uploads/2023/04/cropped-location-1-1-32x32.png</url>
	<title>Geohuddle</title>
	<link>https://geohuddle.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Do you GeoJSON?</title>
		<link>https://geohuddle.com/2023/06/do-you-geojson/</link>
		
		<dc:creator><![CDATA[geotutor]]></dc:creator>
		<pubDate>Thu, 08 Jun 2023 14:48:17 +0000</pubDate>
				<category><![CDATA[Geospatial]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[geospatial]]></category>
		<category><![CDATA[gis]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[learn]]></category>
		<category><![CDATA[mapbox]]></category>
		<category><![CDATA[Maps]]></category>
		<guid isPermaLink="false">https://geohuddle.com/?p=160</guid>

					<description><![CDATA[Introduction GeoJSON is a geospatial data interchange format based on JavaScript Object Notation (JSON). It defines several types of JSON objects and the manner in which they are combined to represent data about geographic features, their properties, and their spatial extents. GeoJSON uses a geographic coordinate reference system, World Geodetic System 1984, and units of [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="has-roboto-font-family has-medium-font-size has-custom-font" style="font-family:Roboto"><strong>Introduction</strong></p>



<p class="has-roboto-font-family has-custom-font" style="font-family:Roboto">GeoJSON is a geospatial data interchange format based on JavaScript Object Notation (JSON). It defines several types of JSON objects and the manner in which they are combined to represent data about geographic features, their properties, and their spatial extents. GeoJSON uses a geographic coordinate reference system, World Geodetic System 1984, and units of decimal degrees. A GeoJSON object may represent a region of space (a<strong> Geometry</strong>), a spatially bounded entity (a <strong>Feature</strong>), or a list of Features (a <strong>FeatureCollection</strong>)</p>



<p class="has-rubik-font-family has-custom-font" style="font-family:Rubik"><strong><em>Example</em></strong></p>



<pre class="wp-block-code has-small-font-size" style="font-style:normal;font-weight:400"><code> { "type": "FeatureCollection",
    "features": &#91;
      { "type": "Feature",
        "geometry": {"type": "Point", "coordinates": &#91;102.0, 0.5]},
        "properties": {"prop0": "value0"}
        },
      { "type": "Feature",
        "geometry": {
          "type": "LineString",
          "coordinates": &#91;
            &#91;102.0, 0.0], &#91;103.0, 1.0], &#91;104.0, 0.0], &#91;105.0, 1.0]
            ]
          },
        "properties": {
          "prop0": "value0",
          "prop1": 0.0
          }
        }
       ]
     }</code></pre>



<p class="has-roboto-font-family has-custom-font" style="font-family:Roboto">There a quite a few important points to note in the above example</p>



<ul class="has-roboto-font-family has-custom-font wp-block-list" style="font-family:Roboto">
<li>The order of elements (<strong>coordinates</strong>) must follow <strong>x, y, z order</strong> (<strong>easting, northing, altitude</strong> for coordinates in a projected coordinate reference system, or <strong>longitude, latitude, altitude</strong> for coordinates in a geographic coordinate reference system). Here is a good reference to check who is on which side of the <a href="https://macwright.com/lonlat/" target="_blank" rel="noreferrer noopener">LatLng debate</a></li>



<li>The feature collection can support multiple different geometry types</li>
</ul>



<p class="has-roboto-font-family has-custom-font" style="font-family:Roboto">GeoJSON supports the following geometry types:</p>



<ul class="has-roboto-font-family has-custom-font wp-block-list" style="font-family:Roboto">
<li>Point</li>



<li>LineString</li>



<li>Polygon</li>



<li>MultiPoint</li>



<li>MultiLineString</li>



<li>MultiPolygon</li>



<li>GeometryCollection</li>
</ul>



<p></p>



<p class="has-roboto-font-family has-medium-font-size has-custom-font" style="font-family:Roboto"><strong>Is GeoJSON same as JSON?</strong></p>



<p class="has-roboto-font-family has-custom-font" style="font-family:Roboto">While GeoJSON is a geospatial data interchange format based on JSON but GeoJSON follows a well specified Open data standard. For details read <a href="https://geojson.org/geojson-spec.html" target="_blank" rel="noreferrer noopener">here</a></p>



<p class="has-roboto-font-family has-custom-font" style="font-family:Roboto">JSON because of its simplicity, flexibility and native support in Javascript has become the de-facto standard for the web developers similarly GeoJSON is now the de-facto standard for majority of OGC standards complaint Maps platform and libraries. Let us take a look at some examples</p>



<ol class="has-roboto-font-family has-custom-font wp-block-list" style="font-family:Roboto">
<li><a rel="noreferrer noopener" href="https://leafletjs.com/" target="_blank"><strong>Leaflet</strong></a> &#8211; load geojson <a href="https://leafletjs.com/examples/geojson/" target="_blank" rel="noreferrer noopener">example</a></li>



<li><strong><a href="https://openlayers.org/" target="_blank" rel="noreferrer noopener">Openlayers </a></strong>&#8211; load geojson <a href="https://openlayers.org/en/latest/examples/geojson.html" target="_blank" rel="noreferrer noopener">example</a></li>



<li><a rel="noreferrer noopener" href="https://www.mapbox.com/" target="_blank"><strong>Mapbox</strong></a> &#8211; load geojson data <a href="https://docs.mapbox.com/mapbox-gl-js/example/external-geojson/" target="_blank" rel="noreferrer noopener">example</a></li>



<li><a href="https://developers.google.com/maps/documentation/javascript/importing_data#data" target="_blank" rel="noreferrer noopener"><strong>Google Maps</strong></a> &#8211; geospatial analytics using <a href="https://cloud.google.com/blog/topics/developers-practitioners/using-geojson-bigquery-geospatial-analytics" target="_blank" rel="noreferrer noopener">GeoJSON in BigQuery</a></li>



<li><strong><a href="https://postgis.net/" target="_blank" rel="noreferrer noopener">PostGIS</a> </strong>&#8211; spatial extension for PostgreSQL database. You can store data is GeoJSON objects</li>



<li><strong><a href="http://Mongodb.com/" target="_blank" rel="noreferrer noopener">MongoDB </a></strong>&#8211; you can store geospatial data as&nbsp;<a href="https://www.mongodb.com/docs/v4.4/geospatial-queries/#std-label-geospatial-geojson" target="_blank" rel="noreferrer noopener">GeoJSON</a>&nbsp;objects</li>
</ol>



<p class="has-roboto-font-family has-medium-font-size has-custom-font" style="font-family:Roboto"><strong>Convert your data to GeoJSON</strong></p>



<p class="has-roboto-font-family has-custom-font" style="font-family:Roboto">There are several open source tools for converting other geospatial data formats to GeoJSON, including:</p>



<ul class="has-roboto-font-family has-custom-font wp-block-list" style="font-family:Roboto">
<li><a href="https://www.npmjs.com/package/@mapbox/togeojson">togeojson</a>, a Node package for converting&nbsp;<a href="https://docs.mapbox.com/help/glossary/kml/">KML</a>&nbsp;and&nbsp;<a href="https://docs.mapbox.com/help/glossary/gpx/">GPX</a>&nbsp;(XML formats)</li>



<li><a href="http://www.gdal.org/ogr2ogr.html">ogr2ogr</a>, a vector data conversion tool</li>



<li><a href="http://geojson.io/">geojson.io</a>, a Mapbox developer tool for creating, converting, and editing GeoJSON</li>
</ul>



<p class="has-roboto-font-family has-custom-font" style="font-family:Roboto">Happy Mapping !!!</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How Geospatial Technology is Improving Disaster Response</title>
		<link>https://geohuddle.com/2023/05/how-geospatial-technology-is-improving-disaster-response/</link>
		
		<dc:creator><![CDATA[Pawan Muddu]]></dc:creator>
		<pubDate>Mon, 01 May 2023 16:51:26 +0000</pubDate>
				<category><![CDATA[Climate Change]]></category>
		<category><![CDATA[Earth Observation]]></category>
		<category><![CDATA[Environment]]></category>
		<category><![CDATA[Geospatial]]></category>
		<category><![CDATA[Sustainability]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[disaster management]]></category>
		<category><![CDATA[geography]]></category>
		<category><![CDATA[geospatial]]></category>
		<category><![CDATA[gis]]></category>
		<category><![CDATA[Maps]]></category>
		<category><![CDATA[OSM]]></category>
		<guid isPermaLink="false">https://geohuddle.com/?p=84</guid>

					<description><![CDATA[Disasters over the years, whether man-made or human, have always been a great ordeal for humanity. Over the past few years, disasters have had collateral damage that has scarred humanity&#8217;s psychological and progressive development. Mappers do play an integral part in working towards the adverse effects. As mapping technology has made inroads over the years, [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Disasters over the years, whether man-made or human, have always been a great ordeal for humanity. Over the past few years, disasters have had collateral damage that has scarred humanity&#8217;s psychological and progressive development. Mappers do play an integral part in working towards the adverse effects. As mapping technology has made inroads over the years, disasters have been monitored and analysed. </p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p>GIS has undoubtedly been a tool to prepare, monitor and assess the impacts and magnitudes of disasters so that a disaster is not a foregone conclusion to humanity.</p>
</blockquote>



<p>According to its definition, “Disasters are severe disruptions to the functioning of a community that exceeds its capacity to cope using its resources. Disasters can be caused by natural, artificial, and technological hazards, as well as various factors that influence the exposure and vulnerability of a community (IFRC, 2014).</p>



<p>Natural disasters are large-scale geological or meteorological events that can cause loss of life or property. These types of disasters include Tornadoes and Severe Storms, Hurricanes and Tropical Storms, Floods, Wildfires, Earthquakes, and Drought.</p>



<p>The topic of natural disasters is broad and highly compassing, drawing experts from all disciplines to comprehend the science and methods of coping with the devastating consequences. Given the recent emergence of natural events in the past few decades, large organisations such as the <strong>World Health Organization (WHO)</strong> and the <strong>United Nations</strong> have devoted considerable effort to research and education surrounding natural disasters. The United Nations International Strategy for Disaster Reduction (<strong>UNISDR</strong>), created in 1999 with the mandate of spearheading and coordinating disaster risk reduction, is an example of increased attention to disaster reduction (Prasad &amp; Francescutti, 2016).</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img decoding="async" src="https://cms.accuweather.com/wp-content/uploads/2023/02/freddysatloop.gif?w=632" alt=""/></figure></div>


<p class="has-small-font-size"><em>(A Radar Image of Tropical Cyclone Freddy approaching the coast of Madagascar on February 21<sup>st</sup> 2023, which was coming at a wind speed of 220 km/hr.: Gif Source: AccuWeather Enhanced Real Vue<img src="https://s.w.org/images/core/emoji/15.0.3/72x72/2122.png" alt="™" class="wp-smiley" style="height: 1em; max-height: 1em;" /> satellite)</em></p>



<p class="has-text-align-center"><img fetchpriority="high" decoding="async" width="640" height="480" class="wp-image-101" style="width: 640px;" src="https://geohuddle.com/wp-content/uploads/2023/05/Disaster-1.jpeg" alt="" srcset="https://geohuddle.com/wp-content/uploads/2023/05/Disaster-1.jpeg 567w, https://geohuddle.com/wp-content/uploads/2023/05/Disaster-1-300x225.jpeg 300w" sizes="(max-width: 640px) 100vw, 640px" /></p>



<p class="has-text-align-center has-small-font-size"><em>Damage caused due to the category five storm with more than 1,200 fatalities affecting 6 African nations towards the western part of the Indian Ocean; until now, it is one of the worst cyclones in 2023 by sheer magnitude: </em></p>



<p class="has-text-align-center has-small-font-size"><em>Picture Source: <a href="https://public.wmo.int/en/media/news/tropical-cyclone-freddy-may-set-new-record">Tropical Cyclone Freddy may set new record | World Meteorological Organization (WMO.int)</a></em></p>



<figure class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex">
<figure class="wp-block-image size-large"><img decoding="async" src="https://www.economist.com/cdn-cgi/image/width=834,quality=80,format=auto/media-assets/image/20230211_LDP001.jpg" alt=""/></figure>
</figure>



<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">
<p class="has-text-align-center has-small-font-size"><em>The worst Natural disaster in 2023 was the Turkey-Syria earthquake, a powerful 7.8 Richter scale earthquake in the Levant region that claimed more than 58,000 lives and an economic collateral loss ranging from 10,000 to 50,000: </em></p>



<p class="has-text-align-center has-small-font-size"><em>Picture Source: <a href="https://www.economist.com/leaders/2023/02/08/the-devastating-earthquakes-in-turkey-and-syria-might-upend-politics-too">The devastating earthquakes in Turkey and Syria might upend politics, too | The Economist</a></em></p>
</div></div>



<p>Man-made disasters have an element of human intent, negligence, or error involving a failure of an artificial system, as opposed to natural disasters resulting from natural hazards. Such artificial disasters are crime, arson, civil disorder, terrorism, war, biological/chemical threat, cyber-attacks, etc. (EMMC, 2019)</p>



<p>There is also another definition to it. Man-made Disasters are events which are caused by man, either intentionally or by accident, which can directly or indirectly cause severe threats, either directly or indirectly, to public health and well-being. Because their occurrence is unpredictable, man-made disasters pose an incredibly challenging threat that must be dealt with through vigilance and proper preparedness and response. Information on the primary sources of man-made disasters has been provided here to help educate the public on their cause and effects related to emergency planning. (Stallings, 1998).</p>



<p>They are classified into three types, namely <strong>Sociological</strong>, <strong>Technological </strong>and <strong>Hazardous material</strong>.</p>



<p>Sociology in disasters ranges from the ravages of war, civil disorder, communal violence, terrorism etc. At the same time, technological hazards deal with Industrial Hazard remnants to the ones like the Bhopal Gas tragedy. Other technological disasters like structural building collapse, Power outages, and Forest fires also fall under this category.</p>



<p>The Chornobyl disaster in the late 80s is considered an example of the worst catastrophe due to hazardous material.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img decoding="async" src="https://geohuddle.com/wp-content/uploads/2023/05/Chernobyl_Disaster.jpg" alt="Chernobyl" class="wp-image-104" width="367" height="474" srcset="https://geohuddle.com/wp-content/uploads/2023/05/Chernobyl_Disaster.jpg 278w, https://geohuddle.com/wp-content/uploads/2023/05/Chernobyl_Disaster-232x300.jpg 232w" sizes="(max-width: 367px) 100vw, 367px" /></figure></div>


<p class="has-text-align-center has-small-font-size"><em>The Chornobyl Disaster of 1986 is the worst radioactive manmade disaster: Picture Source: Wikipedia</em></p>



<p class="has-text-align-center"><img decoding="async" width="480" height="480" class="wp-image-110" style="width: 480px;" src="https://geohuddle.com/wp-content/uploads/2023/05/S2L2A-225006341402599-timelapse.gif" alt="Sentinel Hub EO"></p>



<p class="has-text-align-center has-small-font-size"><em>Using Burned ratio Index, we can assess the damage of forest fires caused during the Russia-Ukraine War, a kind of man-made disaster using Earth Monitoring technologies: Gif Source: Sentinel Hub EO Browser</em></p>



<p></p>



<h3 class="has-text-align-left wp-block-heading">Disaster Management Stages and the Use of Earth Observation Technology</h3>


<div class="wp-block-image">
<figure class="aligncenter size-large is-resized"><img loading="lazy" decoding="async" src="https://www.rmsi.com/blog/wp-content/uploads/2018/08/four-pillars-of-disaster-management.jpg" alt="" width="439" height="479"/></figure></div>


<p class="has-text-align-center has-small-font-size"><em>In this picture, the disaster Management cycle: Picture Source: <a href="https://www.rmsi.com/blog/2018/07/role-of-gis-in-disaster-management/">Role of GIS in Disaster Management (rmsi.com)</a></em></p>



<p>There are four major stages which start with Mitigation. Phase 1 is mitigation towards the preparedness phase for a disaster event. Then likewise, we head towards response and recovery.</p>



<p>The “<strong>mitigation</strong>” phase occurs before a disaster takes place. Here, an organisation will protect people and property while decreasing the risks and consequences of a disaster. The main goal is to reduce vulnerability to disaster impacts (such as property damage, injuries, and loss of life) (Meaghan Kelly, 2020).</p>



<p>The “<strong>preparedness</strong>” phase also occurs before a disaster takes place. Here, an organisation attempts to understand how a disaster might affect overall productivity and the bottom line. The organisation will also provide appropriate education while putting preparedness measures into place. (Meaghan Kelly, 2020).</p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="640" height="255" class="wp-image-108" style="width: 640px;" src="https://geohuddle.com/wp-content/uploads/2023/05/disaster-1-1.png" alt="OpenQuake Map Viewer - Global Seismic Hazard Map" srcset="https://geohuddle.com/wp-content/uploads/2023/05/disaster-1-1.png 655w, https://geohuddle.com/wp-content/uploads/2023/05/disaster-1-1-300x120.png 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>



<p class="has-text-align-center has-small-font-size"><em>A Seismic Hazard Map of South Asia And the Middle East with the Intensity ranging from 0.00 to 1.50 PGA (g): Map Source: <a href="https://maps.openquake.org/map/global-seismic-hazard-map/#4/24.01/78.05">OpenQuake Map Viewer &#8211; Global Seismic Hazard Map</a></em></p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="640" height="247" class="wp-image-112" style="width: 640px;" src="https://geohuddle.com/wp-content/uploads/2023/05/disaster-1-2.png" alt="normalised construction cost in square meters" srcset="https://geohuddle.com/wp-content/uploads/2023/05/disaster-1-2.png 935w, https://geohuddle.com/wp-content/uploads/2023/05/disaster-1-2-300x116.png 300w, https://geohuddle.com/wp-content/uploads/2023/05/disaster-1-2-768x297.png 768w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>



<p class="has-text-align-center has-small-font-size"><em>The Global Seismic Risk Map of the Asia Pacific shows interactive map imagery based on normalised construction cost in square meters. They are many areas in the Himalayan and Tibetan that have normalised construction costs of greater than 25000 Average Annual loss per square meter; these maps can help with potential mitigation impacts for construction-related activity which would be vulnerable during the earthquakes</em></p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="640" height="249" class="wp-image-114" style="width: 640px;" src="https://geohuddle.com/wp-content/uploads/2023/05/disaster-1-3.png" alt="Earthquakes " srcset="https://geohuddle.com/wp-content/uploads/2023/05/disaster-1-3.png 934w, https://geohuddle.com/wp-content/uploads/2023/05/disaster-1-3-300x117.png 300w, https://geohuddle.com/wp-content/uploads/2023/05/disaster-1-3-768x299.png 768w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>



<p class="has-text-align-center has-small-font-size"><em>(This is Global Exposure Maps of Earthquakes talks about the exposure of several buildings to an earthquake, What is depicted here is that there is over 250.0 K building exposed, which are in potential seismic zone areas in the Asia – Pacific region, which is critical to mitigation and preparedness: Source: <a href="https://maps.openquake.org/map/global-exposure-map/#6/29.162/86.554">https://maps.openquake.org/map/global-exposure-map/#6/29.162/86.554</a>)</em></p>



<p>Most mitigation actions can prioritise locations where crises must be determined prior to any disasters.</p>



<p>What damage may occur based on the expected magnitude of an earthquake, characteristics of soils, and other geologic data? In the case of an earthquake, what developments are within the primary impact zone of earthquake faults? What facilities require reinforced construction or relocation? What facilities are in high-hazard areas (key bridges, primary roads, freeway overpasses, hospitals, hazardous material storage facilities, etc.)?(Johnson, 2000).</p>



<p><strong>Preparedness </strong>would include actual emergencies. From answering where Fire stations are to be located and the relative response time that is expected, Planning evacuation routes from earthquake rubble to inland locations of coastal inhabitants during cyclones or tsunamis.</p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="480" height="480" class="wp-image-116" style="width: 480px;" src="https://geohuddle.com/wp-content/uploads/2023/05/S2L2A-660376064893136-timelapse.gif" alt="Russian Artillery shelling"></p>



<p class="has-text-align-center has-small-font-size"><em>Terrain that caught forest fire during Russian Artillery shelling near Kyiv during the initial months of Russia – Ukraine War: Gif Source: Sentinel Hub</em></p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="640" height="305" class="wp-image-117" style="width: 640px;" src="https://geohuddle.com/wp-content/uploads/2023/05/disaster-2-1.png" alt="Cyclone path on Madagascar Island" srcset="https://geohuddle.com/wp-content/uploads/2023/05/disaster-2-1.png 934w, https://geohuddle.com/wp-content/uploads/2023/05/disaster-2-1-300x143.png 300w, https://geohuddle.com/wp-content/uploads/2023/05/disaster-2-1-768x366.png 768w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>



<p class="has-text-align-center has-small-font-size"><em>Real Time Maps can be used for preparing evacuation areas during a cyclone by tracking its projected path as seen from Tropical Cyclone path on Madagascar Island with Wind speeds exceeding 195 kilometres per hour. This is important in the response phase: Map Imagery Source: Zoom Earth</em></p>



<p>The “response” phase occurs in the immediate aftermath of a disaster. Organisations and well-being largely depend on preparedness levels before disaster strikes. Organizations must focus on threats to people, property, and business. (Meaghan Kelly, 2020).</p>



<p>GIS can provide one of the primary components for computer-aided dispatch (CAD) systems. Emergency response units based at fixed locations can be selected and routed for emergency response. The closest (quickest) response units can be selected, routed, and dispatched to an emergency once the location is known. (Johnson, 2000)</p>



<p>The “<strong>recovery</strong>” phase takes place&nbsp;<strong>after</strong>&nbsp;a disaster. This phase is the restoration of an organisation following any disaster impacts. By this time, the organisation has achieved at least some physical, environmental, economic, and social stability.</p>



<p>A disaster’s recovery phase can last anywhere from&nbsp;<strong>six months to a year</strong>&nbsp;(or even longer, depending on the severity of the incident). (Meaghan Kelly, 2020).</p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="480" height="480" class="wp-image-119" style="width: 480px;" src="https://geohuddle.com/wp-content/uploads/2023/05/S2L2A-1581850363650367-timelapse.gif" alt="Floods in Assam 2022"></p>



<p class="has-text-align-center has-small-font-size"><em>Flood monitoring becomes a critical component in response and recovery measures as Sentinel Timelapse monitors the extent of the inundated areas during the Floods in Assam 2022 at Silchar using NDWI Indices, which was a Natural cum Man Made disaster: Gif Source: Sentinel Hub</em></p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="360" height="348" class="wp-image-130" style="width: 360px;" src="https://geohuddle.com/wp-content/uploads/2023/05/disaster-4-1.png" alt="Earthquake in New Zealand" srcset="https://geohuddle.com/wp-content/uploads/2023/05/disaster-4-1.png 437w, https://geohuddle.com/wp-content/uploads/2023/05/disaster-4-1-300x290.png 300w" sizes="auto, (max-width: 360px) 100vw, 360px" /></p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="300" height="199" class="wp-image-131" style="width: 300px;" src="https://geohuddle.com/wp-content/uploads/2023/05/disaster-4-2.png" alt="TOC Earthquake" srcset="https://geohuddle.com/wp-content/uploads/2023/05/disaster-4-2.png 472w, https://geohuddle.com/wp-content/uploads/2023/05/disaster-4-2-300x199.png 300w" sizes="auto, (max-width: 300px) 100vw, 300px" /></p>



<p class="has-text-align-center has-small-font-size"><em>For Earthquake Response and Recovery, it is essential to monitor the Felt responses of aftershocks of the earthquake as shown by the Felt report of the recent February 2023 earthquake in New Zealand; Map Source: Geonet</em></p>



<h3 class="has-text-align-left wp-block-heading">Organizations using GIS in Disaster Management</h3>



<p>One of the prominent organizations to monitor Disaster and Emergency Management is Company Planet. Planet’s high-cadence, high-resolution satellite monitoring capabilities and image archive provide ongoing regional coverage, enabling disaster risk mitigation, rapid response, and informed recovery. New Light Technologies (NLT), a leader in satellite-derived analytics and delivery of real-time decision-support systems for emergency management, works directly with FEMA to integrate near-daily Planet Scope imagery into its disaster response program. NLT and Planet help FEMA assess damages and plan recovery following incidents such as fires, hurricanes, and tornadoes. Planet and NLT rapidly deliver imagery through API and cloud-based platforms to streamline data access and integration with disaster response systems and commercial software platforms such as Esri ArcGIS and Google Earth Engine. (Disaster &amp; Management, 2022).</p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="640" height="202" class="wp-image-121" style="width: 640px;" src="https://geohuddle.com/wp-content/uploads/2023/05/disaster-2-2.png" alt="Canyon fire " srcset="https://geohuddle.com/wp-content/uploads/2023/05/disaster-2-2.png 977w, https://geohuddle.com/wp-content/uploads/2023/05/disaster-2-2-300x95.png 300w, https://geohuddle.com/wp-content/uploads/2023/05/disaster-2-2-768x242.png 768w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>



<p class="has-text-align-center has-small-font-size"><em>In the United States, during the mega-drought, New Mexico’s Calf Canyon fire was the largest fire in the History of the State: Imagery Source: Planet eBook</em></p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="640" height="365" class="wp-image-123" style="width: 640px;" src="https://geohuddle.com/wp-content/uploads/2023/05/disaster-2-3.png" alt="Sewages in the UK" srcset="https://geohuddle.com/wp-content/uploads/2023/05/disaster-2-3.png 846w, https://geohuddle.com/wp-content/uploads/2023/05/disaster-2-3-300x171.png 300w, https://geohuddle.com/wp-content/uploads/2023/05/disaster-2-3-768x438.png 768w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>



<p class="has-text-align-center has-small-font-size"><em>Satellite imagery in which each pixel translates to 3.7 m2 on the ground. This could be used to detect organic matter from sewage overspills and their downstream impact, which is used to monitor Sewages in the UK by the Planet Satellite Imageries: <a href="https://content.planet.com/c/monitoring-sewage">https://content.planet.com/c/monitoring-sewage</a></em></p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="640" height="275" class="wp-image-124" style="width: 640px;" src="https://geohuddle.com/wp-content/uploads/2023/05/disaster-2-4.png" alt="coast of Nicaragua" srcset="https://geohuddle.com/wp-content/uploads/2023/05/disaster-2-4.png 647w, https://geohuddle.com/wp-content/uploads/2023/05/disaster-2-4-300x129.png 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>



<p class="has-text-align-center has-small-font-size"><em>Damage assessment also can be made through Planet high-resolution Imagery to assess the Impact of Hurricane Iota in a small village community on the coast of Nicaragua: Picture Source : (Disaster &amp; Management, 2022</em>)</p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="480" height="480" class="wp-image-134" style="width: 480px;" src="https://geohuddle.com/wp-content/uploads/2023/05/S2L2A-586198456741850-timelapse.gif" alt="Drought monitoring"></p>



<p class="has-text-align-center has-small-font-size"><em>Planet has just acquired Sinergise, a Slovenian based Satellite Cloud-based repository platform; in this Gif, we are observing Drought monitoring areas near Nairobi, Kenya, in February 2023: Gif Source: Sentinel Hub</em></p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="640" height="337" class="wp-image-125" style="width: 640px;" src="https://geohuddle.com/wp-content/uploads/2023/05/disaster-3-1.png" alt="Emergency Management Operation" srcset="https://geohuddle.com/wp-content/uploads/2023/05/disaster-3-1.png 789w, https://geohuddle.com/wp-content/uploads/2023/05/disaster-3-1-300x158.png 300w, https://geohuddle.com/wp-content/uploads/2023/05/disaster-3-1-768x405.png 768w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>



<p class="has-text-align-center has-small-font-size"><em>(Real Time Emergency Management Operation logistic scheme representation of ESRI, another pioneer organisation in Disaster Management using GIS technologies: Source: ESRI)</em></p>



<p>The ESRI Emergency Management team which a fully integrated GIS system that enables the disaster management teams for situational awareness at all points during the disaster response stage.</p>



<h3 class="wp-block-heading">Humanitarian Mapping and OSM&nbsp;</h3>



<p>When a powerful earthquake of 7.8 Richter scale struck the Levant region (Syria and Turkey), the Asia Pacific Open Mapping Hub used the Humanitarian Open Street Maps interface.</p>



<p>They were established in early 2021 and have extensively mapped in 25 different countries; they also provide financial and technical support to massively scale local edits on OpenStreetMap (OSM)</p>



<p>They are now actively working in Syria to map tasks in Aleppo and the surrounding regions.</p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="640" height="408" class="wp-image-127" style="width: 640px;" src="https://geohuddle.com/wp-content/uploads/2023/05/disaster-3-2.png" alt="OSM" srcset="https://geohuddle.com/wp-content/uploads/2023/05/disaster-3-2.png 667w, https://geohuddle.com/wp-content/uploads/2023/05/disaster-3-2-300x191.png 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>



<p class="has-text-align-center has-small-font-size"><em>( Image Source: The Asia-Pacific Open Mapping Hub affiliated with HOT have mapping using the HOT interface since 2021 and has mapped 25 countries so far that are prone to disaster: Picture Source: </em><a href="https://stories.hotosm.org/ap-homepage">https://stories.hotosm.org/ap-homepage</a>)</p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="640" height="367" class="wp-image-128" style="width: 640px;" src="https://geohuddle.com/wp-content/uploads/2023/05/disaster-3-3.png" alt="Rescue Association" srcset="https://geohuddle.com/wp-content/uploads/2023/05/disaster-3-3.png 487w, https://geohuddle.com/wp-content/uploads/2023/05/disaster-3-3-300x172.png 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>



<p class="has-text-align-center has-small-font-size"><em>(In this Image, Open Street maps data that Yer Cizenler NGO is mapping is being used by AKUT Search and Rescue Association for helping and reaching out to the inhabitant. Source: <a href="https://www.facebook.com/YerCizenler">https://www.facebook.com/YerCizenler</a>).</em></p>



<p></p>



<p class="has-medium-font-size"><strong>References:</strong></p>



<p>Disaster, P. F. O. R., &amp; Management, E. (2022). <em>Planet for Disaster &amp; Emergency Management</em>. 1–19.</p>



<p>EMMC. (2019). <em>Man-Made Disaster | Monroe County, FL &#8211; Official Website</em>. https://www.monroecounty-fl.gov/904/Man-Made-Disaster</p>



<p>IFRC. (2014). <em>What is a disaster? &#8211; IFRC</em>. http://www.ifrc.org/en/what-we-do/disaster-management/about-disasters/what-is-a-disaster/</p>



<p>Johnson, R. (2000). GIS Technology for Disasters and Emergency Management. <em>Systems Research</em>, <em>May</em>, 7. http://www.geo.umass.edu/courses/geo250/disastermgmt.pdf</p>



<p>Meaghan Kelly. (2020). 4 Phases Of Disaster Management Explained (The Easy Way). In <em>AkitaBox.com</em> (pp. 1–10).</p>



<p>Prasad, A. S., &amp; Francescutti, L. H. (2016). Natural Disasters. In <em>International Encyclopedia of Public Health</em> (Second Edi, Vol. 5). Elsevier. https://doi.org/10.1016/B978-0-12-803678-5.00519-1</p>



<p>SAMHSA. (2022). Types of Disasters &#8211; Natural and Human-Caused Disasters | SAMHSA. In <em>Substance Abuse and Mental Health Services Administration (SAMHSA)</em>. https://www.samhsa.gov/find-help/disaster-distress-helpline/disaster-types</p>



<p>Stallings, R. A. (1998). Man-made Disasters. In <em>International Journal of Mass Emergencies &amp; Disasters</em> (Vol. 16, Issue 2, pp. 225–225). https://doi.org/10.1177/028072709801600210</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>What is Geospatial Technology?</title>
		<link>https://geohuddle.com/2023/04/what-is-geospatial-technology/</link>
		
		<dc:creator><![CDATA[Pawan Muddu]]></dc:creator>
		<pubDate>Mon, 10 Apr 2023 10:46:47 +0000</pubDate>
				<category><![CDATA[Geospatial]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[geography]]></category>
		<category><![CDATA[geospatial]]></category>
		<category><![CDATA[Maps]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[What is GIS]]></category>
		<guid isPermaLink="false">https://geohuddle.com/?p=27</guid>

					<description><![CDATA[Without geography, you are nowhere Jimmy Buffet It has always been a human endeavor to know the location of where a person is placed. From the Primitive times of Ancient Greeks, Herodotus coined the inhabited world as “Okiolumene” maps towards the age of explorations. Mercator maps gained popularity when exploration of the new world paved [&#8230;]]]></description>
										<content:encoded><![CDATA[
<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="has-text-align-center has-georgia-font-family has-custom-font" style="font-size:32px;font-family:Georgia"> <strong><a href="https://www.quora.com/What-does-without-geography-you-are-nowhere-mean">Without geography, you are nowhere</a> </strong></p>



<p class="has-text-align-center"> </p>



<p class="has-text-align-center"><em>Jimmy Buffet</em></p>
</blockquote>



<p class="has-open-sans-font-family has-custom-font" style="font-family:Open Sans;font-size:18px">It has always been a human endeavor to know the location of where a person is placed. From the Primitive times of Ancient Greeks, Herodotus coined the inhabited world as “Okiolumene” maps towards the age of explorations. Mercator maps gained popularity when exploration of the new world paved the way when the Naval ships used those maps. Maps which post-renaissance paved the way for European Colonization of most parts of the world.</p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" src="https://lh4.googleusercontent.com/fF4f1OjSlF3Bir9C4dicI03nKmWr67PD6oTkWKwrLkJ8BcgRmeC2tFdjtiyEn7N4UZk8N52KiANIMXO17dbwBxqfwiY7bbki8vR5cvA1YVa2CRdoxH32GYGxSNyk_OMXo7UARy6t5H79ceTvsF3K0JW9NKaSsViE" width="624" height="377"></p>



<p class="has-text-align-center" style="font-size:14px"><strong>In the picture, the earliest maps of Ancient Greek Historian Herodotus</strong></p>



<p class="has-text-align-center" style="font-size:12px"><em>Picture Source: <a href="https://greekreporter.com/2022/04/01/map-of-world-as-herodotus-father-of-history-knew-it/">Map of the World as Herodotus, The Father of History, Knew It (greekreporter.com</a>)</em></p>



<p class="has-open-sans-font-family has-custom-font" style="font-family:Open Sans">Modern-day digital maps on smartphones have aided customers with routing guidance through GPS devices, which took much work to fathom during the wireless age. Maps certainly have come a long way from vast paper drawings towards fingertips movements on a smartphone device; behind this idea is the concept of GIS (Geographical Information System) that answers two vital questions: Where? And What?</p>



<p class="has-open-sans-font-family has-custom-font" style="font-family:Open Sans">It is hard to define it since it encompasses many elements comprehensively. Still, its closest definition in the true sense has been made by ESRI and National Geographic.</p>



<p class="has-open-sans-font-family has-custom-font" style="font-family:Open Sans">The National Geographic Society classified it as a geographic information system (GIS), a computer system for capturing, storing, checking, and displaying data related to positions on Earth’s surface. GIS can show many data on a map, such as streets, buildings, and vegetation. This enables people to see patterns and relationships more easily. (<em>GIS (Geographic Information System)</em>, n.d.).</p>



<p class="has-open-sans-font-family has-custom-font" style="font-family:Open Sans">Another Prominent Map Software organization ESRI defined it as “A geographic information system (GIS) is a system that creates, manages, analyses, and maps all types of data. GIS connects data to a map, integrating location data (where things are) with descriptive information (what things are like there). This provides a foundation for mapping and analysis in science and almost every industry. GIS helps users understand patterns, relationships, and geographic context. The benefits include improved communication and efficiency and better management and decision-making (esriuk, 2019).</p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="117" height="117" src="https://lh5.googleusercontent.com/YBt7FKzQ4nI_j99KAAlZkJjLbqs90B9l8hbchcA01r962JPCKpq44_Z44rKNpqzPlOZ_d0TMQJ6IRk3fR_90Oq8B8DMYiuhYQ-70qezmD9jYZaDBrNliTTYKSwdPbGl6ZfFyMIeE8u5PgDmCQNb2xfz19qg4XFG-"><img loading="lazy" decoding="async" width="132" height="121" src="https://lh3.googleusercontent.com/Npmsh--Ta-MQGEsg9Etb_JeIwGw5nDyMK-DnEdAbk5qaVJN5ctU3vPgEOBHKI4EKRb4fQTebRqGvQSlScC_l87Ub5V6uv8zBsqOFqxlSSB6Fo38pY1uVQxGzwXVx1O_PgKJpr0QJkbN3OlnDq7Djl6A5vS-bJoOG"></p>



<p class="has-text-align-center has-open-sans-font-family has-custom-font" style="font-family:Open Sans">(The Concept of GIS fuses two elements of Attributes and Location)</p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="624" height="332" src="https://lh3.googleusercontent.com/3rfXKOljPXXIfd9tdvKAcsdU1k_azRVZWUYEowXKUNky6TvrBAoICj0KCtZRdNmv2e_VIcI8zQt9z_0dddYXbbS5Y_pfuSRyKFHXJoLYBzvxxQTrq3gmA6xX0wSqDB8Wsl2sXN521Z1Esb3am8jKNuWf1KYCHXMy" alt="A picture containing graphical user interface

Description automatically generated"></p>



<p class="has-text-align-center" style="font-size:14px"><strong>In this picture, an excellent example of Attribute and Location is taken from a simple Google Earth Image of the Taj Mahal: Location element would be Latitude: 27°10&#8217;28.52&#8243;N Longitude: 78° 2&#8217;32.50&#8243;, Elevation: 631 feet, and the Attribute Element will be Taj Mahal and its relevant website tajmahal.gov.in along with the phone number of the tourist Centre would be its attribute element</strong></p>



<p class="has-text-align-center" style="font-size:12px"><em>Imagery Source: Google Earth Pro</em></p>



<p class="has-open-sans-font-family has-custom-font" style="font-family:Open Sans">GIS can use any information that includes location. The location can be expressed in many ways, such as latitude and longitude, address, or ZIP code. Many different types of attribute information can be compared using GIS. The system can include data about people, such as population, income, or education level. It can consist of information about the landscape, such as the location of streams, different kinds of vegetation, and different kinds of soil. It can include information about the sites of factories, farms, and schools or storm drains, roads, and electric power lines. (<em>GIS (Geographic Information System)</em>, n.d.).</p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="449" height="397" src="https://lh6.googleusercontent.com/zIXjAZdaxj5mKJHqhNJN8ihcAb5KDENz1p4bHhk1jhn1UahlktarTuYCbGsG-w8F0YuOdw-cbaRQuteyMvU47dgj7kKCAGaXfVZA3Fjuhbz9SdWwPjLMTRB7JiOK-wv2tM5dCvzBT68P2DxfNMKm-uTLq0UzQF4W"></p>



<p class="has-text-align-center" style="font-size:12px;font-style:normal;font-weight:400">(As shown in this Image, Geographic Information Map is a combination of many-layered datasets:&nbsp; Picture Source: <a href="https://images.nationalgeographic.org/image/upload/v1638886493/EducationHub/photos/gis.jpg">gis.jpg (1024×905) (nationalgeographic.org)</a>)</p>



<p></p>



<h2 class="wp-block-heading">Short History of GIS</h2>



<p class="has-text-align-center"><em><img loading="lazy" decoding="async" width="415" height="305" src="https://lh6.googleusercontent.com/rG-28pYVdHVHe6u0Nk6TE88fEW40PivPB_daigo6M2dYMP2dC-T2YtVlnVaTatF1CCmTjJvgrBLMttsYsFeamLPbDj23UKvSuaOdc0Sj-XnBZcvxIAhL0RWs6su4GxYgZOg2qqz2GMwWsNoztSIMBKc"></em></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="has-georgia-font-family has-custom-font" style="font-family:Georgia;font-size:20px"><strong>The early days of GIS were very lonely. No one knew what it meant</strong></p>
<cite><em>Roger Tomlinson (Canadian Geographer considered to be the founder of GIS)</em></cite></blockquote>



<p></p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="624" height="351" src="https://lh6.googleusercontent.com/21EezYsBw967_5oUn2e6Iachs8ngArNSpbaCBAvBQ0D8drK7l4cb5CPfnvt4UtTCOqFzZ6o4KIqFYxzgePE7VBKAKeflbRUdZ1FFqq-EkVXL-8eYfd2NofPDIxaSXSFSwaOi8fDKp2gRp5xopVtJV5dTde7vjDvo" alt="A picture containing diagram

Description automatically generated"></p>



<p class="has-text-align-center">(In this picture taken, a brief timeline of the evolution of GIS: Source (<em>History and Development of GIS</em>, n.d.)</p>



<p class="has-text-align-left has-open-sans-font-family has-custom-font" style="font-family:Open Sans">Although making maps was done eons time, the concept of layered mapping to provide Geospatial Information was first traced by John Snow’s Cholera Map of 1854 with the City of London suffering from the Pandemic; John Snow started Mapping Locations during the outbreak of cholera and found viable proximity to the city roads, residential or commercial properties and water lines of that time.</p>



<p class="has-text-align-left has-open-sans-font-family has-custom-font" style="font-family:Open Sans">However, for the next 100 years, sieve mapping and paper maps became prominent within various thematic disciplines. It was not until 1960 when an employee of the Canadian Government, Roger Tomlinson, created the first layered map digitally of the Canadian Landcover. This was undoubtedly the age of pioneering for the field, and <strong>Roger Tomlinson is considered the Father of GIS.</strong>&nbsp;</p>



<p class="has-text-align-left has-open-sans-font-family has-custom-font" style="font-family:Open Sans">Many commercial establishments picked up from where Roger Tomlinson started a layered approach Mapping, including organizations like ESRI and commercially propagated the discipline of GIS through their Properties of ArcMap.</p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="624" height="468" src="https://lh4.googleusercontent.com/9aN2KCnBoWIMIJKatnK4dbpasWQl7PYXzt68u2xLN4c9LmBh3XITrjK7TVMAAQVHe04_bvR1dbF0OU-qbD80y3s78hoeOyV_TCjNkIoZoOKZm539zZj7nYeWOYAAWU2f0welSeEYYHQvH580da0QYSaHzDeJCTLU"></p>



<p class="has-text-align-center" style="font-size:14px"><strong>In this picture, a representation of John Snow’s Cholera Map where there could track the cholera outbreak due to an infected water pump</strong></p>



<p class="has-text-align-center" style="font-size:12px"><em>Picture source: <a href="https://media.nationalgeographic.org/assets/photos/000/276/27636.jpg">27636.jpg (990×743) (nationalgeographic.org)</a>)</em></p>



<p class="has-text-align-left has-open-sans-font-family has-custom-font" style="font-family:Open Sans">The 90s marked a cornerstone era of locational Intelligence as the American GNSS (Global Navigational Satellite Systems) was declassified by President Clinton, which paved the way for commercial GPS technology with Portable Navigational devices within Locomotive vehicles. Locational navigational companies like TomTom, Garmin, and NAVTEQ were thriving.</p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="624" height="351" src="https://lh3.googleusercontent.com/7bs29r-sHdBWc35V87tcwqNl9AvuFZdgkrhjBgzb5EH7qYEATqhVg3GBBijW-caPQmqt_2Fc5D9pDZQDRfLjRPCnUO02OClITnrjmAzlpX66kXAPULbHYodoIvmdyZxqvAw9ZwJK0BVKJsNvAMXgLIPt3NwyaHfz"></p>



<p class="has-text-align-center" style="font-size:14px"><strong>Many Portable Navigational devices became famous as the American GNSS, better known as GPS, became declassified</strong></p>



<p class="has-text-align-center" style="font-size:12px"><em>Picture source: Getty Images</em></p>



<p class="has-open-sans-font-family has-custom-font" style="font-family:Open Sans">After 2010 however, the age when users of Geospatial data started to demand the need for greater access to Geospatial Information when smartphone devices became the talk of the town, many mapping platforms like Google Maps, Bing Maps and Open Street Maps became easily accessible to edit without any lucrative payment to access its geospatial information which during the majority of the GIS history was a norm to deal with.</p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" src="https://lh6.googleusercontent.com/FFt5ZWsfHenPW5Up20BxFPfqHcVArMcSsq_SO7S915kA0y5bZA7s4x3IgUH7qzP_Tkb1U-TZoK6A_GY58a38FZOqdJ03c0ciI43hqKYaPfl8I2H5-SrtLFdlATFNEP_R1sOdPMs_gdIejWixfG99ecmkrepBvebS" width="624" height="299"></p>



<p class="has-text-align-center" style="font-size:14px"><strong>In this picture: This is Humanitarian Open Street Maps account, where we map building footprints in Syria. By building footprints, humanitarian organizations and first responders can estimate building damages and the population density in these areas: </strong></p>



<p class="has-text-align-center" style="font-size:12px"><em>Source: <a href="http://hotosm.org/">http://hotosm.org/</a>&nbsp;</em></p>



<h2 class="wp-block-heading">Forms of Digital Data</h2>



<p class="has-text-align-center"><strong><img loading="lazy" decoding="async" width="611" height="358" src="https://lh5.googleusercontent.com/a2epGkVJJbt4v2XcZYIgYWG6bDxgk3vz2obgP14MTA_bK75W8wec-nafWKcm527tgieS1n6sx8pFh0sczDGmk07jPhFgLymGdmXQFQj95RU_ybGUiaXes5ylZ8u-xs58qyIlP9sjpLzNFJgFFx1iQIRRtDHLWeCF"></strong></p>



<p class="has-text-align-center" style="font-size:14px"><strong>(Data in GIS is stored in a Geodatabase, also called a Spatial Database; the data structures would include geometric vector properties like Point, Line and Polygon and Satellite or other remote sensing imageries in a pixel format called Raster files which are in turn stored in a SQL based Attribute table: </strong></p>



<p class="has-text-align-center" style="font-size:12px"><em>Picture source :(History and Development of GIS, n.d.)</em></p>



<p class="has-text-align-left has-open-sans-font-family has-custom-font" style="font-family:Open Sans">GIS data is modelled into two formats Vector data and Raster data. Vector data is the most common type of GIS data. Most data loaded into a GIS software program is in vector data. Vector data represents geographic data symbolized as points, lines, or polygons. (Dempsey Caitlin, 202 C.E.)</p>



<p class="has-text-align-left has-open-sans-font-family has-custom-font" style="font-family:Open Sans">Raster data represents geographic data as a matrix of cells containing an attribute value. While the area of different polygon shapes in a data set can differ, each cell in a raster data collection is the same cell. The size of the area in the real world that each cell represents is known as the spatial resolution (Dempsey Caitlin, 202 C.E.).</p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="655" height="368" src="https://lh6.googleusercontent.com/n_KFb8sbjyqpI6nSNpLhz5QDppJMWnwU6GVoAC6CvmjWYRJeh51iJFNEcythrk7WdZqByWLHcu_QQV4gSKMC7rfzuPvP46NB7LkxoikaiXCk7EdsM__kT3KpU12-gHWvgvrRObybw8xyc7eXCX6Y_GfxZ7OOgX5p"></p>



<p class="has-text-align-center" style="font-size:14px"><strong>In this Image shows the representation of features in Points, Lines and Polygons; Individual Trees are represented in Point features, Settlements are described as Area features and rivers and roads are defined as Linear features</strong></p>



<p class="has-text-align-center" style="font-size:12px"><em>Picture Source: QGIS.org</em></p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="624" height="582" src="https://lh6.googleusercontent.com/1GVkIhxxWfg3jRMnBI8sjrq6dqc6PfonEBHPtqqo9PG9R53Bnha_Zj9fIyZIVp10c0EGGaK-_y9N6ojehE5gwKWeSSELDCmaf820nK0u9qzPAmbnwgSJnc3c7Cbr7rjjcRzH_IMjs3YSn4fUdMALJebiMyzPyjNb" alt="Diagram

Description automatically generated"></p>



<p class="has-text-align-center" style="font-size:14px"><strong>A Representation of Raster data with color gradients</strong></p>



<p class="has-text-align-center" style="font-size:12px"><em>Picture source: <a href="https://datacarpentry.org/organization-geospatial/01-intro-raster-data/">Introduction to Raster Data – Introduction to Geospatial Concepts (datacarpentry.org</a>)</em></p>



<h2 class="wp-block-heading">Types of Digitization</h2>



<p class="has-open-sans-font-family has-custom-font" style="font-family:Open Sans">The most popular form of converting Geographic data into digital form is digitization. Digitization involves tracing vector spatial data objects like lines, points, and polygons. Digital data is typically represented as numbers or symbols such as texts or graphics; The process involves converting Analogue images into digital ones.&nbsp;</p>



<p class="has-open-sans-font-family has-custom-font" style="font-family:Open Sans">There are various types of digitization methods; <strong>Manual Digitization</strong> is a process in which an image is copied manually to create a digital file. It is done with the help of digitizing tablets with an instrument known as the puck. The highest accuracy comes through this method.</p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="400" height="242" src="https://lh5.googleusercontent.com/Z3P5Q51WNxlwNzjbZ1LXe6CZbd7zXpxi33naAuWaXlep2mCKzNOQZdrKDtDfessnTusE_6IoEwH1V3bxuUgrJmPhdCPi4pOL5YSsbaYozI440fzRHKrTXAWKQR6Q5JW5u2QA0SOWH0GhgMgUdqD5fML8pH4pLrCd"></p>



<p class="has-text-align-center" style="font-size:14px"><strong>Shown in this Image is the process of Manual digitization with a tablet using a puck instrument on a digital tablet, while on the image on the right, raster digitization using a scanner</strong></p>



<p class="has-text-align-center" style="font-size:12px"><em>Picture source: USGS</em></p>



<p class="has-open-sans-font-family has-custom-font" style="font-family:Open Sans"><strong>Heads up, Digitization</strong> is scanning paper documents into digital files. It helps to digitize paper documents without the risk of damage or loss of the original documents.&nbsp;</p>



<p class="has-open-sans-font-family has-custom-font" style="font-family:Open Sans">It also aids in making paperwork more organized and less time-consuming due to significantly cutting the troubleshooting time. <strong>Automatic Digitizing</strong> converts raster to vector data or 2D or 3D objects into digital data. The primary purpose of automatic digitizing is to increase the speed and efficiency of GIS data collection. With this process, it is possible to collect, organize, and manage large volumes of data efficiently. The primary goal of an automatic digitizer is to provide up-to-date spatial data in real-time. (Spatial Post, 2021).</p>



<p class="has-text-align-center has-white-background-color has-background"><img loading="lazy" decoding="async" width="281" height="203" src="https://lh5.googleusercontent.com/7ya6LKCuJL7ohbXKdFq3wlYDCEf01CEhctBuMlHG_MTh6UATkZDV71IKjhpRBkxPOhZpWpUPJ5mENoGdDFb85OspcvP78j8Ugo4flyVF-Q9bdZNDKckMOWqX79HcNLPMpl_RMRlPz11wwBwQGy1emBlfvl0jMoJ4"></p>



<p class="has-text-align-center" style="font-size:14px"><strong>In this Image, a conventional example of Heads up Digitization of a building </strong></p>



<p class="has-text-align-center" style="font-size:12px"><em>Picture Source: <a rel="noreferrer noopener" href="http://www.geo.hunter.cuny.edu/~jochen/gtech361/lectures/lecture06/concepts/10%20-%20Digitizing%20features.htm" target="_blank">Link</a></em></p>



<p></p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="497" height="373" src="https://lh4.googleusercontent.com/JQ7jG9dlY-IHa_yI7nh6wuB89EoaZpQ85V6RxwUh8TZFqUWskZnuXM5D5L4Jss-p6jQk5sQhkPxv6SPLP1tbG2OvfNJt2nILRC7kreIHotTroIe9sI25q5xem-ohGjojDMpIC3YMK43W9kEooudOiyC7sfDXBFAR"></p>



<p class="has-text-align-center" style="font-size:14px"><strong>The best form of Automated digitization is drawing on contour lines shown in a tiff file </strong></p>



<p class="has-text-align-center" style="font-size:13px"><em>Picture source: ESRI</em></p>



<p></p>



<p></p>



<h2 class="wp-block-heading">Geospatial everywhere?</h2>


<div class="wp-block-image">
<figure class="aligncenter"><img decoding="async" src="https://lh3.googleusercontent.com/QRmiftcTD_uG6rOty0KO7gT3V6nBUvfQXexxadHlpYm27F2UKd4yly4U-52Wg15k8zesp_pk-nRECaBTgpUBfk-5U55HY0rFevB3J7hzC-F-aukI6hlv2HOD87xjNjg4gJps4TSHhWJFllUf6fHMqXc" alt=""/></figure></div>


<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="has-georgia-font-family has-custom-font" style="font-family:Georgia;font-size:20px"><strong>The application of GIS is limited only by the imagination of those who use it</strong></p>
<cite>Jack Dangermond, ESRI Co-Founder</cite></blockquote>



<p class="has-open-sans-font-family has-custom-font" style="font-family:Open Sans">Geospatial maps have been a cornerstone for daily activities. Whether it is to know the weather updates or for daily commutes, the dynamic nature of maps cannot be present. Organizations like <strong>Google</strong>, <strong>Apple</strong>, <strong>TomTom</strong>, and <strong>Here Maps</strong> have more than 1 billion Points of Interest Areas of Retail outlets, Monuments, Educational Hubs, Restaurants etc. Most navigation maps produced by Here and TomTom are used for daily commuting in various mobile applications of taxi services like Uber and Ola.</p>



<p class="has-text-align-center"><img decoding="async" src="https://lh4.googleusercontent.com/doytpwExOgIJuKpIBUhA0xq1Gpw6PNAlubilK6Ksh2O68HUlteDkiwVvoOQwkpqlx_ZdKeYPMTeeVNNxmE0yq5rFG9Xa1hh4Ue_pkL6xMww6ThQaHx2MkQEsGs3nnhZ7JvgCJMEwMz1gYQKn8iE2r8A" style="width: 420px;"></p>



<p class="has-text-align-center" style="font-size:12px"><em>(In the map made on QGIS software and overlaid on Google, we can estimate the shortest path from Point A in South St NW Avenue to Point B in Logan Circle of Washington DC Streets: Picture Source: GREd Foundation Map Archives: <a href="https://gredfoundation.org/">GREd foundation &#8211; GREd Foundation</a>)</em></p>



<p class="has-text-align-center"><img decoding="async" src="https://lh3.googleusercontent.com/VMFYDmC0pgjEotwXHZcqoUTU6WlBCU-Rat-Q4gbAM_UqSFo5m-VrNqMEa1jBrgC8eYWSvcDzm9iyr1JAwceXPxZLYAjX9FbU7cWck5W4t2gXxF8a4ekW0jZpdBRt2cIFY13ihUj_2S9WJlU1pam77cU" style="width: 420px;"></p>



<p class="has-text-align-center" style="font-size:12px"><em>(Many Logistics and service companies like Uber use base maps of Tomtom and Apple for their taxi routing services: Picture Source <strong>Uber)</strong></em></p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="624" height="375" src="https://lh5.googleusercontent.com/NBUmQtSP6Q5zWKAD3OsWK5DTRtYwI-ci_kEjcyDF9LPYifTMP2CVg0VGQPytWGbY_dfkWNW794QPzfjqxYUvme-eprZUuRj4RBH824FDJkef-9g9giUVbC614bC6mTcbZ8PNxOKrR1nqKCHRnpMwXAE"></p>



<p class="has-text-align-center" style="font-size:14px"><strong>Using HERE Maps as many logistic companies use in the base map Amazon locational services over the period for parcel delivery or fleet transportation, it also enables users to monitor their locational privacy settings, which are now become a prime importance</strong></p>



<p class="has-text-align-center" style="font-size:12px"><em>Map Source: <a href="https://www.here.com/learn/blog/aws-map-styles">HERE Maps on Amazon Location Service | HERE</a></em></p>



<p class="has-open-sans-font-family has-custom-font" style="font-family:Open Sans">Apart from navigation and locational intelligence, real-time maps are also used in many other applications ranging from disaster management, weather forecasting, tracking movements, ship cargo transport or, for that matter monitoring. live air traffic.</p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="624" height="300" src="https://lh6.googleusercontent.com/mfet414RrWd7EHHITqMeZxtHOXHsNyTOKf_waRjJp6oAHFXnMxh6KnELo2F-RIMsIqSDAAiEzcPN0GYZaaHitBlIeLFSqCq91iShYXV0r1vUK49d9DMl4iYr-1vI-kPgVNSaLsLRDRO45pEjQDzMlKk"></p>



<p class="has-text-align-center" style="font-size:14px"><strong>In this Map Imagery, an hour-by-hour update of Cyclone Freedy when it impacted the Island of Madagascar</strong></p>



<p class="has-text-align-center" style="font-size:12px"><em>Map Imagery Source: Zoom Earth</em></p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="624" height="343" src="https://lh4.googleusercontent.com/XbOOue0xVzpEbG6bfSwbvtmgFGYKkffWiWKH7-xqH_0gjdETrTDtHbthjd9X0zGjMP0TkXSaUtcnpjmgihKKIsy2SzjhnQq8y6SnGkcr5cuw9waH_tXiP9WFk6E4Q2foCWAnyAQKEIzwWPP9ps6CtbQ"></p>



<p class="has-text-align-center" style="font-size:14px"><strong>The tracking of Vessels and ships shown here near the Mumbai Harbor is another real-time Application that is useful for monitoring cargo movements</strong></p>



<p class="has-text-align-center" style="font-size:12px"><em>Map Imagery Source: <a href="https://www.vesselfinder.com/">Free AIS Ship Tracker &#8211; VesselFinder</a></em></p>



<p class="has-text-align-center"><img loading="lazy" decoding="async" width="624" height="531" src="https://lh3.googleusercontent.com/r1qfk-UblpvvlSiHoortFobvqP4w699ODwdfTaKnkDjs1ZmEKZPyPF186BYfzEwCSDg9rOFOucdUuIVy7_JCldaGcSzejrwkVcNZu_ZzeNMbfv__WrV1yOBBX1RyFdMUt7SCS2sCxrMF86e8rsbaBf8"></p>



<p class="has-text-align-center" style="font-size:14px"><strong>Radar and Thermal Imagery are often used to track cloud cover and area temperatures, which is daily updated as shown in the radar weather imagery of India</strong></p>



<p class="has-text-align-center" style="font-size:12px"><em>Imagery Source: <a href="https://www.weatherandradar.in/weather-map?center=21.84,80&amp;zoom=4.56&amp;layer=wr">WeatherRadar – Rain, snow, storms and clouds live (weather and radar. in)</a></em></p>



<p class="has-open-sans-font-family has-custom-font" style="font-family:Open Sans">The current era of the geospatial revolution has ensured that maps are a part of our lives in this fast-moving digital world, and locational information is now a daily necessity for human mobility.</p>



<p></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Introduction to GIS</title>
		<link>https://geohuddle.com/2023/04/introduction-to-gis/</link>
		
		<dc:creator><![CDATA[geotutor]]></dc:creator>
		<pubDate>Sun, 02 Apr 2023 16:16:53 +0000</pubDate>
				<category><![CDATA[Geospatial]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[geography]]></category>
		<category><![CDATA[geospatial]]></category>
		<category><![CDATA[gis]]></category>
		<category><![CDATA[technology]]></category>
		<guid isPermaLink="false">https://geohuddle.com/?p=17</guid>

					<description><![CDATA[GIS, or Geographic Information Systems, is a field of technology that combines computer science, statistics, and cartography to collect, store, analyze, and visualize spatial data. GIS technology can be used to create interactive maps, analyze and model geographic phenomena, and support decision-making in a variety of fields, such as transportation, urban planning, environmental management, and [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>GIS, or Geographic Information Systems, is a field of technology that combines computer science, statistics, and cartography to collect, store, analyze, and visualize spatial data. GIS technology can be used to create interactive maps, analyze and model geographic phenomena, and support decision-making in a variety of fields, such as transportation, urban planning, environmental management, and emergency response.</p>



<p>A GIS system typically includes three main components: hardware, software, and data. Hardware includes the computers and other equipment used to store, process, and display spatial data. Software includes the programs and applications used to manipulate and analyze spatial data, such as GIS software, database management systems, and programming languages. Data includes the geographic information used in a GIS, such as maps, satellite imagery, and demographic data.</p>



<p>There are many different types of GIS software available, ranging from open-source options like QGIS, to commercial options like ArcGIS. These software typically provide a wide range of tools for data management, data analysis, and map creation.</p>



<p>GIS can be used for a wide range of applications, such as:</p>



<ul class="wp-block-list">
<li>Creating and displaying maps, such as street maps, satellite images, and weather maps.</li>



<li>Analyzing spatial data, such as identifying patterns and trends in population density or land use.</li>



<li>Managing and analyzing spatial data, such as tracking changes in land use or the spread of invasive species.</li>



<li>Planning and managing resources, such as optimizing routes for delivery trucks or managing wildlife habitats.</li>



<li>In emergency response, GIS can be used to track and analyze incidents, plan evacuation routes, and manage resources.</li>
</ul>



<p>Overall, GIS is a powerful tool that can be used to understand and make sense of our world, and it has been widely used in many fields and industries</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
