डेटा विज़ुअलाइज़ेशन: भूकंप के बारे में जानकारी हासिल करना

खास जानकारी

इस ट्यूटोरियल में, Google Maps पर डेटा को विज़ुअलाइज़ करने का तरीका बताया गया है. उदाहरण के लिए, इस ट्यूटोरियल में दिए गए मैप में, भूकंप की जगह और उनके तीव्रता के डेटा को विज़ुअलाइज़ किया गया है. अपने डेटा सोर्स का इस्तेमाल करने के लिए तकनीकें जानें और Google Maps पर ऐसी ही शानदार स्टोरी बनाएं.

ऊपर (बाएं से दाएं) में दिखने वाले पहले दो फ़्रेम, मैप को बेसिक मार्कर और साइज़ के सर्कल के साथ दिखाते हैं. आखिरी फ़्रेम में हीटमैप दिखता है.

अपना डेटा आयात करें

इस ट्यूटोरियल में, यूनाइटेड स्टेट्स जियोलॉजिकल सर्वे (USGS) के भूकंप के रीयल-टाइम डेटा का इस्तेमाल किया गया है. USGS की वेबसाइट, अपना डेटा कई फ़ॉर्मैट में उपलब्ध कराती है. इन फ़ॉर्मैट को अपने ऐप्लिकेशन से स्थानीय तौर पर ऐक्सेस करने के लिए, अपने डोमेन में कॉपी किया जा सकता है. इस ट्यूटोरियल में, दस्तावेज़ के हेड में script टैग जोड़कर, सीधे USGS सर्वर से JSONP का अनुरोध किया जाता है.

// Create a script tag and set the USGS URL as the source.
        var script = document.createElement('script');

        script.src = 'http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojsonp';
        document.getElementsByTagName('head')[0].appendChild(script);

मूल मार्कर लगाएं

अब आपने यूएसजीएस फ़ीड से भूकंप की जगह का डेटा अपने ऐप्लिकेशन में ले लिया है. इसलिए, इसे मैप पर दिखाया जा सकता है. इस सेक्शन में, इंपोर्ट किए गए डेटा का इस्तेमाल करने वाला मैप बनाने का तरीका बताया गया है. इस मैप में, भूकंप की हर जगह के केंद्र पर एक बेसिक मार्कर लगाने का तरीका बताया गया है.

नीचे दिया गया सेक्शन वह पूरा कोड दिखाता है जिसकी ज़रूरत आपको इस ट्यूटोरियल में मैप बनाने के लिए होती है.

TypeScript

let map: google.maps.Map;

function initMap(): void {
  map = new google.maps.Map(document.getElementById("map") as HTMLElement, {
    zoom: 2,
    center: new google.maps.LatLng(2.8, -187.3),
    mapTypeId: "terrain",
  });

  // Create a <script> tag and set the USGS URL as the source.
  const script = document.createElement("script");

  // This example uses a local copy of the GeoJSON stored at
  // http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojsonp
  script.src =
    "https://developers.google.com/maps/documentation/javascript/examples/json/earthquake_GeoJSONP.js";
  document.getElementsByTagName("head")[0].appendChild(script);
}

// Loop through the results array and place a marker for each
// set of coordinates.
const eqfeed_callback = function (results: any) {
  for (let i = 0; i < results.features.length; i++) {
    const coords = results.features[i].geometry.coordinates;
    const latLng = new google.maps.LatLng(coords[1], coords[0]);

    new google.maps.Marker({
      position: latLng,
      map: map,
    });
  }
};

declare global {
  interface Window {
    initMap: () => void;
    eqfeed_callback: (results: any) => void;
  }
}
window.initMap = initMap;
window.eqfeed_callback = eqfeed_callback;

JavaScript

let map;

function initMap() {
  map = new google.maps.Map(document.getElementById("map"), {
    zoom: 2,
    center: new google.maps.LatLng(2.8, -187.3),
    mapTypeId: "terrain",
  });

  // Create a <script> tag and set the USGS URL as the source.
  const script = document.createElement("script");

  // This example uses a local copy of the GeoJSON stored at
  // http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojsonp
  script.src =
    "https://developers.google.com/maps/documentation/javascript/examples/json/earthquake_GeoJSONP.js";
  document.getElementsByTagName("head")[0].appendChild(script);
}

// Loop through the results array and place a marker for each
// set of coordinates.
const eqfeed_callback = function (results) {
  for (let i = 0; i < results.features.length; i++) {
    const coords = results.features[i].geometry.coordinates;
    const latLng = new google.maps.LatLng(coords[1], coords[0]);

    new google.maps.Marker({
      position: latLng,
      map: map,
    });
  }
};

window.initMap = initMap;
window.eqfeed_callback = eqfeed_callback;

सीएसएस

/* 
 * Always set the map height explicitly to define the size of the div element
 * that contains the map. 
 */
#map {
  height: 100%;
}

/* 
 * Optional: Makes the sample page fill the window. 
 */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

एचटीएमएल

<html>
  <head>
    <title>Earthquake Markers</title>

    <link rel="stylesheet" type="text/css" href="./style.css" />
    <script type="module" src="./index.js"></script>
  </head>
  <body>
    <div id="map"></div>

    <!-- 
      The `defer` attribute causes the script to execute after the full HTML
      document has been parsed. For non-blocking uses, avoiding race conditions,
      and consistent behavior across browsers, consider loading using Promises. See
      https://developers.google.com/maps/documentation/javascript/load-maps-js-api
      for more information.
      -->
    <script
      src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB41DRUbKWJHPxaFjMAwdrzWzbVKartNGg&callback=initMap&v=weekly"
      defer
    ></script>
  </body>
</html>

सैंपल आज़माएं

मैप को पसंद के मुताबिक बनाने के लिए, आकृतियों और हीटमैप का इस्तेमाल करना

इस सेक्शन में, मैप पर रिच डेटासेट को पसंद के मुताबिक बनाने के अन्य तरीके बताए गए हैं. इस ट्यूटोरियल के पिछले सेक्शन में बनाए गए मैप पर ध्यान दें. इसमें भूकंप की हर जगह पर मार्कर दिखाए जाते हैं. ज़्यादा डेटा को विज़ुअलाइज़ करने के लिए, मार्कर को पसंद के मुताबिक बनाया जा सकता है. जैसे, ऐसी जगहें जहां सबसे ज़्यादा भूकंप आते हैं और उनकी तीव्रता या गहराई.

बुनियादी मार्कर को पसंद के मुताबिक बनाने के लिए, यहां कुछ विकल्प दिए गए हैं:

  • सर्कल के साइज़ का इस्तेमाल करना:
    सिंबल का इस्तेमाल करके, भूकंप की तीव्रता से जुड़े साइज़ में सर्कल (या कोई दूसरा आकार) बनाया जा सकता है. इस तरह, मैप पर सबसे ज़्यादा मैग्नीट्यूड वाले भूकंपों को सबसे बड़े सर्कल के तौर पर दिखाया जाता है.

  • हीटमैप का इस्तेमाल करना:
    विज़ुअलाइज़ेशन लाइब्रेरी में मौजूद हीटमैप लेयर की मदद से, भूकंपों के डिस्ट्रिब्यूशन को आसान और बेहतर तरीके से दिखाया जा सकता है. हीटमैप में पॉइंट की सघनता दिखाने के लिए रंगों का इस्तेमाल किया जाता है. इससे ज़्यादा गतिविधि वाली जगहों को चुनने में आसानी होती है. हीटमैप में WeightedLocations का भी इस्तेमाल किया जा सकता है, ताकि हीटमैप में बड़े भूकंपों को ज़्यादा प्रमुखता से दिखाया जा सके.

वृत्त का आकार

नीचे दिया गया मैप वृत्तों का उपयोग करके कस्टमाइज़ किए गए मार्कर दिखाता है. किसी जगह पर भूकंप की तीव्रता के हिसाब से, सर्कल का साइज़ बढ़ता जाता है.

नीचे दिए गए सेक्शन में, वह पूरा कोड दिख रहा है जिसकी ज़रूरत आपको पसंद के मुताबिक सर्कल मार्कर वाला मैप बनाने के लिए होगी.

TypeScript

let map: google.maps.Map;

function initMap(): void {
  map = new google.maps.Map(document.getElementById("map") as HTMLElement, {
    zoom: 2,
    center: { lat: -33.865427, lng: 151.196123 },
    mapTypeId: "terrain",
  });

  // Create a <script> tag and set the USGS URL as the source.
  const script = document.createElement("script");

  // This example uses a local copy of the GeoJSON stored at
  // http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojsonp
  script.src =
    "https://developers.google.com/maps/documentation/javascript/examples/json/earthquake_GeoJSONP.js";
  document.getElementsByTagName("head")[0].appendChild(script);

  map.data.setStyle((feature) => {
    const magnitude = feature.getProperty("mag") as number;
    return {
      icon: getCircle(magnitude),
    };
  });
}

function getCircle(magnitude: number) {
  return {
    path: google.maps.SymbolPath.CIRCLE,
    fillColor: "red",
    fillOpacity: 0.2,
    scale: Math.pow(2, magnitude) / 2,
    strokeColor: "white",
    strokeWeight: 0.5,
  };
}

function eqfeed_callback(results: any) {
  map.data.addGeoJson(results);
}

declare global {
  interface Window {
    initMap: () => void;
    eqfeed_callback: (results: any) => void;
  }
}
window.initMap = initMap;
window.eqfeed_callback = eqfeed_callback;

JavaScript

let map;

function initMap() {
  map = new google.maps.Map(document.getElementById("map"), {
    zoom: 2,
    center: { lat: -33.865427, lng: 151.196123 },
    mapTypeId: "terrain",
  });

  // Create a <script> tag and set the USGS URL as the source.
  const script = document.createElement("script");

  // This example uses a local copy of the GeoJSON stored at
  // http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojsonp
  script.src =
    "https://developers.google.com/maps/documentation/javascript/examples/json/earthquake_GeoJSONP.js";
  document.getElementsByTagName("head")[0].appendChild(script);
  map.data.setStyle((feature) => {
    const magnitude = feature.getProperty("mag");
    return {
      icon: getCircle(magnitude),
    };
  });
}

function getCircle(magnitude) {
  return {
    path: google.maps.SymbolPath.CIRCLE,
    fillColor: "red",
    fillOpacity: 0.2,
    scale: Math.pow(2, magnitude) / 2,
    strokeColor: "white",
    strokeWeight: 0.5,
  };
}

function eqfeed_callback(results) {
  map.data.addGeoJson(results);
}

window.initMap = initMap;
window.eqfeed_callback = eqfeed_callback;

सीएसएस

/* 
 * Always set the map height explicitly to define the size of the div element
 * that contains the map. 
 */
#map {
  height: 100%;
}

/* 
 * Optional: Makes the sample page fill the window. 
 */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

एचटीएमएल

<html>
  <head>
    <title>Earthquake Circles</title>

    <link rel="stylesheet" type="text/css" href="./style.css" />
    <script type="module" src="./index.js"></script>
  </head>
  <body>
    <div id="map"></div>

    <!-- 
      The `defer` attribute causes the script to execute after the full HTML
      document has been parsed. For non-blocking uses, avoiding race conditions,
      and consistent behavior across browsers, consider loading using Promises. See
      https://developers.google.com/maps/documentation/javascript/load-maps-js-api
      for more information.
      -->
    <script
      src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB41DRUbKWJHPxaFjMAwdrzWzbVKartNGg&callback=initMap&v=weekly"
      defer
    ></script>
  </body>
</html>

सैंपल आज़माएं

हीटमैप

हीटमैप से, दर्शकों के लिए भूकंप के सिस्टम को समझना आसान हो जाता है. यह जानकारी यूएसजीएस ने रिपोर्ट की है. हर इपिसेंटर पर मार्कर लगाने के बजाय, हीटमैप में डेटा के डिस्ट्रिब्यूशन को दिखाने के लिए रंग और आकार का इस्तेमाल किया जाता है. इस उदाहरण में, लाल रंग से उन इलाकों को दिखाया गया है जहां भूकंप की गतिविधि ज़्यादा है.

नीचे दिए गए सेक्शन में, यह पूरा कोड दिखता है जो इस मैप को बनाने के लिए ज़रूरी है.

TypeScript

let map: google.maps.Map;

function initMap(): void {
  map = new google.maps.Map(document.getElementById("map") as HTMLElement, {
    zoom: 2,
    center: { lat: -33.865427, lng: 151.196123 },
    mapTypeId: "terrain",
  });

  // Create a <script> tag and set the USGS URL as the source.
  const script = document.createElement("script");

  // This example uses a local copy of the GeoJSON stored at
  // http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojsonp
  script.src =
    "https://developers.google.com/maps/documentation/javascript/examples/json/earthquake_GeoJSONP.js";
  document.getElementsByTagName("head")[0].appendChild(script);
}

function eqfeed_callback(results: any) {
  const heatmapData: google.maps.LatLng[] = [];

  for (let i = 0; i < results.features.length; i++) {
    const coords = results.features[i].geometry.coordinates;
    const latLng = new google.maps.LatLng(coords[1], coords[0]);

    heatmapData.push(latLng);
  }

  const heatmap = new google.maps.visualization.HeatmapLayer({
    data: heatmapData,
    dissipating: false,
    map: map,
  });
}

declare global {
  interface Window {
    initMap: () => void;
    eqfeed_callback: (results: any) => void;
  }
}
window.initMap = initMap;
window.eqfeed_callback = eqfeed_callback;

JavaScript

let map;

function initMap() {
  map = new google.maps.Map(document.getElementById("map"), {
    zoom: 2,
    center: { lat: -33.865427, lng: 151.196123 },
    mapTypeId: "terrain",
  });

  // Create a <script> tag and set the USGS URL as the source.
  const script = document.createElement("script");

  // This example uses a local copy of the GeoJSON stored at
  // http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojsonp
  script.src =
    "https://developers.google.com/maps/documentation/javascript/examples/json/earthquake_GeoJSONP.js";
  document.getElementsByTagName("head")[0].appendChild(script);
}

function eqfeed_callback(results) {
  const heatmapData = [];

  for (let i = 0; i < results.features.length; i++) {
    const coords = results.features[i].geometry.coordinates;
    const latLng = new google.maps.LatLng(coords[1], coords[0]);

    heatmapData.push(latLng);
  }

  const heatmap = new google.maps.visualization.HeatmapLayer({
    data: heatmapData,
    dissipating: false,
    map: map,
  });
}

window.initMap = initMap;
window.eqfeed_callback = eqfeed_callback;

सीएसएस

/* 
 * Always set the map height explicitly to define the size of the div element
 * that contains the map. 
 */
#map {
  height: 100%;
}

/* 
 * Optional: Makes the sample page fill the window. 
 */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

एचटीएमएल

<html>
  <head>
    <title>Earthquake Heatmap</title>

    <link rel="stylesheet" type="text/css" href="./style.css" />
    <script type="module" src="./index.js"></script>
  </head>
  <body>
    <div id="map"></div>

    <!-- 
      The `defer` attribute causes the script to execute after the full HTML
      document has been parsed. For non-blocking uses, avoiding race conditions,
      and consistent behavior across browsers, consider loading using Promises. See
      https://developers.google.com/maps/documentation/javascript/load-maps-js-api
      for more information.
      -->
    <script
      src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB41DRUbKWJHPxaFjMAwdrzWzbVKartNGg&callback=initMap&libraries=visualization&v=weekly"
      defer
    ></script>
  </body>
</html>

सैंपल आज़माएं

ज़्यादा जानकारी

इन विषयों के बारे में ज़्यादा पढ़ें: