Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

x2sys_get.rst 3.6 KB

You have to be logged in to leave a comment. Sign In
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
  1. .. index:: ! x2sys_get
  2. .. include:: ../module_supplements_purpose.rst_
  3. *********
  4. x2sys_get
  5. *********
  6. |x2sys_get_purpose|
  7. Synopsis
  8. --------
  9. .. include:: ../../common_SYN_OPTs.rst_
  10. **gmt x2sys_get** |-T|\ *TAG* [ |-C| ] [ |-F|\ *flags* ] [ |-G| ]
  11. [ |-L|\ [*list*]\ [**+i**] ]
  12. [ |-N|\ *flags* ] [
  13. [ |SYN_OPT-R| ]
  14. [ |SYN_OPT-V| ]
  15. [ |SYN_OPT--| ]
  16. |No-spaces|
  17. Description
  18. -----------
  19. **x2sys_get** will return text records with the names of the track data files in the
  20. x2sys data base for this TAG that match the given requirements. You may
  21. choose a specific region and optionally ask only for tracks that meet
  22. certain data criteria. Finally, you may select an option to list all
  23. possible pairs that might generate crossovers.
  24. Required Arguments
  25. ------------------
  26. .. include:: explain_tag.rst_
  27. Optional Arguments
  28. ------------------
  29. .. _-C:
  30. **-C**
  31. Instead of reporting the track names, just output the coordinates of
  32. the center of each bin that has at least one track with the
  33. specified data.
  34. .. _-D:
  35. **-D**
  36. Only report the track names [Default adds the availability of data for each field].
  37. .. _-F:
  38. **-F**\ *flags*
  39. Give a comma-separated list of column names (as described in the
  40. format definition file) that should be present. [Default selects all data columns].
  41. .. _-G:
  42. **-G**
  43. Report data flags (Y or N) for the entire track rather than just for
  44. the portion that is inside the region set by **-R** [Default].
  45. .. _-L:
  46. **-L**\ [*list*]\ [**+i**]
  47. Crossover mode. Return a list of track pairs that should be checked
  48. for possible crossovers. The list is determined from the bin-index
  49. data base on the assumption that tracks occupying the same bin are
  50. very likely to intersect. By default we return all possible pairs in
  51. the data base. Append the name of a file with a list of tracks if
  52. you want to limit the output to those pairs that involve at least
  53. one of the track names in your list. The output is suitable for the
  54. **-A** option in :doc:`x2sys_cross`. By default, only external
  55. crossover pairs are listed. Append **+i** to include internal pairs in the list.
  56. .. _-N:
  57. **-N**\ *flags*
  58. Give a comma-separated list of column names (as described in the
  59. format definition file) that must be absent.
  60. .. _-R:
  61. .. |Add_-Rgeo| replace:: For Cartesian
  62. data just give *xmin/xmax/ymin/ymax*. This option limits the tracks
  63. to those that fall at least partly inside the specified domain.
  64. .. include:: ../../explain_-Rgeo.rst_
  65. .. _-V:
  66. .. |Add_-V| unicode:: 0x20 .. just an invisible code
  67. .. include:: ../../explain_-V.rst_
  68. .. include:: ../../explain_help.rst_
  69. Examples
  70. --------
  71. To find all the tracks associated with the tag MGD77, restricted to
  72. occupy a certain region in the south Pacific, and have at least free air
  73. anomalies and bathymetry, try
  74. ::
  75. gmt x2sys_get -V -TMGD77 -R180/240/-60/-30 -Ffaa,depth
  76. To find all the tracks associated with the tag MGD77 that have depth but
  77. not twt, try
  78. ::
  79. gmt x2sys_get -V -TMGD77 -Fdepth -Nwt
  80. To find all the pairs associated with the tag MGD77 that might intersect
  81. each other, but only those pairs which involves tracks in your list
  82. new.lis, try
  83. ::
  84. gmt x2sys_get -V -TMGD77 -Lnew.lis > xpairs.lis
  85. Note
  86. ----
  87. The tracks that are returned all have the requested data (**-F**) within
  88. the specified region (**-R**). Furthermore, the columns of Y and N for
  89. other data types also reflect the content of the track portion within
  90. the selected region, unless **-G** is set.
  91. See Also
  92. --------
  93. :doc:`x2sys_binlist`,
  94. :doc:`x2sys_cross`
  95. :doc:`x2sys_datalist`,
  96. :doc:`x2sys_init`,
  97. :doc:`x2sys_list`,
  98. :doc:`x2sys_put`,
  99. :doc:`x2sys_report`,
  100. :doc:`x2sys_solve`
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...