本文整理汇总了Python中catalog.Catalog.improve_geophysics方法的典型用法代码示例。如果您正苦于以下问题:Python Catalog.improve_geophysics方法的具体用法?Python Catalog.improve_geophysics怎么用?Python Catalog.improve_geophysics使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类catalog.Catalog
的用法示例。
在下文中一共展示了Catalog.improve_geophysics方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Catalog
# 需要导入模块: from catalog import Catalog [as 别名]
# 或者: from catalog.Catalog import improve_geophysics [as 别名]
# see if it's possible to represent all Earthquakes on the catalog in memory - TESTED
#catalog = Catalog()
#catalog.get_earthquake_array()
# obtain a smaller catalog, will be good for preliminar tests - TESTED
catalog = Catalog()
catalog.get_smaller_catalog(40)
# see if we can obtain a catalog which selects the regions geographically - TESTED
#catalog = Catalog()
#bounds = [120.0, 130.0, 30.0, 40.0]
#catalog.select_geographically(bounds, '../results/mainshocks.txt', '../results/stricted_mainshocks.txt')
# get declustered catalogs for Yuri - TESTED
#catalog = Catalog()
#sim = CatalogSimulation()
#sim.help_yuri(catalog)
# obtain a catalog of only mainshocks - NOT TESTED
#catalog = Catalog()
#catalog.get_mainshocks()
# get the maximum and minimum latitudes and longitudes for the catalog
#catalog = Catalog()
#bounds = catalog.get_catalog_bounds("../catalogs/new_jma.txt")
# get japan coast and japan faults txt in a good format to work with
cat1 = Catalog()
cat1.improve_geophysics('../catalogs/faults_japan.m', '../catalogs/faults.txt')
cat1.improve_geophysics('../catalogs/coast_japan.m' , '../catalogs/coast.txt')