Skip to content

Commit 0209300

Browse files
committed
removed comment, renamed pyNetwork to network
1 parent 63d4c7a commit 0209300

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

pgamit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
__version__ = "1.2.3"
22
__all__ = [
33
'cluster',
4+
'network',
45
'pyRinexName',
56
'Utils',
67
'pyJobServer',
@@ -32,7 +33,6 @@
3233
'pyGamitSession',
3334
'pyGamitTask',
3435
'pyGlobkTask',
35-
'pyNetwork',
3636
'pyParseZTD',
3737
'pyStation'
3838
]
Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -164,14 +164,6 @@ def __init__(self, cnn, archive, GamitConfig, stations, date,
164164
tqdm.write(' -- Processing type is %s with %i active stations'
165165
% (GamitConfig.NetworkConfig['type'], len(stn_active)))
166166

167-
# DDG: if active stations is greater than BACKBONE_NET + 5,
168-
# then we need to split the processing into smaller subnets.
169-
# If not, then we just use all stations as the processing
170-
# network. We add 5 to BACKBONE_NET to create a hysteresis
171-
# behavior in subnets_delaunay. In other words, the backbone
172-
# net will have BACKBONE_NET stations and 6 stations will be
173-
# available to create some subnets. A single network solution
174-
# will have a max size of BACKBONE_NET + 5
175167
if len(stn_active) > BACKBONE_NET + 5:
176168
backbone = self.backbone_delauney(stations.get_active_coordinates(date), stn_active)
177169
clusters, ties = self.make_clusters(stations.get_active_coordinates(date), stn_active)

0 commit comments

Comments
 (0)