/usr/lib/python3/dist-packages/gsw-3.0.2.egg-info is in python3-gsw 3.0.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 143 | Metadata-Version: 1.1
Name: gsw
Version: 3.0.2
Summary: Gibbs SeaWater Oceanographic Package of TEOS-10
Home-page: http://pypi.python.org/pypi/seawater/
Author: Filipe Fernandes
Author-email: ocefpaf@gmail.com
License: Copyright Notice and Statement for the gsw project:
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Download-URL: https://pypi.python.org/pypi/gsw/
Description: ==========
python gsw
==========
Python implementation of the Thermodynamic Equation Of Seawater - 2010 (TEOS-10)
--------------------------------------------------------------------------------
For more information go to:
http://www.teos-10.org/
gsw vs. csiro
^^^^^^^^^^^^^
.. role:: raw-math(raw)
:format: latex html
This table shows some function names in the gibbs library and the corresponding function names in the csiro library.
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| **Variable** | **SeaWater (EOS 80)** | **Gibbs SeaWater (GSW TEOS 10)** |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| Absolute Salinity | NA | gsw.SA_from_SP(SP,p,long,lat) |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| Conservative Temperature | NA | gsw.CT_from_t(SA,t,p) |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| density (i.e. in situ density) | sw.dens(SP,t,p) | gsw.rho_CT(SA,CT,p), or gsw.rho(SA,t,p), or |
| | | gsw.rho_CT25(SA,CT,p) |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| potential density | sw.pden(SP,t,p,pr) | gsw.rho_CT(SA,CT,pr), or |
| | | gsw.rho_CT25(SA,CT,pr) |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| potential temperature | sw.ptmp(SP,t,p,pr) | gsw.pt_from_t(SA,t,p,pr) |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| :math:`\sigma_0`, using | sw.dens(SP, :math:`\theta_o`, 0) | gsw.sigma0_CT(SA,CT) |
| :math:`\theta_o` = sw.ptmp(SP,t,p,0) | -1000 kg m :sup:`-3` | |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| :math:`\sigma_2`, using | sw.dens(SP,:math:`\theta_2`, 2000) | gsw.sigma2_CT(SA,CT) |
| :math:`\theta_2` = sw.ptmp(SP,t,p,2000) | -1000 kg m :sup:`-3` | |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| :math:`\sigma_4`, using | sw.dens(SP,:math:`\theta_4`, 4000) | gsw.sigma2_CT(SA,CT) |
| :math:`\theta_4` = sw.ptmp(SP,t,p,2000) | -1000 kg m :sup:`-3` | |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| specific volume anomaly | sw.svan(SP,t,p) | gsw.specvol_anom_CT(SA,CT,p) or |
| | | gsw.specvol_anom_CT25(SA,CT,p) |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| dynamic height anomaly | -sw.gpan(SP,t,p) | gsw.geo_strf_dyn_height(SA,CT,p,delta_p,interp_style) |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| geostrophic velocity | sw.gvel(ga,lat,long) | gsw.geostrophic_velocity(geo_str,long,lat,p) |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| N :sup:`2` | sw.bfrq(SP,t,p,lat) | gsw.Nsquared_CT25(SA,CT,p,lat) |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| pressure from height | sw.pres(-z,lat) | gsw.p_from_z(z,lat) |
| (SW uses depth, not height) | | |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| height from pressure | z = -sw.dpth(p,lat) | gsw.z_from_p(p,lat) |
| (SW outputs depth, not height) | | |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| in situ temperature from pt | sw.temp(SP,pt,p,pr) | gsw.pt_from_t(SA,pt,pr,p) |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| sound speed | sw.svel(SP,t,p) | gsw.sound_speed(SA,t,p) |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| isobaric heat capacity | sw.cp(SP,t,p) | gsw.cp(SA,t,p) |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| adiabatic lapse rate* | sw.adtg(SP,t,p) | gsw.adiabatic_lapse_rate(SA,t,p) |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| SP from cndr, (PSS 78) | sw.salt(cndr,t,p) | gsw.SP_from_cndr(cndr,t,p) |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| cndr from SP, (PSS 78) | sw.cndr(SP,t,p) | gsw.cndr_from_SP(SP,t,p) |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| distance | sw.dist(lat,long,units) | gsw.distance(long,lat,p) |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| gravitational acceleration | sw.g(lat,z) | gsw.grav(lat,p) |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| Coriolis parameter | sw.f(lat) | gsw.f(lat) |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
| testing of all functions | sw.test() | gsw.test() |
+-------------------------------------------+-------------------------------------+-------------------------------------------------------+
\* The SW and GSW functions output the adiabatic lapse rate in different units, being K (dbar) :sup:`-1` and K Pa :sup:`-1` respectively.
Thanks
======
* Bjørn Ådlandsvik - Testing unit and several bug fixes
* Eric Firing - Support for masked arrays, re-write of _delta_SA
* Trevor J. McDougall (and all of SCOR/IAPSO WG127) for making available the Matlab and Fortran versions of this software
Acknowledgments
---------------
* SCOR/IAPSO WG127. Most of module is derived from the GSW Oceanographic Toolbox of TEOS-10.
The MAJOR.MINOR.MICRO will be used to represent:
MAJOR == The matlab version from the TEOS-10 Group
MINOR == Significant changes made in the python version
MICRO == Bug fixes only
Keywords: oceanography,seawater
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Education
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|