-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmosdac_data.json
More file actions
1282 lines (1282 loc) · 125 KB
/
mosdac_data.json
File metadata and controls
1282 lines (1282 loc) · 125 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"source": "home",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Satellite Images RADAR Weather OceanState LIVE Nowcast Current Events Alerts Met Applications Ocean Applications COLD WAVE PREDICTION OVER INDIA (WRF MODEL) SAT. BASED CYCLONE OBSER. AND REALTIME PRED. OVER IO."
},
{
"source": "home",
"text": "HEAT WAVE PREDICTION OVER INDIA (WRF MODEL) HEAVY RAIN (>5MM/HR) FORECAST USING NWP MODEL."
},
{
"source": "home",
"text": "SEA STATE FORECAST IN TERMS OF WAVE HEIGHT, WAVE PERIOD ETC."
},
{
"source": "home",
"text": "3 DAYS SOLAR AND WIND FORECAST FOR EVERY 15 MINUTES Monsoon Onset Prediction over Kerala (2024) | PDF, Tool: PDFViewer, Size: 763.84 KB | 20-May-24 Onset over Kerala - Monsoon 2023 | PDF, Tool: PDFViewer, Size: 463.15 KB | 15-May-23 INSAT Product Version Information | PDF, Tool: PDFViewer, Size: 1.61 MB | 01-Sep-22 SFTP Services for Data Download | PDF, Tool: PDFViewer, Size: 347.33 KB | 08-Nov-21 \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "internal-catalog-satellite",
"text": "Acq Calendar/Version\tProduct Description\tProcessing Level\tTemporal Resolution\tStart Date\tEnd Date\tProcessing Status\tDOI Ver 3.0; Last reviewed and updated on 22 Aug, 2024"
},
{
"source": "calibration-reports",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "rss-feed",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Uses RSS (Rich Site Summary) based technology for dissemination of Satellite Images and Data Products to end users on Internet Allow Users to subscribe to these feeds automatically and get notified for availability of new data sets Feed subscription is supported by Standard browsers and on RSS readers available on Mobile Apps Enhanced Features specific to Satellite Data are Planned in Customized Client, supporting automated download, analysis and visualization of data Currently SCATSAT-1 High Resolution Products are available, soon more products are planned to be added."
},
{
"source": "rss-feed",
"text": "INSAT3D-Imager Feed: https://mosdac.gov.in/3dimager.xml INSAT3D-Sounder Feed: https://mosdac.gov.in/3dsounder.xml INSAT3DR-Imager Feed: https://mosdac.gov.in/3drimager.xml INSAT3DR-Sounder Feed: https://mosdac.gov.in/3drsounder.xml \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "data-quality",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "sitemap",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "node-483-122",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "internal-catalog-insitu",
"text": "Ver 3.0; Last reviewed and updated on 22 Aug, 2024"
},
{
"source": "oceansat-3",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre EOS-06(Oceansat-3) also known as Earth Observing Satellite EOS-06(Oceansat-3), was launched by PSLV-C54 from Satish Dhawan Space Centre, Sriharikota on 26 November 2022. EOS-06(Oceansat-3) is developed to provide a unique opportunity for simultaneously measuring the physical, biological and atmospheric parameters for the first time from three instruments, (i) 13-band advanced Ocean Colour Monitor (OCM-3), (ii) Ku-band Scatterometer (SCAT-3) and (ii) a 2-channel Sea Surface Temperature Monitor (SSTM). ARGOS is the fourth payload provided by French Space Agency (CNES) and serves as a data collection platform from various ocean based platform. EOS-06(Oceansat-3) is envisaged to provide continuity of operational services of Oceansat-1, 2 and SCATSAT-1 Mission with enhanced application potential."
},
{
"source": "oceansat-3",
"text": "\"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "calibration-reports",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "atlases",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "hyperlink-policy",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre At many places in this Portal, you shall find links to other websites/portals. This links have been placed for your convenience. MOSDAC is not responsible for the contents and reliability of the linked websites and does not necessarily endorse the views expressed in them. Mere presence of the link or its listing on this Portal should not be assumed as endorsement of any kind. We can not guarantee that these links will work all the time and we have no control over availability of linked pages."
},
{
"source": "hyperlink-policy",
"text": "Links to MOSDAC Portal by other websites We do not object to you linking directly to the information that is hosted on this Portal and no prior permission is required for the same. However, we would like you to inform us about any links provided to this Portal so that you can be informed of any changes or updations therein. Also, we do not permit our pages to be loaded into frames on your site. The pages belonging to this Portal must load into a newly opened browser window of the User."
},
{
"source": "hyperlink-policy",
"text": "\"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "oceanic-eddies-detection",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Home » Data Access » Open Data » Ocean » Oceanic Eddies Detection The oceanic eddy parameter information was prepared for 24 years (1993 – 2016) over Bay of Bengal using AVISO. Merged and gridded satellite altimeter product of sea surface height (SSH) anomaly at 7-day interval having special resolution of 0.25o has been used for present study. Mesoscale oceanic eddies have been identified and tracked in weekly merged altimeter product of Sea Surface Height (SSH) from AVISO. Eddies have been identified based on closed contour approach followed by shape criteria. An automated tracking algorithm has been employed to track these eddies with different lifetime. The trajectories of eddies have been computed from their time history. Present method has been used separately for cold core and warm core eddies. There are 24 files each containing weekly eddy data information for individual year."
},
{
"source": "oceanic-eddies-detection",
"text": "Click Here to access the Science Products . Request to use MOSDAC Single Sign On user credentials to download the data."
},
{
"source": "oceanic-eddies-detection",
"text": "The daily gridded map of Absolute Dynamic Topography data is obtained from AVISO Remove the long wavelength component of the SSH anomaly and retain the mesoscale features with the wavelength 50-500 km scale."
},
{
"source": "oceanic-eddies-detection",
"text": "Identified outer most closed contour of SSH anomaly."
},
{
"source": "oceanic-eddies-detection",
"text": "The closed contours are sequentially identified, analysed and checked essential criteria."
},
{
"source": "oceanic-eddies-detection",
"text": "Size and amplitude based thresholds for eddy detection were fixed after carrying out several trials."
},
{
"source": "oceanic-eddies-detection",
"text": "Eddies are detected and calculated the eddy parameters."
},
{
"source": "oceanic-eddies-detection",
"text": "Detected eddies are tracked individually."
},
{
"source": "oceanic-eddies-detection",
"text": "Chelton, D. B., M. G. Schlax, R. M. Samelson, and R. A. de Szoeke (2007), Global observations of large oceanic eddies, Geophys. Res. Lett., 34, L15606, doi:10.1029/2007GL030812."
},
{
"source": "oceanic-eddies-detection",
"text": "We have followed Chelton et. Al. 2007 in deriving the eddy census in Bay of Bengal with minor modifications in fixing the thresholds for eddy detection specific to this region. This was achieved after performing several trial experiments with different combinations of size and amplitude values."
},
{
"source": "oceanic-eddies-detection",
"text": "Accuracy assessment of the dataset has not been carried out. The number of eddies are depending upon the diameter and amplitude threshold. Only mesoscale eddies with maximum diameter of 400km are being considered."
},
{
"source": "oceanic-eddies-detection",
"text": "Less reliability of SSH data near the coast with altimetry is a known problem."
},
{
"source": "oceanic-eddies-detection",
"text": "http://www.aviso.altimetry.fr/en/data/data-access/registration-form.html The typical file name is 'eddy_parameter_YYYY.nc' or ‘YYYY.gif’ where 'eddy_parameter’ signifies that this product consists of eddy parameters."
},
{
"source": "oceanic-eddies-detection",
"text": "'YYYY' corresponds to the year, ex: 2015."
},
{
"source": "oceanic-eddies-detection",
"text": "All the data files are in NetCDF 4 format and the images are in gif format."
},
{
"source": "oceanic-eddies-detection",
"text": "Sr. No\tCore Metadata Elements\tDefinition 4\tData Lineage or Quality\tScience product of eddy parameters over Bay of Bengal."
},
{
"source": "oceanic-eddies-detection",
"text": "5\tTitle\tCharacterizing Ocean Eddy activities in the Bay of Bengal using Altimeter data 6\tAbstract\tThe oceanic eddy parameter information over Bay of Bengal was prepared for 24 years (1993 – 2016) using AVISO merged and gridded satellite altimeter sea surface height (SSH) data. SSH anomaly at 7-day interval having special resolution of 0.25o has been used for present study."
},
{
"source": "oceanic-eddies-detection",
"text": "9\tAccess Rights or Restriction\tOpen Access 13\tKeywords\tAltimter, sea surface height, Oceanic eddy, Bay of Bengal, Cyclonic and anti-cyclonic 14\tDate or period\tJanuary 01 1993 to December 31 2016 weekly data 16a\tOrg. role\tMesoscale oceanic eddies have been identified and tracked in weekly merged altimeter product of Sea Surface Height (SSH) in the Bay of Bengal during the period 1993-2016."
},
{
"source": "oceanic-eddies-detection",
"text": "16d\tVertical Extent (minimumValue, maximumValue, unitOfMeasure, vertical datum)\ttime(time): units = \"days since 1950-1-1 00:00:00\" : calendar = \"Gregorian\"; EddyNumber(EddyNumber): “Number of the eddy”; flag(flag): \"1 for anticyclonic and 2 for cyclonic\"; eddy_id(time, EddyNumber, flag): “eddy id number”; cent_lat(time, EddyNumber, flag): Eddy centre latitude : units = \"degree_north\"; cent_lon(time, EddyNumber, flag):Eddy centre longitude : units = \"degree_east\"; amp_ed(time, EddyNumber, flag):Amplitude of the eddy : units = \"cm\"; sca_ed(time, EddyNumber, flag):Scale of the eddy : units = \"km\"; are_ed(time, EddyNumber, flag): Area of the eddy : units = \"km^2\";"
},
{
"source": "oceanic-eddies-detection",
"text": "17\tGeographic Extent\tLongitude: 78OE to 100O E Latitude : 5ON to 25O N 18\tGeographic name, geographic Identifier\tBay of Bengal 19\tBounding box\tLongitude : 78OE to 100O E Latitude : 5ON to 25O N Resolution : 0.25 O 20\tTemporal Extent\tBased on input AVISO data from 1993-2016 (24 years) 21\tAccess Rights or Restrictions\tOpen Access 22\tDistribution Information\tOnline download of data files in NetCDF format and images in GIF format 23\tProcessing Level\tLevel 4 (Data product derived from The weakly gridded map of Absolute Dynamic Topography data)"
},
{
"source": "oceanic-eddies-detection",
"text": "24\tReference System\tProjection: Spherical coordinates \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "node",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Satellite Images RADAR Weather OceanState LIVE Nowcast Current Events Alerts Met Applications Ocean Applications COLD WAVE PREDICTION OVER INDIA (WRF MODEL) SAT. BASED CYCLONE OBSER. AND REALTIME PRED. OVER IO."
},
{
"source": "node",
"text": "HEAT WAVE PREDICTION OVER INDIA (WRF MODEL) HEAVY RAIN (>5MM/HR) FORECAST USING NWP MODEL."
},
{
"source": "node",
"text": "SEA STATE FORECAST IN TERMS OF WAVE HEIGHT, WAVE PERIOD ETC."
},
{
"source": "node",
"text": "3 DAYS SOLAR AND WIND FORECAST FOR EVERY 15 MINUTES Monsoon Onset Prediction over Kerala (2024) | PDF, Tool: PDFViewer, Size: 763.84 KB | 20-May-24 Onset over Kerala - Monsoon 2023 | PDF, Tool: PDFViewer, Size: 463.15 KB | 15-May-23 INSAT Product Version Information | PDF, Tool: PDFViewer, Size: 1.61 MB | 01-Sep-22 SFTP Services for Data Download | PDF, Tool: PDFViewer, Size: 347.33 KB | 08-Nov-21 \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "node",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Satellite Images RADAR Weather OceanState LIVE Forecast Nowcast Current Events Alerts Met Applications SAT. BASED CYCLONE OBSER. AND REALTIME PRED. OVER IO."
},
{
"source": "node",
"text": "Monsoon Onset Prediction over Kerala (2024) | PDF, Tool: PDFViewer, Size: 763.84 KB | 20-May-24 Onset over Kerala - Monsoon 2023 | PDF, Tool: PDFViewer, Size: 463.15 KB | 15-May-23 INSAT Product Version Information | PDF, Tool: PDFViewer, Size: 1.61 MB | 01-Sep-22 SFTP Services for Data Download | PDF, Tool: PDFViewer, Size: 347.33 KB | 08-Nov-21 \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "internal-logout",
"text": "मॉस्डैक, अंतरिक्ष उपयोग केंद्र, इसरो, भारत सरकार द्वारा निर्मित और संचालित"
},
{
"source": "faq-page",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre I have registered on MOSDAC . i have received an email for email verification. But when I click the link, I get error message."
},
{
"source": "faq-page",
"text": "I have received a 'reset password mail' But when I click the link, I get error message."
},
{
"source": "faq-page",
"text": "I get error 'Invalid username or password' even though I provide correct credentials."
},
{
"source": "faq-page",
"text": "I don't have username and password of MOSDAC. Can I download data? How can I get near real time data without data ordering? How in-situ data can be ordered/requested? How Ordered and download the satellite data ? Which duration data can be obtained from MOSDAC? How many AWS are installed in each state of India? Which duration data is available for AWS? How to get description about a data product? I am a registered user of MOSDAC. When I download L1 data I get the message \"Your account is configured to download this data with latency of 3 days. Please select date accordingly.\" How should I download data?"
},
{
"source": "faq-page",
"text": "\"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "data-quality",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "node",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Satellite Images RADAR Weather OceanState LIVE Current Events Alerts Met Applications Ocean Applications CLOUD BURST NOWCAST FOR 6 HOURS OVER WESTERN HIMALAYAN REGION."
},
{
"source": "node",
"text": "SATELLITE BASED NOWCAST FOR HEAVY RAIN EVENTS FOR 6 HOURS."
},
{
"source": "node",
"text": "Monsoon Onset Prediction over Kerala (2024) | PDF, Tool: PDFViewer, Size: 763.84 KB | 20-May-24 Onset over Kerala - Monsoon 2023 | PDF, Tool: PDFViewer, Size: 463.15 KB | 15-May-23 INSAT Product Version Information | PDF, Tool: PDFViewer, Size: 1.61 MB | 01-Sep-22 SFTP Services for Data Download | PDF, Tool: PDFViewer, Size: 347.33 KB | 08-Nov-21 \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "node",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Satellite Images RADAR Weather OceanState LIVE Forecast Nowcast Current Events Alerts Met Applications Ocean Applications ALTIMETER LCS-CORES AND STRETCHING DIRECTIONS RIP CURRENT FORECAST FOR ALL-INDIA BEACHES."
},
{
"source": "node",
"text": "Monsoon Onset Prediction over Kerala (2024) | PDF, Tool: PDFViewer, Size: 763.84 KB | 20-May-24 Onset over Kerala - Monsoon 2023 | PDF, Tool: PDFViewer, Size: 463.15 KB | 15-May-23 INSAT Product Version Information | PDF, Tool: PDFViewer, Size: 1.61 MB | 01-Sep-22 SFTP Services for Data Download | PDF, Tool: PDFViewer, Size: 347.33 KB | 08-Nov-21 \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "soil-moisture-0",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Home » Data Access » Open Data » Land » Soil Moisture Click Here to access the Science Products . Request to use MOSDAC Single Sign On user credentials to download the data."
},
{
"source": "soil-moisture-0",
"text": "Following are the three major processing steps :"
},
{
"source": "soil-moisture-0",
"text": "v. Generate SWI from Tb and gridding the data Soil Wetness Index (SWI) is derived using a time series based methodology using SMAP L-band radiometer data, normalized to the extreme values of 0 and 1, corresponding to the dry and saturated soil wetness conditions respectively."
},
{
"source": "soil-moisture-0",
"text": "The Geotiff file names follows naming convention;"
},
{
"source": "soil-moisture-0",
"text": "Sr. No\tCore Metadata Elements\tDefinition 4\tData Lineage or Quality\tSoil Wetness Map derived using SMAP L-band Radiometer data 6\tAbstract\tSoil Wetness Index (SWI) is derived using a time series based methodology using SMAP L-band radiometer data, normalized to the extreme values of 0 and 1, corresponding to the dry and saturated soil wetness conditions respectively."
},
{
"source": "soil-moisture-0",
"text": "9\tAccess Rights or Restriction\tOpen Access 10\tSpatial Resolution\t40 km (resampled at 0.125 degrees) 13\tKeywords\tSoil Wetness Index, SMAP. SWI, Soil Moisture Active Passive 16a\tOrg. role\tGeophysical parameters retrieval from satellite 18\tGeographic name, geographic Identifier\tIndian Region 19\tBounding box\tlat_min: 05N, lat_max: 24N, lon_min: 68E, lon_max: 90E 21\tAccess Rights or Restrictions\tOpen Access 22\tDistribution Information\tOnline download in Geotiff format."
},
{
"source": "soil-moisture-0",
"text": "\"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "internal-uops",
"text": "मॉस्डैक सिंगल-साइन-ऑन (एसएसओ) MOSDAC Single-Sign-On (SSO) मॉस्डैक, अंतरिक्ष उपयोग केंद्र, इसरो, भारत सरकार द्वारा निर्मित और संचालित"
},
{
"source": "inland-water-height",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Home » Data Access » Open Data » Land » Inland Water Height Click Here to access the Science Products . Request to use MOSDAC Single Sign On user credentials to download the data."
},
{
"source": "inland-water-height",
"text": "Altimeter Interim Geophysical Data Record (IGDR) Global Ionosphere Maps (GIM) produced Total Electron Content (TEC) maps Firstly the waveforms are classified based on their signature, and then these waveforms are retracked with the suitable retracker."
},
{
"source": "inland-water-height",
"text": "Dedicated inland range correction algorithms are required to account for the atmospheric delays.Detailed information about the processing can be found in (S. Chanderet. al. 2014, A .Dubey et. al. 2014)."
},
{
"source": "inland-water-height",
"text": "S. Chander, and P Chauhan (2013). Algorithm Theoretical BasisDocument for SARAL/AltiKa data processing for geophysical parametersretrieval, scientific report no. EPSA/MPSG/PMD/2013/01."
},
{
"source": "inland-water-height",
"text": "S Chander, D Ganguly, AK Dubey, PK Gupta, RP Singh and P Chauhan(2014).Inland water bodies monitoring using satellite altimetry overIndian region, The International Archives of the Photogrammetry, Remote Sensing and Spatial Information Sciences, Volume XL-8, 2014, ISPRS Technical Commission VIII Symposium, 09 ? 12 December 2014, Hyderabad, India."
},
{
"source": "inland-water-height",
"text": "A K Dubey, P K Gupta, S Dutta and R P Singh (2015). Water Level Retrieval using SARAL/AltiKa Observations in the Braided Brahmaputra River, Eastern India, Marine Geodesy, DOI: 10.1080/01490419.2015.1008156 D Ganguly, S Chander, S Deasi and P Chauhan. Optimal waveform retracker for inland water bodies: A case study over Ukai Dam/Reservoir, is under review in the journal of Marine Geodesy."
},
{
"source": "inland-water-height",
"text": "P K Gupta, A K Dubey, N Goswami, R P Singh and P Chauhan (2015): Use of SARAL/AltiKa Observations for Modeling River Flow. Marine Geodesy (accepted)."
},
{
"source": "inland-water-height",
"text": "The water level over the inland water bodies can be retrieved using altimeter waveforms data."
},
{
"source": "inland-water-height",
"text": "The range information is estimated based on the arrival time of the radar pulse."
},
{
"source": "inland-water-height",
"text": "This range is then corrected for Dry tropospheric correction, wet tropospheric correction, ionospheric correction, and tidal correction, i.e. Load tide, solid earth tide."
},
{
"source": "inland-water-height",
"text": "Detailed information about the range corrections can be found in the ATBD document (S. Chander and Prakash Chauhan, 2013) of the SARAL mission."
},
{
"source": "inland-water-height",
"text": "Based on the availability of the Altimeter dataset over the study region (Data Gap, altimeter track loss, bad weather, etc.)."
},
{
"source": "inland-water-height",
"text": "Data problems due to bad weather (heavy rain) GPS Field trip for water level measurement was conducted over Ukai reservoir on 9th November 2013, 17th January 2014 and 2nd January 2015."
},
{
"source": "inland-water-height",
"text": "Brahmaputra observed river water level data was collected for 6 locations from upstream to downstream from Inland Waterways Authority (IWAI) and Central Water Commission (CWC) along with the satellite pass synchronous field trips."
},
{
"source": "inland-water-height",
"text": "altimeter_derived_water_height_ukai_yyyymmdd_v1 Sr. No\tCore Metadata Elements\tDefinition 4\tData Lineage or Quality\tWater height estimation over inland water bodies using radar altimeters 5\tTitle\tInland Water Bodies Monitoring using Satellite Altimetry over Indian Region 6\tAbstract\tInland water bodies? heightshave been estimated using SARAl-Altika and Jason-2 data over the two test sites, i.e. Ukai reservoir and Brahmaputra River (10 sites from upstream to downstream locations within the Indian region). The results were matched with the in-situ data collected from the GPS field trips and observed data collected from IWAI and CWC. In the first phase results of these two sites are presented herewith. Such 29 inland water bodies with (49 locations) are being done in the phase manner"
},
{
"source": "inland-water-height",
"text": "8\tUpdate frequency\tNear real time after the altimeter pass over the study area (35 days repetivity) 9\tAccess Rights or Restriction\tOpen Access 12\tTopic Category\tInland water bodies monitoring 13\tKeywords\tRivers/reservoirs, Satellite altimetry, waveform retracking, geophysical range corrections, water levels 14\tDate or period\tSince launch of SARAL-Altika (February 2013) 16a\tOrg. role\tRetrieval of water level using Remote sensing techniques 16d\tVertical Extent (minimumValue, maximumValue, unitOfMeasure, vertical datum)\tDefault value =NaN Unitofmeasurement= meter Datum: WGS84"
},
{
"source": "inland-water-height",
"text": "17\tGeographic Extent\tUL Coordinates: 40N, 65E. UR Coordinates: 40N, 100E. LL Coordinates: 5, 65E. LR Coordinates: 5, 100E."
},
{
"source": "inland-water-height",
"text": "18\tGeographic name, geographic Identifier\tIndian Region 19\tBounding box\tUL Coordinates: 40N, 65E. UR Coordinates: 40N, 105E. LL Coordinates: 5, 65E. LR Coordinates: 5, 105E."
},
{
"source": "inland-water-height",
"text": "20\tTemporal Extent\tHistorical time series plot of water heights over inland water body since the availability of altimeter measurement 21\tAccess Rights or Restrictions\tOpen Access 22\tDistribution Information\tOnline download in text, and PNG formats 23\tProcessing Level\tLevel 3 (Data product derived from altimeter IGDR/GDR product) \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "meteosat8-cloud-properties",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Home » Data Access » Open Data » Atmosphere » METEOSAT8 Cloud Properties NASA LaRC is operationally generating global cloud properties products using different geostationary satellites. This Metosat-8 cloud properties products include Cloud Phase, Optical Depth, Effective Water Radius, Effective Ice Diameter, Liquid Water Path, Ice Water Path, Effective Cloud Temperature, Cloud Top Height, Effective Cloud Height, Cloud Base Height, Cloud Top Pressure, Effective Cloud Pressure, Cloud Base Pressure, Broadband Albedo, Broadband Longwave Flux, and Cloud Thickness."
},
{
"source": "meteosat8-cloud-properties",
"text": "Click Here to access the Science Products. Request to use MOSDAC Single Sign On user credentials to download the data."
},
{
"source": "meteosat8-cloud-properties",
"text": "CDO Version : 1.9.3 , Conventions : CF 1.6 Cloud Properties Products, downloaded from LaRC, NASA https://satcorps.larc.nasa.gov/CERES_algorithms/ B. A. Wielicki, B. R. Barkstrom, B. A. Baum, T. P. Charlock, R. N. Green, D. P. Kratz, R. B. Lee, P. Minnis, G. L. Smith, T. Wong, D. F. Young, R. D. Cess, J. A. Coakley, D. A. H. Crommelynck, L. Donner, R. Kandel, M. D. King, A. J. Miller, V. Ramanathan, D. A. Randall, L. L. Stowe, R. M. Welch, \"Clouds and the Earth's Radiant Energy System (CERES): Algorithm overview\", IEEE Trans. Geosci. Remote Sens., vol. 36, no. 4, pp. 1127-1141, Jul. 1998."
},
{
"source": "meteosat8-cloud-properties",
"text": "C. Kummerow, W. Barnes, T. Kozu, J. Shine, J. Simpson, \"The Tropical Rainfall Measuring Mission system (TRMM) sensor package\", J. Atmos. Ocean. Technol., vol. 15, pp. 809-827, 1998 W. L. Barnes, T. S. Pagano, V. V. Salomonson, \"Prelaunch characteristics of the moderate resolution imaging spectroradiometer (MODIS) on EOS-AM1\", IEEE Trans. Geosci. Remote Sens., vol. 36, no. 4, pp. 1088-1100, Jul. 1998 Minnis, Patrick & Sun-Mack, Szedung & F. Young, David & W. Heck, Patrick & Garber, Donald & Chen, Yan & A Spangenberg, Douglas & Arduini, Robert & Trepte, Qing & Smith Sr, William & Ayers, J & Gibson, Sharon & F. Miller, Walter & Hong, Gang & Chakrapani, Venkatesan & Takano, Yoshihide & Liou, Kuo-Nan & Xie, Yu & Yang, Ping. (2011). CERES edition-2 cloud property retrievals using TRMM VIRS and Terra and Aqua MODIS data-Part I: Algorithms. IEEE TRANSACTIONS ON GEOSCIENCE AND REMOTE SENSING. 49. 10.1109/TGRS.2011.2144601."
},
{
"source": "meteosat8-cloud-properties",
"text": "Following file naming convention are followed:"
},
{
"source": "meteosat8-cloud-properties",
"text": "NetCDF File Name (NetCDFFileName): M8SEV_DDMMMYYYY_HHMM_L2B_CP_IND_V04.0.nc Parameter Chip File Name : NetCDFFilename_CloudParamName(4 Char).jpg SatIdSensorId_AcquisitionDateTime_ProcessingLevel_ProductName_ProductRegion_Version.nc AcquisitionDateTime (14 Char) = DDMMMYYYY_HHMM ProductName (2 Char) = CP (Cloud Properties) ProductRegion ( 3 Char) = IND (Indian Region) Version (5 Char) = V04.0 (Product Version Number) Sr. No\tCore Metadata Elements\tDefinition 4\tData Lineage or Quality\t Depends on Metosat 8 products, some times some data gaps may be observed"
},
{
"source": "meteosat8-cloud-properties",
"text": "5\tTitle\tCloud Properties Products from Meteosat-8 over Indian Peninsula 6\tAbstract\tNASA LaRC is operationally generating global cloud properties products using different geostationary satellites. This Metosat-8 cloud properties products include Cloud Phase, Optical Depth, Effective Water Radius, Effective Ice Diameter, Liquid Water Path, Ice Water Path, Effective Cloud Temperature, Cloud Top Height, Effective Cloud Height, Cloud Base Height, Cloud Top Pressure, Effective Cloud Pressure, Cloud Base Pressure, Broadband Albedo, Broadband Longwave Flux, and Cloud Thickness."
},
{
"source": "meteosat8-cloud-properties",
"text": "9\tAccess Rights or Restriction\tOpen Access 13\tKeywords\tCloud Properties, Climate, cloud, cloud remote sensing, Clouds and the Earth's Radiant Energy System (CERES), 14\tDate or period\tFrom 01-May-2018 onwards 16a\tOrg. role\tSAC: Extraction of Indian region and generation of chips LaRC: Generation of Cloud Properties product 16d\tVertical Extent (minimumValue, maximumValue, unitOfMeasure, vertical datum)\tCloud top Properties 17\tGeographic Extent\tUL Coordinates: 38 N, 65 E. UR Coordinates: 38 S, 97.5 E."
},
{
"source": "meteosat8-cloud-properties",
"text": "LL Coordinates: 5.5 N, 65 E. LR Coordinates: 5.5 S, 97.5 E 18\tGeographic name, geographic Identifier\tIndian Peninsula 19\tBounding box\tUL Coordinates: 38 N, 65 E. UR Coordinates: 38 S, 97.5 E."
},
{
"source": "meteosat8-cloud-properties",
"text": "LL Coordinates: 5.5 N, 65 E. LR Coordinates: 5.5 S, 97.5 E Number of Columns i.e. Image Width : 489 20\tTemporal Extent\tHourly Product with Given date, time in GMT 21\tAccess Rights or Restrictions\tOpen Access 22\tDistribution Information\tOnline download of data files in NetCDF format and images in jpg format 23\tProcessing Level\tLevel 2 (Data product derived from Metosat-8) 24\tReference System\tProjection: Geographic Latitude,Longitude; Datum: WGS84 \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "scatsat-1",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "node",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Satellite Images RADAR Weather OceanState LIVE Monsoon Onset Prediction over Kerala (2024) | PDF, Tool: PDFViewer, Size: 763.84 KB | 20-May-24 Onset over Kerala - Monsoon 2023 | PDF, Tool: PDFViewer, Size: 463.15 KB | 15-May-23 INSAT Product Version Information | PDF, Tool: PDFViewer, Size: 1.61 MB | 01-Sep-22 SFTP Services for Data Download | PDF, Tool: PDFViewer, Size: 347.33 KB | 08-Nov-21 \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "mosdac-feedback",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Detailed feedback can be sent to Web Information Manager/ Administrator at Contact Page How would you grade overall design of website * How would you grade the data ordering interface of website * Solve this simple math problem and enter the result. E.g. for 1+3, enter 4."
},
{
"source": "mosdac-feedback",
"text": "\"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "node",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Satellite Images RADAR Weather OceanState LIVE Nowcast Current Events Alerts Met Applications Ocean Applications COLD WAVE PREDICTION OVER INDIA (WRF MODEL) SAT. BASED CYCLONE OBSER. AND REALTIME PRED. OVER IO."
},
{
"source": "node",
"text": "HEAT WAVE PREDICTION OVER INDIA (WRF MODEL) HEAVY RAIN (>5MM/HR) FORECAST USING NWP MODEL."
},
{
"source": "node",
"text": "SEA STATE FORECAST IN TERMS OF WAVE HEIGHT, WAVE PERIOD ETC."
},
{
"source": "node",
"text": "3 DAYS SOLAR AND WIND FORECAST FOR EVERY 15 MINUTES Monsoon Onset Prediction over Kerala (2024) | PDF, Tool: PDFViewer, Size: 763.84 KB | 20-May-24 Onset over Kerala - Monsoon 2023 | PDF, Tool: PDFViewer, Size: 463.15 KB | 15-May-23 INSAT Product Version Information | PDF, Tool: PDFViewer, Size: 1.61 MB | 01-Sep-22 SFTP Services for Data Download | PDF, Tool: PDFViewer, Size: 347.33 KB | 08-Nov-21 \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "high-resolution-sea-surface-salinity",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Home » Data Access » Open Data » Ocean » High Resolution Sea Surface Salinity The Bay of Bengal's high-resolution sea surface salinity has been reconstructed using a Lagrangian technique leveraging satellite data. The primary input datasets utilized are sea surface salinity data from the SMAP mission and sea surface currents derived from altimetry. These datasets are obtained at a spatial resolution of 25 km. The SMAP mission has been operational since 2015, whereas altimetry-derived sea surface currents have been available since 1993. Validation of this reconstructed product was conducted against in-situ datasets obtained from thermo-salinographs. Results indicate that the reconstructed product more accurately captures front formation compared to the original SMAP salinity fields."
},
{
"source": "high-resolution-sea-surface-salinity",
"text": "Science products are available to download with a Single Sign On on MOSDAC. Click Here to access the data SMAP Sea Surface Salinity (https://podaac.jpl.nasa.gov/dataset/SMAP_JPL_L3_SSS_CAP_8DAY-RUNNINGMEAN_V5 ) Altimetry-derived sea surface currents (https://data.marine.copernicus.eu/product/SEALEVEL_GLO_PHY_L4_MY_008_047/ i. Remap Sea Surface Currents with a spatial resolution of 5 km."
},
{
"source": "high-resolution-sea-surface-salinity",
"text": "ii. Backward advection of particles from the final time {t} rsub {f} to the initial time {t} rsub {f} -14 , where 14 is the number of days the particles are advected using Runge-Kutta 4th order method."
},
{
"source": "high-resolution-sea-surface-salinity",
"text": "iii. The SMAP Sea Surface Salinity observed at {t} rsub {f} -14 is interpolated onto the particle positions that day."
},
{
"source": "high-resolution-sea-surface-salinity",
"text": "iv. With this, each particle has an SSS value on {t} rsub {f} day that corresponds to the observation at {t} rsub {f} -14 ."
},
{
"source": "high-resolution-sea-surface-salinity",
"text": "[1] Barbara, B., Drushka, K., & Gaube, P. (2021), “Lagrangian reconstruction to extract small-scale salinity variability from SMAP obervationsâ€, JGR Oceans, 126(3), e2020JC016477."
},
{
"source": "high-resolution-sea-surface-salinity",
"text": "[2] Dencausse, G., Morrow, R., Rogé, M., and Fleury, S. (2014). Lateral stirring of large-scale tracer fields by altimetry. Ocean Dynamics, 64(1), 61–78."
},
{
"source": "high-resolution-sea-surface-salinity",
"text": "[3] Desprès, A., Reverdin, G., and d'Ovidio, F. (2011). Mechanisms and spatial variability of mesoscale frontogenesis in the northwestern subpolar gyre. Ocean Modelling, 39(1), 97–113."
},
{
"source": "high-resolution-sea-surface-salinity",
"text": "[4] Durack, P. J., Lee, T., Vinogradova, N. T., and Stammer, D. (2016). Keeping the lights on for global ocean salinity observation. Nature Climate Change, 6(3), 228–231."
},
{
"source": "high-resolution-sea-surface-salinity",
"text": "[5] Lehahn, Y., d'Ovidio, F., and Koren, I. (2018). A satellite-based Lagrangian view on phytoplankton dynamics. Annual Review of Marine Science, 10(1), 99–119."
},
{
"source": "high-resolution-sea-surface-salinity",
"text": "[6] Rogé, M., Morrow, R. A., and Dencausse, G. (2015). Altimetric Lagrangian advection to reconstruct Pacific Ocean fine-scale surface tracer fields. Ocean Dynamics, 65(9), 1249–1268."
},
{
"source": "high-resolution-sea-surface-salinity",
"text": "The algorithm is called Lagrangian Reconstruction Technique. User should refer [1]."
},
{
"source": "high-resolution-sea-surface-salinity",
"text": "This algorithm is applicable only in the region with moderate to high eddy kinetic energy and where lateral advection dominates."
},
{
"source": "high-resolution-sea-surface-salinity",
"text": "High resolution sea surface salinity product generated by Lagrangian technique can have error due to tracer bias (depends on accuracy of initial conditions) and advection bias (Passive stirring can introduce bias due to mixing physics (air-sea fluxes, mixing etc.))."
},
{
"source": "high-resolution-sea-surface-salinity",
"text": "Data sets have biases as well as inaccuracy."
},
{
"source": "high-resolution-sea-surface-salinity",
"text": "Sr. No\tCore Metadata Elements\tDefinition 4\tData Lineage or Quality\tHigh resolution sea surface salinity in Bay of Bengal using Lagrangian technique."
},
{
"source": "high-resolution-sea-surface-salinity",
"text": "5\tTitle\tDynamic downscaling of Satellite Sea Surface Salinity for the Bay of Bengal 6\tAbstract\tLagrangian technique is used for generating high-resolution sea surface salinity fields in the Bay of Bengal. This is achieved through the utilization of Sea Surface Salinity (SSS) data derived from the Soil Moisture Active Passive (SMAP) satellite, in conjunction with sea surface currents obtained from altimetry. By employing forward and backward schemes for the numerical advection of SMAP SSS fields using altimeter-derived geostrophic currents, a Lagrangian reconstruction is produced, capturing smaller-scale features. The reliability of our in-house developed algorithm is assessed by comparing it with an available reconstructed product in the Gulf Stream. Additionally, a preliminary validation is conducted against insitu data obtained from a thermo-salinograph. Further, the developed algorithm was modified to select the advection time dynamically."
},
{
"source": "high-resolution-sea-surface-salinity",
"text": "9\tAccess Rights or Restriction\tOpen Access 10\tSpatial Resolution\tSpatial resolution is 10 km 12\tTopic Category\tHigh resolution sea surface salinity product (SAC-TDP) using satellite data."
},
{
"source": "high-resolution-sea-surface-salinity",
"text": "13\tKeywords\tSea surface salinity, sea surface currents, Lagrangian advection technique, high resolution 14\tDate or period\tApril 2015 - June 2023 16a\tOrg. role\tGeophysical parameters from satellite data in the Bay of Bengal region."
},
{
"source": "high-resolution-sea-surface-salinity",
"text": "16d\tVertical Extent (minimumValue, maximumValue, unitOfMeasure, vertical datum)\tLat_min : 0N, Lat_max : 25N, Lon_min: 78E, Lon_max: 100 E 18\tGeographic name, geographic Identifier\tBay of Bengal 19\tBounding box\tLat_min : 0N, Lat_max : 25 N, Lon_min: 78E, Lon_max: 100 E 21\tAccess Rights or Restrictions\tOpen Access 22\tDistribution Information\tOnline download of data files in netCDF format \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "opendata-inland_water_height",
"text": "मॉस्डैक सिंगल-साइन-ऑन (एसएसओ) MOSDAC Single-Sign-On (SSO) मॉस्डैक, अंतरिक्ष उपयोग केंद्र, इसरो, भारत सरकार द्वारा निर्मित और संचालित"
},
{
"source": "node-483-120",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "internal-weather",
"text": "Click on MAP to get weather forecast for a location or choose a city from side menu"
},
{
"source": "home",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Satellite Images RADAR Weather OceanState LIVE Nowcast Current Events Alerts Met Applications Ocean Applications COLD WAVE PREDICTION OVER INDIA (WRF MODEL) SAT. BASED CYCLONE OBSER. AND REALTIME PRED. OVER IO."
},
{
"source": "home",
"text": "HEAT WAVE PREDICTION OVER INDIA (WRF MODEL) HEAVY RAIN (>5MM/HR) FORECAST USING NWP MODEL."
},
{
"source": "home",
"text": "SEA STATE FORECAST IN TERMS OF WAVE HEIGHT, WAVE PERIOD ETC."
},
{
"source": "home",
"text": "3 DAYS SOLAR AND WIND FORECAST FOR EVERY 15 MINUTES Monsoon Onset Prediction over Kerala (2024) | PDF, Tool: PDFViewer, Size: 763.84 KB | 20-May-24 Onset over Kerala - Monsoon 2023 | PDF, Tool: PDFViewer, Size: 463.15 KB | 15-May-23 INSAT Product Version Information | PDF, Tool: PDFViewer, Size: 1.61 MB | 01-Sep-22 SFTP Services for Data Download | PDF, Tool: PDFViewer, Size: 347.33 KB | 08-Nov-21 \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "copyright-policy",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "node",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Satellite Images RADAR Weather OceanState LIVE Forecast Nowcast Current Events Alerts Met Applications Ocean Applications ALTIMETER LCS-CORES AND STRETCHING DIRECTIONS RIP CURRENT FORECAST FOR ALL-INDIA BEACHES."
},
{
"source": "node",
"text": "Monsoon Onset Prediction over Kerala (2024) | PDF, Tool: PDFViewer, Size: 763.84 KB | 20-May-24 Onset over Kerala - Monsoon 2023 | PDF, Tool: PDFViewer, Size: 463.15 KB | 15-May-23 INSAT Product Version Information | PDF, Tool: PDFViewer, Size: 1.61 MB | 01-Sep-22 SFTP Services for Data Download | PDF, Tool: PDFViewer, Size: 347.33 KB | 08-Nov-21 \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "oceansat-3-objectives",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Home » Missions » OCEANSAT-3 » Objectives To ensure the data continuity of Ocean colour and wind vector data to sustain the operational applications."
},
{
"source": "oceansat-3-objectives",
"text": "To improve the applications, some additional datasets such as Sea Surface Temperature and more number of bands in Optical region for florescence and in Infrared region for atmospheric corrections are accommodated."
},
{
"source": "oceansat-3-objectives",
"text": "To develop / improve related algorithms and data products to serve in well- established application areas and to enhance the mission utility."
},
{
"source": "oceansat-3-objectives",
"text": "\"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "node",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Satellite Images RADAR Weather OceanState LIVE Forecast Nowcast Current Events Alerts Met Applications SAT. BASED CYCLONE OBSER. AND REALTIME PRED. OVER IO."
},
{
"source": "node",
"text": "Monsoon Onset Prediction over Kerala (2024) | PDF, Tool: PDFViewer, Size: 763.84 KB | 20-May-24 Onset over Kerala - Monsoon 2023 | PDF, Tool: PDFViewer, Size: 463.15 KB | 15-May-23 INSAT Product Version Information | PDF, Tool: PDFViewer, Size: 1.61 MB | 01-Sep-22 SFTP Services for Data Download | PDF, Tool: PDFViewer, Size: 347.33 KB | 08-Nov-21 \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "node",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Satellite Images RADAR Weather OceanState LIVE Monsoon Onset Prediction over Kerala (2024) | PDF, Tool: PDFViewer, Size: 763.84 KB | 20-May-24 Onset over Kerala - Monsoon 2023 | PDF, Tool: PDFViewer, Size: 463.15 KB | 15-May-23 INSAT Product Version Information | PDF, Tool: PDFViewer, Size: 1.61 MB | 01-Sep-22 SFTP Services for Data Download | PDF, Tool: PDFViewer, Size: 347.33 KB | 08-Nov-21 \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "wave-based-renewable-energy",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Home » Data Access » Open Data » Ocean » Wave based Renewable Energy AWARE demonstrates potential renewable energy resource available from ocean waves over Indian Ocean region. The product is based on observations of the recent altimeters Jason-2 (2008-2014) and SARAL/Altika (2013-2014). It is particularly helpful in identification of ocean hotspots for extraction of ocean wave energy, that can be the next generation, environment friendly energy resource.It provides two types of products: Inter-annual monthly product from Jason-2 and SARAL/ALTIKA, Monthly climatology of ocean wave energy."
},
{
"source": "wave-based-renewable-energy",
"text": "Click Here to access the Science Products . Request to use MOSDAC Single Sign On user credentials to download the data."
},
{
"source": "wave-based-renewable-energy",
"text": "The significant wave height (SWH) and wind speed for both the altimeters are taken from Using Significant Wave Height (SWH) and wind speed, the wave period is derived based on the data adaptive technique of \" Genetic Algorithm \" (Remya et al. 2011) Wave period hence derived is validated using buoy observations from Indian National Center for Ocean Information Services (INCOIS) Wave power is derived based on SWH and estimated wave period R. Govindan, R. Kumar, S. Basu and A. Sarkar. \" Altimeter-Derived Ocean Wave Period Using Genetic Algorithm, \" IEEE Geosci. Remote Sens. Lett.,VOL 8.NO. 2,pp. 354 - 358, March 2011"
},
{
"source": "wave-based-renewable-energy",
"text": "A. Alvarez, A.Orfila , J.Tintore, \" DARWIN: An evolutionary program for nonlinear modeling of chaotic time series, \" Computer Physics Communications 136, pp.334- 349 2001 A. Soni, \" Application of SARAL/AltiKa in extraction of wave power over Indian Ocean Region, \" M. Tech Dissertation, Department of Computer Sciences, Ganpat University, Gujarat, March 2015 The wave power (P) is mathematically derived as P is Wave power per unit of wave-crest length (in Kilowatt/m) Hm0 is the significant wave height (in meters)"
},
{
"source": "wave-based-renewable-energy",
"text": "ρ is the density of water (in kilogram/cubic meter) g is the acceleration due to gravity (in meters/square seconds) The products have gaps as they are based purely on track altimeters data."
},
{
"source": "wave-based-renewable-energy",
"text": "Data problems due to bad weather (heavy rain) For inter-annual monthly product from Jason-2 and SARAL/ALTIKA Example: WE_SARL_JUL_2009 represents the wave energy from SARAL/Altika during July 2009."
},
{
"source": "wave-based-renewable-energy",
"text": "For Monthly climatology of ocean wave energy Parametername_CLIM_month_start year-end year Example: WE_CLIM_JUL_2008-2014 represents the wave energy climatology during July 2008-2014."
},
{
"source": "wave-based-renewable-energy",
"text": "Sr. No\tCore Metadata Elements\tDefinition 4\tData Lineage\tWave power in Kilowatt/meter from Altimeters over Indian Ocean Region 5\tTitle\tAltimeters for Wave based Renewable Energy (AWARE) 6\tAbstract\tThe wave power is computed from the altimeters (Jason-2 and SARAL/AltiKa) for a period of 2008-2014 at a monthly basis for individual years. Climatology is also prepared in this regard for the Indian Ocean Region."
},
{
"source": "wave-based-renewable-energy",
"text": "9\tAccess Rights or Restriction\tOpen Access 13\tKeywords\tWave power, non-conventional energy, wave period and Significant Wave Height 16a\tOrg. role\tEstimation of non-conventional wave energy using active microwave remote sensing instruments \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "weather-reports",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "terms-conditions",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre This website is designed, developed and maintained by Space Applications Centre, Indian Space Research Organisation, Department of Space, Government of India."
},
{
"source": "terms-conditions",
"text": "Though all efforts have been made to ensure the accuracy and currency of the content of this website, the same should not be construed as a statement of law or used for any legal purposes."
},
{
"source": "terms-conditions",
"text": "Under no circumstances the MOSDAC will be liable for any expense, loss or damage including, without limitation, indirect or consequential loss or damage, or any expense, loss or damage whatsoever arising from use, or loss or use, of data, arising out of or in connection with use of this website."
},
{
"source": "terms-conditions",
"text": "The terms and conditions shall be governed by and construed in accordance with the Indian Laws. Any dispute arising under these terms and conditions shall be subject to the exclusive jurisdiction of the courts of India."
},
{
"source": "terms-conditions",
"text": "\"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "opendata-metosat8_cloud_properties",
"text": "मॉस्डैक सिंगल-साइन-ऑन (एसएसओ) MOSDAC Single-Sign-On (SSO) मॉस्डैक, अंतरिक्ष उपयोग केंद्र, इसरो, भारत सरकार द्वारा निर्मित और संचालित"
},
{
"source": "scatsat-1-spacecraft",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Home » Missions » SCATSAT-1 » SpaceCraft SCATSAT-1 is envisaged to provide continuity of operational services of OSCAT (IRS-P4) with enhanced application potential."
},
{
"source": "scatsat-1-spacecraft",
"text": "Launch site:\tSDSC (Satish Dhawan Space Centre), Sriharikota."
},
{
"source": "scatsat-1-spacecraft",
"text": "Power:\t15 Sq.m Solar panels generating 1360W, Two 24 Ah Ni-Cd Battries \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "saral-altika",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "node",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Satellite Images RADAR Weather OceanState LIVE Nowcast Current Events Alerts Met Applications Ocean Applications COLD WAVE PREDICTION OVER INDIA (WRF MODEL) SAT. BASED CYCLONE OBSER. AND REALTIME PRED. OVER IO."
},
{
"source": "node",
"text": "HEAT WAVE PREDICTION OVER INDIA (WRF MODEL) HEAVY RAIN (>5MM/HR) FORECAST USING NWP MODEL."
},
{
"source": "node",
"text": "SEA STATE FORECAST IN TERMS OF WAVE HEIGHT, WAVE PERIOD ETC."
},
{
"source": "node",
"text": "3 DAYS SOLAR AND WIND FORECAST FOR EVERY 15 MINUTES Monsoon Onset Prediction over Kerala (2024) | PDF, Tool: PDFViewer, Size: 763.84 KB | 20-May-24 Onset over Kerala - Monsoon 2023 | PDF, Tool: PDFViewer, Size: 463.15 KB | 15-May-23 INSAT Product Version Information | PDF, Tool: PDFViewer, Size: 1.61 MB | 01-Sep-22 SFTP Services for Data Download | PDF, Tool: PDFViewer, Size: 347.33 KB | 08-Nov-21 \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "weather-reports",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "node",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Satellite Images RADAR Weather OceanState LIVE Alerts Met Applications Ocean Applications LET'S INTERACTIVELY VISUALISE THE EARTH (LIVE) Monsoon Onset Prediction over Kerala (2024) | PDF, Tool: PDFViewer, Size: 763.84 KB | 20-May-24 Onset over Kerala - Monsoon 2023 | PDF, Tool: PDFViewer, Size: 463.15 KB | 15-May-23 INSAT Product Version Information | PDF, Tool: PDFViewer, Size: 1.61 MB | 01-Sep-22 SFTP Services for Data Download | PDF, Tool: PDFViewer, Size: 347.33 KB | 08-Nov-21"
},
{
"source": "node",
"text": "\"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "node",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Satellite Images RADAR Weather OceanState LIVE Monsoon Onset Prediction over Kerala (2024) | PDF, Tool: PDFViewer, Size: 763.84 KB | 20-May-24 Onset over Kerala - Monsoon 2023 | PDF, Tool: PDFViewer, Size: 463.15 KB | 15-May-23 INSAT Product Version Information | PDF, Tool: PDFViewer, Size: 1.61 MB | 01-Sep-22 SFTP Services for Data Download | PDF, Tool: PDFViewer, Size: 347.33 KB | 08-Nov-21 \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "sea-ice-occurrence-probability",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Home » Data Access » Open Data » Ocean » Sea Ice Occurrence Probability The Sea Ice Occurrence Probability (SIOP36) data were prepared from 36 years (October 1978 to December 2014) NSIDC sea ice concentration (SIC) data over the Antarctic Region (Cavalieri, 1996). The SIC data were downloaded from NSIDC data site:(http://nsidc.org/data (link is external)). The SIOP36 data consist of 366 data files corresponding to 366 days with the first file representing 1st January and the last, 31st December. The file naming nomenclature follows SIOP36_MMDD_S.bin[.tif/.png] format; where MM refers to month number (01 to 12, 01 being January), DD refers to date of the month, and the character S refers to Southern Hemishphere."
},
{
"source": "sea-ice-occurrence-probability",
"text": "Data formats are indicated by .bin (Binary), .tif (GeoTIFF), and .png (Portable Network Graphics). Data is freely available to global scientific community and can be downloaded from www.mosdac.gov.in (link is external). Probability values are calculated from the long-term NASA Team algorithm-derived SMMR-SSM/I-SSMIS sea ice concentration product (Cavalieri, 1996). The dataset is given in Polar Stereographic projection with a grid size of 25km x 25km in latitude and longitude. The grid coordinates of the upper left pixel are 39.2 deg S, 42.2 deg W. There are 316 columns and 332 rows. Data values are stored as IEEE floats representing probabilities in the range 0-100%. Pixels with zero values corresponds to either Antarctic land/ice or ocean water."
},
{
"source": "sea-ice-occurrence-probability",
"text": "Click Here to access the Science Products . Request to use MOSDAC Single Sign On user credentials to download the data."
},
{
"source": "sea-ice-occurrence-probability",
"text": "The major input data is NASA Team algorithm-derived SMMR-SSM/I-SSMIS sea ice concentration data over Antarctic Region (Cavalieri, 1996) for 36 years (October 1978 to December 2014). The data was downloaded from NSIDC data site: (http://nsidc.org/data Following are the three major processing steps :"
},
{
"source": "sea-ice-occurrence-probability",
"text": "i. Classification of pixels into sea-ice and non-sea-ice classes."
},
{
"source": "sea-ice-occurrence-probability",
"text": "ii. Determination of sea-ice-pixel frequency over study period iv. Converting the data into three (.bin, .tif, and .png) formats."
},
{
"source": "sea-ice-occurrence-probability",
"text": "This dataset may be cited as (Rajak et al, 2015). Rajak D. Ram, R.K. Kamaljit Singh, Jayaprasad P., Sandip R. Oza, Rashmi Sharma, and Raj Kumar (2015). Sea Ice Occurrence Probability Data and Its Applications Over the Antarctic. Manuscript submitted to a journal."
},
{
"source": "sea-ice-occurrence-probability",
"text": "Cavalieri, D. J., C. L. Parkinson, P. Gloersen, and H. Zwally. 1996, updated yearly. Sea Ice Concentrations from Nimbus-7 SMMR and DMSP SSM/I-SSMIS Passive Microwave Data. [October 1978 to December 2012]. Boulder, Colorado USA: NASA National Snow and Ice Data CentreDistributed Active Archive Centre."
},
{
"source": "sea-ice-occurrence-probability",
"text": "This dataset may be cited as (Rajak et al, 2015)."
},
{
"source": "sea-ice-occurrence-probability",
"text": "Comiso, J. C. 2000, updated 2014. Bootstrap Sea Ice Concentrations from Nimbus-7 SMMR and DMSP SSM/I-SSMIS. Version 2. [October 1978 to December 2012]. Boulder, Colorado USA: NASA DAAC at the National Snow and Ice Data Center."
},
{
"source": "sea-ice-occurrence-probability",
"text": "Rajak D. Ram, R.K. Kamaljit Singh, Jayaprasad P., Sandip R. Oza, Rashmi Sharma, and Raj Kumar (2015). PROBABILISTIC SEA ICE OCCURRENCE DATA OVER ANTARCTIC REGION. Manuscript under preparation."
},
{
"source": "sea-ice-occurrence-probability",
"text": "Daily Probability of occurrence of sea ice: Pr = 100 x N / (Y-n) N, is the number of times the pixel has been classified as sea ice (sea ice concentration => 15%);"
},
{
"source": "sea-ice-occurrence-probability",
"text": "Y, is the total possible observations, and n is the number of years with data loss on that particular date."
},
{
"source": "sea-ice-occurrence-probability",
"text": "Accuracy assessment of the dataset has not been carried out."
},
{
"source": "sea-ice-occurrence-probability",
"text": "The inherent problems of the major input sea ice concentration data (from NSIDC site) may be considered the problems with this dataset."
},
{
"source": "sea-ice-occurrence-probability",
"text": "Northern Hemisphere EASE-Grid 2.0 Weekly Snow Cover and Sea Ice Extent. Version 4. Boulder, Colorado USA: NASA DAAC at the National Snow and Ice Data Center (Brodzik, M. and R. Armstrong. 2013.). [http://nsidc.org/data The file names follows SIOP36_MMDD_S.bin[.tif/.png] naming convention;"
},
{
"source": "sea-ice-occurrence-probability",
"text": "MM refers to month number (01 to 12, 01 being January), Data types are indicated by .bin (binary), .tif (geotiff), and .png (portable network graphics)."
},
{
"source": "sea-ice-occurrence-probability",
"text": "Sr. No\tCore Metadata Elements\tDefinition 4\tData Lineage or Quality\tFirst ever sea ice occurrence probability data available over the Antarctic 5\tTitle\tSea Ice Occurrence Probability Data over the Antarctic (SIOP36)."
},
{
"source": "sea-ice-occurrence-probability",
"text": "6\tAbstract\tAntarctic Sea Ice Occurrence Probability (SIOP) for each day from January 1st to December 31st is generated from NSIDC sea ice concentration data (Comiso, 2000) which were downloaded from the NSIDC site: (http://nsidc.org/data ). The SIOP data for 36 years (October 1978 to December 2014) are named as SIOP36 9\tAccess Rights or Restriction\tOpen Access 13\tKeywords\tSea Ice, Probability, the Antarctic 14\tDate or period\tJanuary 01 to December 31 Sea Ice Occurrence Daily Probability calculated from October 1978 to December 2014 data"
},
{
"source": "sea-ice-occurrence-probability",
"text": "16a\tOrg. role\tCalculated Sea Ice Occurrence Probability (SIOP) for each day from January 1st to December 31st using NSIDC sea ice concentration data (Comiso, 2000). Further details are available in Rajak et al, 2015 16d\tVertical Extent (minimumValue, maximumValue, unitOfMeasure, vertical datum)\tProbability in percentage. Minimum value = 0.0294%. Maximum value = 100.0%. Mask: Antarctica land/ice and open ocean water (value = 0.0) 17\tGeographic Extent\tUL Coordinates: 40S, 42W. UR Coordinates: 40S, 42E. LL Coordinates: 42S, 135W. LR Coordinates: 42S, 135E"
},
{
"source": "sea-ice-occurrence-probability",
"text": "18\tGeographic name, geographic Identifier\tOcean surrounding Antarctica 19\tBounding box\tUL Coordinates: 40S, 42W. UR Coordinates: 40S, 42E. LL Coordinates: 42S, 135W. LR Coordinates: 42S, 135E. Number of columns i. e. image width: 316 pixels. Number of Rows i.e. Image Height: 332 pixels 20\tTemporal Extent\tBased on input NSIDC Sea Ice Concentration Data October 1978 to December 2014 21\tAccess Rights or Restrictions\tOpen Access 22\tDistribution Information\tOnline download in Binary, GeoTIFF and PNG formats. Binary and GeoTIFF data in Float format"
},
{
"source": "sea-ice-occurrence-probability",
"text": "23\tProcessing Level\tLevel 4 (Data product derived from sea ice concentration product) 24\tReference System\tProjection: Polar Stereographic (0.0 E,70.0 S,0.0 m,0.0 m). Datum: WGS84 \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "node",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Satellite Images RADAR Weather OceanState LIVE Forecast Nowcast Current Events Alerts Met Applications Ocean Applications ALTIMETER LCS-CORES AND STRETCHING DIRECTIONS RIP CURRENT FORECAST FOR ALL-INDIA BEACHES."
},
{
"source": "node",
"text": "Monsoon Onset Prediction over Kerala (2024) | PDF, Tool: PDFViewer, Size: 763.84 KB | 20-May-24 Onset over Kerala - Monsoon 2023 | PDF, Tool: PDFViewer, Size: 463.15 KB | 15-May-23 INSAT Product Version Information | PDF, Tool: PDFViewer, Size: 1.61 MB | 01-Sep-22 SFTP Services for Data Download | PDF, Tool: PDFViewer, Size: 347.33 KB | 08-Nov-21 \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "insat-3d",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Data Reception (DR) system to generate raw data (L0) files Data Processing (DP) system to process L0 data and produce L1B data files (Calibrated and Geo located) Product generation and Dissemination system \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "help",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Know about the accessibility statement, accessibility features, and accessibility options. We are committed to ensure that the SAC website is accessible to all users irrespective of device in use, technology or ability. It has been built, with an aim,to provide maximum accessibility and usability to its visitors."
},
{
"source": "help",
"text": "We have put in our best efforts to ensure that all information on this Portal is accessible to people with disabilities. For example, a user with visual disability can access this Portal using assistive technologies, such as screen readers and magnifiers."
},
{
"source": "help",
"text": "We also aim to be standards compliant and follow principles of usability and universal design, which should help all visitors of this Portal."
},
{
"source": "help",
"text": "This Portal is designed using XHTML 1.0 Transitional and meets priority 1 (level A) of the Web Content Accessibility Guidelines (WCAG) 2.0 laid down by the World Wide Web Consortium (W3C). Part of the information in the Portal is also made available through links to external Web sites. External Web sites are maintained by the respective departments who are responsible for making these sites accessible."
},
{
"source": "help",
"text": "Portable Document Format (PDF) files\tAdobe Acrobat Reader Following different options are provided in the form of icons which are available on the top of each page:"
},
{
"source": "help",
"text": "Allows to increase the text size up to Two levels Allows to decrease the text size up to Two levels Changing the color scheme refers to applying a suitable background and text color that ensures clear readability. There are two options provided to change the color scheme. These are:"
},
{
"source": "help",
"text": "Provides information regarding access to different Screen Readers."
},
{
"source": "help",
"text": "Space Applications Centre fully complies with Guidelines for Indian Government Websites (link is external). Our visitors with visual impairments can access the Portal using Assistive Technologies, such as screen readers."
},
{
"source": "help",
"text": "The information of the Portal is accessible with different screen readers, such as JAWS, NVDA, SAFA, Supernova and Window-Eyes."
},
{
"source": "help",
"text": "Following table lists the information about different screen readers:"
},
{
"source": "help",
"text": "Non Visual Desktop Access (NVDA)\thttp://www.nvda-project.org Hal\thttp://www.yourdolphin.co.uk/productdetail.asp?id=5 JAWS\thttp://www.freedomscientific.com/jaws-hq.asp Supernova\thttp://www.yourdolphin.co.uk/productdetail.asp?id=1 \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "internal-catalog-oceansat3",
"text": "Acq Calendar/Version\tProduct Description\tProcessing Level\tTemporal Resolution\tStart Date\tEnd Date\tProcessing Status\tDOI Scenewise Aerosol Optical Depth over Land\tL2\tSCENEWISE\t2024-10-01\t2025-07-02\tActive Coloured Dissolved Organic Matter (CDOM) Absorption Coefficient at 412nm (units m-1)\tL2\tSCENEWISE\t2025-05-05\t2025-07-01\tActive Inherent Optical Properties\tL2\tSCENEWISE\t2025-05-15\t2025-07-01\tActive Instantaneous_Photosynthetically_Active_Radiation\tL2\tSCENEWISE\t2025-05-12\t2025-07-02\tActive Scenewise Phytoplankton size class\tL2\tSCENEWISE\t2025-07-02\t2025-07-02\tActive"
},
{
"source": "internal-catalog-oceansat3",
"text": "Daily Aerosol Optical Depth over Land\tL3\tDAILY\t2023-06-01\t2025-07-02\tActive The Analyzed Chlorophyll products are generated by combining OCM-3 derived chlorophyll observations with coupled physical-biogeochemical model simulation of chlorophyll using particle filter based assimilation technique. The model utilized is MOM5, coupled with biogeochemical model TOPAZ.\tL4\tDAILY\t2023-07-17\t2025-07-03\tActive Ver 3.0; Last reviewed and updated on 22 Aug, 2024"
},
{
"source": "node",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Satellite Images RADAR Weather OceanState LIVE Forecast Nowcast Current Events Alerts Met Applications SAT. BASED CYCLONE OBSER. AND REALTIME PRED. OVER IO."
},
{
"source": "node",
"text": "Monsoon Onset Prediction over Kerala (2024) | PDF, Tool: PDFViewer, Size: 763.84 KB | 20-May-24 Onset over Kerala - Monsoon 2023 | PDF, Tool: PDFViewer, Size: 463.15 KB | 15-May-23 INSAT Product Version Information | PDF, Tool: PDFViewer, Size: 1.61 MB | 01-Sep-22 SFTP Services for Data Download | PDF, Tool: PDFViewer, Size: 347.33 KB | 08-Nov-21 \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "node-543-7",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "opendata-sea_ice_probability",
"text": "मॉस्डैक सिंगल-साइन-ऑन (एसएसओ) MOSDAC Single-Sign-On (SSO) मॉस्डैक, अंतरिक्ष उपयोग केंद्र, इसरो, भारत सरकार द्वारा निर्मित और संचालित"
},
{
"source": "calibration-reports",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "weather-reports",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "node-1975-5",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "node",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Satellite Images RADAR Weather OceanState LIVE Alerts Met Applications Ocean Applications LET'S INTERACTIVELY VISUALISE THE EARTH (LIVE) Monsoon Onset Prediction over Kerala (2024) | PDF, Tool: PDFViewer, Size: 763.84 KB | 20-May-24 Onset over Kerala - Monsoon 2023 | PDF, Tool: PDFViewer, Size: 463.15 KB | 15-May-23 INSAT Product Version Information | PDF, Tool: PDFViewer, Size: 1.61 MB | 01-Sep-22 SFTP Services for Data Download | PDF, Tool: PDFViewer, Size: 347.33 KB | 08-Nov-21"
},
{
"source": "node",
"text": "\"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "insat-3ds",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre INSAT-3DS is identical to INSAT-3D in terms of Sensors and products."
},
{
"source": "insat-3ds",
"text": "Data Reception (DR) system to generate raw data (L0) files Data Processing (DP) system to process L0 data and produce L1B data files (Calibrated and Geo located) Product generation and Dissemination system \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "node",
"text": "Meteorological & Oceanographic Satellite Data Archival Centre Satellite Images RADAR Weather OceanState LIVE Nowcast Current Events Alerts Met Applications Ocean Applications COLD WAVE PREDICTION OVER INDIA (WRF MODEL) SAT. BASED CYCLONE OBSER. AND REALTIME PRED. OVER IO."
},
{
"source": "node",
"text": "HEAT WAVE PREDICTION OVER INDIA (WRF MODEL) HEAVY RAIN (>5MM/HR) FORECAST USING NWP MODEL."
},
{
"source": "node",
"text": "SEA STATE FORECAST IN TERMS OF WAVE HEIGHT, WAVE PERIOD ETC."
},
{
"source": "node",
"text": "3 DAYS SOLAR AND WIND FORECAST FOR EVERY 15 MINUTES Monsoon Onset Prediction over Kerala (2024) | PDF, Tool: PDFViewer, Size: 763.84 KB | 20-May-24 Onset over Kerala - Monsoon 2023 | PDF, Tool: PDFViewer, Size: 463.15 KB | 15-May-23 INSAT Product Version Information | PDF, Tool: PDFViewer, Size: 1.61 MB | 01-Sep-22 SFTP Services for Data Download | PDF, Tool: PDFViewer, Size: 347.33 KB | 08-Nov-21 \"Ver 3.0; Last reviewed and updated on 06 Jul, 2025& Served By: Web-Srv-Pri"
},
{
"source": "rss.xml",
"text": "<?xml version=\"1.0\" encoding=\"utf-8\" ?><rss version=\"2.0\" xml:base=\"https://www.mosdac.gov.in/rss.xml\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:atom=\"http://www.w3.org/2005/Atom\" xmlns:content=\"http://purl.org/rss/1.0/modules/content/\" xmlns:foaf=\"http://xmlns.com/foaf/0.1/\" xmlns:og=\"http://ogp.me/ns#\" xmlns:rdfs=\"http://www.w3.org/2000/01/rdf-schema#\" xmlns:sioc=\"http://rdfs.org/sioc/ns#\" xmlns:sioct=\"http://rdfs.org/sioc/types#\" xmlns:skos=\"http://www.w3.org/2004/02/skos/core#\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema#\">"
},
{
"source": "rss.xml",
"text": "<link>https://www.mosdac.gov.in/rss.xml</link> <atom:link href=\"https://www.mosdac.gov.in/rss.xml\" rel=\"self\" type=\"application/rss+xml\" /> <link>https://www.mosdac.gov.in/external/nowcast-heavyrain</link> <description> Heavy Rain Alerts in Darlawn Champhai Aizawl ..... cities of India</description> <guid isPermaLink=\"false\">Heavy Rain (Nowcast)</guid> <link>https://www.mosdac.gov.in/external/forecast-heavyrain</link> <description> Heavy Rain Alerts in Bhubaneswar Cuddapah Kurnool ..... cities of India</description>"
},
{
"source": "rss.xml",
"text": "<guid isPermaLink=\"false\">Heavy Rain (Forecast)</guid>"
},
{
"source": "3drimager.xml",
"text": "This XML file does not appear to have any style information associated with it. The document tree is shown below."
},
{
"source": "3drimager.xml",
"text": "<rss xmlns:datacasting=\"http://datacasting.jpl.nasa.gov/datacasting\" xmlns:georss=\"http://www.georss.org/georss\" xmlns:gml=\"http://www.opengis.net/gml\" version=\"2.0\"> <description>Datacasting of INSAT-3DR for IMAGER sensor</description> <datacasting:channelUID>insat3dr_imager</datacasting:channelUID> <datacasting:dataSource>MOSDAC Geophysical Products</datacasting:dataSource> <datacasting:dataOnlyInFeed>false</datacasting:dataOnlyInFeed> <managingEditor>admin <admin@mosdac.gov.in></managingEditor>"
},
{
"source": "3drimager.xml",
"text": "<webMaster>admin@mosdac.gov.in</webMaster> <pubDate>Wed, 24 Aug 2022 08:35:07 GMT</pubDate> <generator>Datacasting Feed Publishing Tools</generator> <docs>http://datacasting.jpl.nasa.gov/datacasting.html</docs> <url>http://mosdac.gov.in/data/img/MOSDAC_banner.png</url> <description>INSAT-3DR SOUNDER Data</description> <link>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L1C_ASIA_MER_IR1.jpg</link> <datacasting:acquisitionStartDate>Wed, 24 Aug 2022 07:45:00 GMT</datacasting:acquisitionStartDate>"
},
{
"source": "3drimager.xml",
"text": "<gml:lowerCorner>-10.000000 44.000000</gml:lowerCorner> <gml:upperCorner>45.000000 110.000000</gml:upperCorner> <datacasting:preview>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L1C_ASIA_MER_IR1.jpg</datacasting:preview> <datacasting:productName>3RIMG_24AUG2022_0745_L1C_ASIA_MER.h5</datacasting:productName> <description>IMAGER- 6 channel Level1 data in Mercator projection for Asian Sector</description> <guid isPermaLink=\"true\">http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L1C_ASIA_MER_IR1.jpg</guid>"
},
{
"source": "3drimager.xml",
"text": "<pubDate>Wed, 24 Aug 2022 08:32:00 GMT</pubDate> <link>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2P_WVW.gif</link> <datacasting:acquisitionStartDate>Wed, 24 Aug 2022 07:45:00 GMT</datacasting:acquisitionStartDate> <gml:lowerCorner>-48.000000 21.000000</gml:lowerCorner> <gml:upperCorner>49.000000 128.000000</gml:upperCorner> <datacasting:preview>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2P_WVW.gif</datacasting:preview> <datacasting:productName>3RIMG_24AUG2022_0745_L2P_WVW.h5</datacasting:productName>"
},
{
"source": "3drimager.xml",
"text": "<description>Water vapour derived wind vectors</description> <guid isPermaLink=\"true\">http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2P_WVW.gif</guid> <pubDate>Wed, 24 Aug 2022 08:35:00 GMT</pubDate> <link>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2B_CMK.jpg</link> <datacasting:acquisitionStartDate>Wed, 24 Aug 2022 07:45:00 GMT</datacasting:acquisitionStartDate> <gml:lowerCorner>-81.000000 -7.000000</gml:lowerCorner> <gml:upperCorner>81.000000 155.000000</gml:upperCorner>"
},
{
"source": "3drimager.xml",
"text": "<datacasting:preview>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2B_CMK.jpg</datacasting:preview> <datacasting:productName>3RIMG_24AUG2022_0745_L2B_CMK.h5</datacasting:productName> <description>INSAT-3DR VHRR measures radiances in one visible and one SWIR band at 1 km spatial resolution, one MIR and two TIR bands at 4 km resolution, and one WV band at 8 km resolution. Radiances from 3 IR spectral bands TIR ?1 , TIR ?2 and MIR which are of same resolution of 4km are used in the INSAT cloud mask algorithm to estimate whether a given view of the earth surface is unobstructed by clouds</description>"
},
{
"source": "3drimager.xml",
"text": "<guid isPermaLink=\"true\">http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2B_CMK.jpg</guid> <pubDate>Wed, 24 Aug 2022 08:32:00 GMT</pubDate> <link>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2C_CER.jpg</link> <datacasting:acquisitionStartDate>Wed, 24 Aug 2022 07:45:00 GMT</datacasting:acquisitionStartDate> <gml:lowerCorner>-50.000000 20.000000</gml:lowerCorner> <gml:upperCorner>50.000000 130.000000</gml:upperCorner> <datacasting:preview>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2C_CER.jpg</datacasting:preview>"
},
{
"source": "3drimager.xml",
"text": "<datacasting:productName>3RIMG_24AUG2022_0745_L2C_CMP.h5</datacasting:productName> <description>Day-time cloud microphysical parameters from visible and SWIR channels of INSAT-3DR imager</description> <guid isPermaLink=\"true\">http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2C_CER.jpg</guid> <pubDate>Wed, 24 Aug 2022 08:35:00 GMT</pubDate> <link>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0715_L2P_VSW.gif</link> <datacasting:acquisitionStartDate>Wed, 24 Aug 2022 07:15:00 GMT</datacasting:acquisitionStartDate>"
},
{
"source": "3drimager.xml",
"text": "<gml:lowerCorner>-48.000000 22.000000</gml:lowerCorner> <gml:upperCorner>31.000000 128.000000</gml:upperCorner> <datacasting:preview>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0715_L2P_VSW.gif</datacasting:preview> <datacasting:productName>3RIMG_24AUG2022_0715_L2P_VSW.h5</datacasting:productName> <description>Winds derived using Visible band data of IMAGER</description> <guid isPermaLink=\"true\">http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0715_L2P_VSW.gif</guid>"
},
{
"source": "3drimager.xml",
"text": "<pubDate>Wed, 24 Aug 2022 08:05:00 GMT</pubDate> <link>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2P_FIR.jpg</link> <datacasting:acquisitionStartDate>Wed, 24 Aug 2022 07:45:00 GMT</datacasting:acquisitionStartDate> <gml:lowerCorner>-29.000000 24.000000</gml:lowerCorner> <gml:upperCorner>52.000000 118.000000</gml:upperCorner> <datacasting:preview>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2P_FIR.jpg</datacasting:preview> <datacasting:productName>3RIMG_24AUG2022_0745_L2P_FIR.kml</datacasting:productName>"
},
{
"source": "3drimager.xml",
"text": "<description>This is an Active FIRE product which shows that the pixel is warm enough to be qualified as fire. This is derived using MIR (T3) and TIR1 (T5) channel BT from INSAT-3DR imager.</description> <guid isPermaLink=\"true\">http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2P_FIR.jpg</guid> <pubDate>Wed, 24 Aug 2022 08:32:00 GMT</pubDate> <link>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2C_INS.jpg</link> <datacasting:acquisitionStartDate>Wed, 24 Aug 2022 07:45:00 GMT</datacasting:acquisitionStartDate>"
},
{
"source": "3drimager.xml",
"text": "<gml:lowerCorner>-10.000000 44.000000</gml:lowerCorner> <gml:upperCorner>45.000000 110.000000</gml:upperCorner> <datacasting:preview>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2C_INS.jpg</datacasting:preview> <datacasting:productName>3RIMG_24AUG2022_0745_L2C_INS.h5</datacasting:productName> <description>INSAT-3DR derived INSOLATION</description> <guid isPermaLink=\"true\">http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2C_INS.jpg</guid> <pubDate>Wed, 24 Aug 2022 08:32:00 GMT</pubDate>"
},
{
"source": "3drimager.xml",
"text": "<link>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2B_SST.jpg</link> <datacasting:acquisitionStartDate>Wed, 24 Aug 2022 07:45:00 GMT</datacasting:acquisitionStartDate> <gml:lowerCorner>-81.000000 -7.000000</gml:lowerCorner> <gml:upperCorner>81.000000 155.000000</gml:upperCorner> <datacasting:preview>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2B_SST.jpg</datacasting:preview> <datacasting:productName>3RIMG_24AUG2022_0745_L2B_SST.h5</datacasting:productName>"
},
{
"source": "3drimager.xml",
"text": "<description>Sea surface temperature is derived from split thermal window channels (TIR1, TIR2) during daytime and using additional mid IR window channel (MIR) during night time over cloud free oceanic regions. The most important part of the SST retrieval from IR observations is the atmospheric correction, especially over tropics. This correction is determined through a suitable characterization of tropical atmospheres in radiative transfer model to simulate the brightness temperatures of INSAT-3DR channels a</description>"
},
{
"source": "3drimager.xml",
"text": "<guid isPermaLink=\"true\">http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2B_SST.jpg</guid> <pubDate>Wed, 24 Aug 2022 08:35:00 GMT</pubDate> <link>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2P_VSW.gif</link> <datacasting:acquisitionStartDate>Wed, 24 Aug 2022 07:45:00 GMT</datacasting:acquisitionStartDate> <gml:lowerCorner>-48.000000 31.000000</gml:lowerCorner> <gml:upperCorner>32.000000 128.000000</gml:upperCorner> <datacasting:preview>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2P_VSW.gif</datacasting:preview>"
},
{
"source": "3drimager.xml",
"text": "<datacasting:productName>3RIMG_24AUG2022_0745_L2P_VSW.h5</datacasting:productName> <description>Winds derived using Visible band data of IMAGER</description> <guid isPermaLink=\"true\">http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2P_VSW.gif</guid> <pubDate>Wed, 24 Aug 2022 08:35:00 GMT</pubDate> <link>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0715_L2G_MIDSH.jpg</link> <datacasting:acquisitionStartDate>Wed, 24 Aug 2022 07:15:00 GMT</datacasting:acquisitionStartDate>"
},
{
"source": "3drimager.xml",
"text": "<gml:lowerCorner>-50.000000 30.000000</gml:lowerCorner> <gml:upperCorner>50.000000 130.000000</gml:upperCorner> <datacasting:preview>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0715_L2G_MIDSH.jpg</datacasting:preview> <datacasting:productName>3RIMG_24AUG2022_0715_L2G_WDP.h5</datacasting:productName> <description>Wind Derived Product, Upper level divergence, lower level convergence, wind shear, mid-level wind shear, 24 hour wind shear tendency, vorticity(200,500,700,850mb) using INSAT-3DR AMVs.</description>"
},
{
"source": "3drimager.xml",
"text": "<guid isPermaLink=\"true\">http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0715_L2G_MIDSH.jpg</guid> <pubDate>Wed, 24 Aug 2022 08:05:00 GMT</pubDate> <link>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2G_AOD.jpg</link> <datacasting:acquisitionStartDate>Wed, 24 Aug 2022 07:45:00 GMT</datacasting:acquisitionStartDate> <gml:lowerCorner>-9.000000 45.000000</gml:lowerCorner> <gml:upperCorner>45.000000 100.000000</gml:upperCorner> <datacasting:preview>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2G_AOD.jpg</datacasting:preview>"
},
{
"source": "3drimager.xml",
"text": "<datacasting:productName>3RIMG_24AUG2022_0745_L2G_AOD.h5</datacasting:productName> <description>The AOD product provides the aerosol optical thickness, at 650 nm and 4 Km spatial resolution over both land and ocean surfaces with root mean square (RMS) error of ?0.1.</description> <guid isPermaLink=\"true\">http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2G_AOD.jpg</guid> <pubDate>Wed, 24 Aug 2022 08:32:00 GMT</pubDate> <link>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0715_L2P_WVW.gif</link>"
},
{
"source": "3drimager.xml",
"text": "<datacasting:acquisitionStartDate>Wed, 24 Aug 2022 07:15:00 GMT</datacasting:acquisitionStartDate> <gml:lowerCorner>-48.000000 21.000000</gml:lowerCorner> <gml:upperCorner>49.000000 128.000000</gml:upperCorner> <datacasting:preview>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0715_L2P_WVW.gif</datacasting:preview> <datacasting:productName>3RIMG_24AUG2022_0715_L2P_WVW.h5</datacasting:productName> <description>Water vapour derived wind vectors</description> <guid isPermaLink=\"true\">http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0715_L2P_WVW.gif</guid>"
},
{
"source": "3drimager.xml",
"text": "<pubDate>Wed, 24 Aug 2022 08:05:00 GMT</pubDate> <link>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2B_OLR.jpg</link> <datacasting:acquisitionStartDate>Wed, 24 Aug 2022 07:45:00 GMT</datacasting:acquisitionStartDate> <gml:lowerCorner>-81.000000 -7.000000</gml:lowerCorner> <gml:upperCorner>81.000000 155.000000</gml:upperCorner> <datacasting:preview>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2B_OLR.jpg</datacasting:preview> <datacasting:productName>3RIMG_24AUG2022_0745_L2B_OLR.h5</datacasting:productName>"
},
{
"source": "3drimager.xml",
"text": "<description>Total outgoing longwave radiation (OLR) flux, thermally emitted from earth atmosphere system, is estimated by applying regression equation relating OLR flux with INSAT-3DR Imager observed WV (6.7μm) and thermal infrared (TIR-1 10.5 μm and TIR-2 11.5 μm) radiances. The coefficients of the regression equations are determined from results of the Radiative Transfer Model simulation with various atmospheric conditions</description> <guid isPermaLink=\"true\">http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2B_OLR.jpg</guid>"
},
{
"source": "3drimager.xml",
"text": "<pubDate>Wed, 24 Aug 2022 08:32:00 GMT</pubDate> <link>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2B_HEM.jpg</link> <datacasting:acquisitionStartDate>Wed, 24 Aug 2022 07:45:00 GMT</datacasting:acquisitionStartDate> <gml:lowerCorner>-81.000000 -7.000000</gml:lowerCorner> <gml:upperCorner>81.000000 155.000000</gml:upperCorner> <datacasting:preview>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2B_HEM.jpg</datacasting:preview> <datacasting:productName>3RIMG_24AUG2022_0745_L2B_HEM.h5</datacasting:productName>"
},
{
"source": "3drimager.xml",
"text": "<description>This product is derived on the basis of Hydro-Estimator method. It measures precipitation over Indian Region encompassing area between longitudes 30?E -to130?E and latitudes 50?N- 50?S.</description> <guid isPermaLink=\"true\">http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2B_HEM.jpg</guid> <pubDate>Wed, 24 Aug 2022 08:32:00 GMT</pubDate> <link>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2C_FOG.jpg</link> <datacasting:acquisitionStartDate>Wed, 24 Aug 2022 07:45:00 GMT</datacasting:acquisitionStartDate>"
},
{
"source": "3drimager.xml",
"text": "<gml:lowerCorner>-10.000000 44.000000</gml:lowerCorner> <gml:upperCorner>45.000000 110.000000</gml:upperCorner> <datacasting:preview>http://mosdac.gov.in/look/3R_IMG/preview/2022/24AUG/3RIMG_24AUG2022_0745_L2C_FOG.jpg</datacasting:preview> <datacasting:productName>3RIMG_24AUG2022_0745_L2C_FOG.h5</datacasting:productName> <description>Night time FOG is derived from TIR-1 and MIR channel brightness temperature over Indian region. However, for day time visible channel reflectance and TIR-1 channel brightness temperature has been used. The algorithm involves detection of different thresholds following an image based approach to detect FOG</description>"