Skip to content

Commit

Permalink
STY: update rocsat to formosat
Browse files Browse the repository at this point in the history
  • Loading branch information
jklenzing committed Oct 8, 2020
1 parent 1992916 commit f38d58e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion pysatNASA/instruments/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__all__ = ['cnofs_ivm', 'cnofs_plp', 'cnofs_vefi',
'de2_lang', 'de2_nacs', 'de2_rpa', 'de2_wats',
'icon_euv', 'icon_fuv', 'icon_ivm', 'icon_mighti',
'iss_fpmu', 'omni_hro', 'rocsat1_ivm', 'sport_ivm',
'iss_fpmu', 'omni_hro', 'formosat1_ivm', 'sport_ivm',
'timed_saber', 'timed_see']

for inst in __all__:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# -*- coding: utf-8 -*-
"""Supports the Ion Velocity Meter (IVM)
onboard the Republic of China Satellite (ROCSAT-1). Downloads data from the
NASA Coordinated Data Analysis Web (CDAWeb).
"""Supports the Ion Velocity Meter (IVM) onboard the Formosat-1 (formerly
ROCSAT-1) mission. Downloads data from the NASA Coordinated Data Analysis
Web (CDAWeb).
Properties
----------
platform
'rocsat1'
'formosat1'
name
'ivm'
tag
Expand All @@ -30,7 +30,7 @@

logger = logging.getLogger(__name__)

platform = 'rocsat1'
platform = 'formosat1'
name = 'ivm'
tags = {'': ''}
inst_ids = {'': ['']}
Expand Down Expand Up @@ -85,7 +85,7 @@ def init(self):


def clean(inst):
"""Routine to return ROCSAT-1 IVM data cleaned to the specified level
"""Routine to return FORMOSAT-1 IVM data cleaned to the specified level
Parameters
-----------
Expand All @@ -95,10 +95,10 @@ def clean(inst):
Note
----
No cleaning currently available for ROCSAT-1 IVM.
No cleaning currently available for FORMOSAT-1 IVM.
"""

warnings.warn("No cleaning currently available for ROCSAT")
warnings.warn("No cleaning currently available for FORMOSAT-1")

return None

0 comments on commit f38d58e

Please sign in to comment.