-
Notifications
You must be signed in to change notification settings - Fork 363
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add shake map modules. Should be the same as https://github.com/usgs/shakemap * Update location of the two programs * Make it build again * Update the THIS_MODULE_LIB * Module functions were not decorated with EXTERN_MSC * List all options in on line help * Add license to vs30.c * Add the GMT general header/license comment * Add manuals * Tweaks on online help * Option -L can now accept line coords * Fix -C default settings * Uncomment the GMT_Init_IO() lines * Introuce a -D option to transmit the trace fault line coordinates. * Fix the PAD bug * Install also some MSVC runtime dlls needed in some very virgin systems * Update to how supplements are built. * Add (empty) longopts include headers. --------- Co-authored-by: Paul Wessel <pwessel@hawaii.edu>
- Loading branch information
1 parent
2cca673
commit 0f1bc88
Showing
10 changed files
with
1,074 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/*-------------------------------------------------------------------- | ||
* | ||
* Copyright (c) 1991-2023 by the GMT Team (https://www.generic-mapping-tools.org/team.html) | ||
* See LICENSE.TXT file for copying and redistribution conditions. | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation; version 3 or any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Lesser General Public License for more details. | ||
* | ||
* Contact info: www.generic-mapping-tools.org | ||
*--------------------------------------------------------------------*/ | ||
|
||
#ifndef SHAKE_INC_H | ||
#define SHAKE_INC_H | ||
|
||
/* Translation table from long to short module options, directives and modifiers */ | ||
|
||
static struct GMT_KEYWORD_DICTIONARY module_kw[] = { /* Local options for this module */ | ||
/* separator, short_option, long_option, | ||
short_directives, long_directives, | ||
short_modifiers, long_modifiers */ | ||
{ 0, 'G', "", | ||
"", "", | ||
"", "" }, | ||
{ 0, 'D', "", | ||
"", "", | ||
"", "" }, | ||
{ 0, 'L', "", | ||
"", "", | ||
"", "" }, | ||
{ 0, 'M', "", | ||
"", "", | ||
"", "" }, | ||
{ 0, 'C', "", | ||
"", "", | ||
"", "" }, | ||
{ 0, 'F', "", | ||
"", "", | ||
"", "" }, | ||
{ 0, '\0', "", "", "", "", ""} /* End of list marked with empty option and strings */ | ||
}; | ||
|
||
#endif /* !SHAKE_INC_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/*-------------------------------------------------------------------- | ||
* | ||
* Copyright (c) 1991-2023 by the GMT Team (https://www.generic-mapping-tools.org/team.html) | ||
* See LICENSE.TXT file for copying and redistribution conditions. | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation; version 3 or any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Lesser General Public License for more details. | ||
* | ||
* Contact info: www.generic-mapping-tools.org | ||
*--------------------------------------------------------------------*/ | ||
|
||
#ifndef VS30_INC_H | ||
#define VS30_INC_H | ||
|
||
/* Translation table from long to short module options, directives and modifiers */ | ||
|
||
static struct GMT_KEYWORD_DICTIONARY module_kw[] = { /* Local options for this module */ | ||
/* separator, short_option, long_option, | ||
short_directives, long_directives, | ||
short_modifiers, long_modifiers */ | ||
{ 0, 'G', "", | ||
"", "", | ||
"", "" }, | ||
{ 0, 'C', "", | ||
"", "", | ||
"", "" }, | ||
{ 0, 'W', "", | ||
"", "", | ||
"", "" }, | ||
{ 0, '\0', "", "", "", "", ""} /* End of list marked with empty option and strings */ | ||
}; | ||
|
||
#endif /* !VS30_INC_H */ |
Oops, something went wrong.