Earthquake of 2.6 magnitude shakes parts of Haryana

The epicentre of the earthquake was located 7 km east southeast of Rohtak in Haryana.

New Delhi: A mild tremor shook parts of Haryana on Sunday night.

According to the National Centre for Seismology the earthquake of magnitude 2.6, occurred at 11.26 pm on Sunday.

The epicentre of the earthquake was located 7 km east southeast of Rohtak in Haryana.

Subhan Bakery

On 25 September, an earthquake of magnitude 3.0 jolted Uttarakhand’s Uttarkashi district, according to the National Center for Seismology (NSC).

Press Trust of India

Press Trust of India (PTI) is India’s premier news agency, having a reach as vast as the Indian Railways. It employs more than 400 journalists and 500 stringers to cover… More »
Back to top button
/** * News Desk author archive: Organization, not Person. * SASWP: saswp_modify_author_output * Only user_id 68 (News Desk). */ add_filter( 'saswp_modify_author_output', 'siasat_newsdesk_author_schema' ); function siasat_newsdesk_author_schema( $input ) { if ( ! is_author() ) { return $input; } $user = get_queried_object(); if ( ! $user || (int) $user->ID !== 68 ) { return $input; } $desk = array( '@context' => 'https://schema.org', '@type' => 'Organization', '@id' => 'https://www.siasat.com/author/newsdesk/#desk', 'name' => 'News Desk', 'alternateName' => 'Siasat News Desk', 'url' => 'https://www.siasat.com/author/newsdesk/', 'description' => 'The Siasat Daily news desk. Desk and agency copy, including wire. Staff reporting is bylined to the individual journalist.', 'parentOrganization' => array( '@type' => 'NewsMediaOrganization', 'name' => 'The Siasat Daily', 'url' => 'https://www.siasat.com/', ), 'sameAs' => array( 'https://twitter.com/TheSiasatDaily', ), ); if ( ! is_array( $input ) ) { return $desk; } // SASWP sometimes passes a list of graphs. if ( isset( $input[0] ) && is_array( $input[0] ) ) { foreach ( $input as $i => $block ) { if ( ! is_array( $block ) ) { continue; } $type = isset( $block['@type'] ) ? $block['@type'] : ''; $name = isset( $block['name'] ) ? $block['name'] : ''; if ( $type === 'Person' && $name === 'News Desk' ) { $input[ $i ] = $desk; } } return $input; } return $desk; }