@@ -220,7 +220,7 @@ def tide_elevations(
220
220
CROP : bool = False ,
221
221
BOUNDS : list | np .ndarray | None = None ,
222
222
BUFFER : int | float | None = None ,
223
- EPSG : str | int = 3031 ,
223
+ EPSG : str | int = 4326 ,
224
224
EPOCH : list | tuple = (2000 , 1 , 1 , 0 , 0 , 0 ),
225
225
TYPE : str | None = 'drift' ,
226
226
TIME : str = 'UTC' ,
@@ -261,7 +261,7 @@ def tide_elevations(
261
261
Boundaries for cropping tide model data
262
262
BUFFER: int, float or NoneType, default None
263
263
Buffer distance for cropping tide model data
264
- EPSG: int, default: 3031 (Polar Stereographic South, WGS84 )
264
+ EPSG: int, default: 4326 (WGS84 Latitude and Longitude )
265
265
Input coordinate system
266
266
EPOCH: tuple, default (2000,1,1,0,0,0)
267
267
Time period for calculating delta times
@@ -448,7 +448,7 @@ def tide_currents(
448
448
CROP : bool = False ,
449
449
BOUNDS : list | np .ndarray | None = None ,
450
450
BUFFER : int | float | None = None ,
451
- EPSG : str | int = 3031 ,
451
+ EPSG : str | int = 4326 ,
452
452
EPOCH : list | tuple = (2000 , 1 , 1 , 0 , 0 , 0 ),
453
453
TYPE : str | None = 'drift' ,
454
454
TIME : str = 'UTC' ,
@@ -487,7 +487,7 @@ def tide_currents(
487
487
Boundaries for cropping tide model data
488
488
BUFFER: int, float or NoneType, default None
489
489
Buffer distance for cropping tide model data
490
- EPSG: int, default: 3031 (Polar Stereographic South, WGS84 )
490
+ EPSG: int, default: 4326 (WGS84 Latitude and Longitude )
491
491
Input coordinate system
492
492
EPOCH: tuple, default (2000,1,1,0,0,0)
493
493
Time period for calculating delta times
@@ -667,7 +667,7 @@ def tide_masks(x: np.ndarray, y: np.ndarray,
667
667
MODEL : str | None = None ,
668
668
GZIP : bool = False ,
669
669
DEFINITION_FILE : str | pathlib .Path | None = None ,
670
- EPSG : str | int = 3031 ,
670
+ EPSG : str | int = 4326 ,
671
671
METHOD : str = 'spline'
672
672
):
673
673
"""
@@ -687,7 +687,7 @@ def tide_masks(x: np.ndarray, y: np.ndarray,
687
687
Tide model files are gzip compressed
688
688
DEFINITION_FILE: str or NoneType, default None
689
689
Tide model definition file for use
690
- EPSG: str or int, default: 3031 (Polar Stereographic South, WGS84 )
690
+ EPSG: str or int, default: 4326 (WGS84 Latitude and Longitude )
691
691
Input coordinate system
692
692
METHOD: str, default 'spline'
693
693
interpolation method
@@ -795,7 +795,7 @@ def tide_masks(x: np.ndarray, y: np.ndarray,
795
795
# PURPOSE: compute long-period equilibrium tidal elevations
796
796
def LPET_elevations (
797
797
x : np .ndarray , y : np .ndarray , delta_time : np .ndarray ,
798
- EPSG : str | int = 3031 ,
798
+ EPSG : str | int = 4326 ,
799
799
EPOCH : list | tuple = (2000 , 1 , 1 , 0 , 0 , 0 ),
800
800
TYPE : str | None = 'drift' ,
801
801
TIME : str = 'UTC' ,
@@ -812,7 +812,7 @@ def LPET_elevations(
812
812
y-coordinates in projection EPSG
813
813
delta_time: np.ndarray
814
814
seconds since EPOCH or datetime array
815
- EPSG: int, default: 3031 (Polar Stereographic South, WGS84 )
815
+ EPSG: int, default: 4326 (WGS84 Latitude and Longitude )
816
816
Input coordinate system
817
817
EPOCH: tuple, default (2000,1,1,0,0,0)
818
818
Time period for calculating delta times
@@ -900,7 +900,7 @@ def LPET_elevations(
900
900
# following IERS Convention (2010) guidelines
901
901
def LPT_displacements (
902
902
x : np .ndarray , y : np .ndarray , delta_time : np .ndarray ,
903
- EPSG : str | int = 3031 ,
903
+ EPSG : str | int = 4326 ,
904
904
EPOCH : list | tuple = (2000 , 1 , 1 , 0 , 0 , 0 ),
905
905
TYPE : str | None = 'drift' ,
906
906
TIME : str = 'UTC' ,
@@ -921,7 +921,7 @@ def LPT_displacements(
921
921
y-coordinates in projection EPSG
922
922
delta_time: np.ndarray
923
923
seconds since EPOCH or datetime array
924
- EPSG: int, default: 3031 (Polar Stereographic South, WGS84 )
924
+ EPSG: int, default: 4326 (WGS84 Latitude and Longitude )
925
925
Input coordinate system
926
926
EPOCH: tuple, default (2000,1,1,0,0,0)
927
927
Time period for calculating delta times
@@ -1100,7 +1100,7 @@ def LPT_displacements(
1100
1100
# following IERS Convention (2010) guidelines
1101
1101
def OPT_displacements (
1102
1102
x : np .ndarray , y : np .ndarray , delta_time : np .ndarray ,
1103
- EPSG : str | int = 3031 ,
1103
+ EPSG : str | int = 4326 ,
1104
1104
EPOCH : list | tuple = (2000 , 1 , 1 , 0 , 0 , 0 ),
1105
1105
TYPE : str | None = 'drift' ,
1106
1106
TIME : str = 'UTC' ,
@@ -1122,7 +1122,7 @@ def OPT_displacements(
1122
1122
y-coordinates in projection EPSG
1123
1123
delta_time: np.ndarray
1124
1124
seconds since EPOCH or datetime array
1125
- EPSG: int, default: 3031 (Polar Stereographic South, WGS84 )
1125
+ EPSG: int, default: 4326 (WGS84 Latitude and Longitude )
1126
1126
Input coordinate system
1127
1127
EPOCH: tuple, default (2000,1,1,0,0,0)
1128
1128
Time period for calculating delta times
@@ -1328,7 +1328,7 @@ def OPT_displacements(
1328
1328
# PURPOSE: compute solid earth tidal elevations
1329
1329
def SET_displacements (
1330
1330
x : np .ndarray , y : np .ndarray , delta_time : np .ndarray ,
1331
- EPSG : str | int = 3031 ,
1331
+ EPSG : str | int = 4326 ,
1332
1332
EPOCH : list | tuple = (2000 , 1 , 1 , 0 , 0 , 0 ),
1333
1333
TYPE : str | None = 'drift' ,
1334
1334
TIME : str = 'UTC' ,
@@ -1349,7 +1349,7 @@ def SET_displacements(
1349
1349
y-coordinates in projection EPSG
1350
1350
delta_time: np.ndarray
1351
1351
seconds since EPOCH or datetime array
1352
- EPSG: int, default: 3031 (Polar Stereographic South, WGS84 )
1352
+ EPSG: int, default: 4326 (WGS84 Latitude and Longitude )
1353
1353
Input coordinate system
1354
1354
EPOCH: tuple, default (2000,1,1,0,0,0)
1355
1355
Time period for calculating delta times
0 commit comments