function oct_getpot_bry(bryname,grdname,obcndx);
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%  Get potential temperature of seawater from insitu
% 
%  Further Information:  
%  http://www.croco-ocean.org
%  
%  This file is part of CROCOTOOLS
%
%  CROCOTOOLS is free software; you can redistribute it and/or modify
%  it under the terms of the GNU General Public License as published
%  by the Free Software Foundation; either version 2 of the License,
%  or (at your option) any later version.
%
%  CROCOTOOLS 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 General Public License for more details.
%
%  You should have received a copy of the GNU General Public License
%  along with this program; if not, write to the Free Software
%  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
%  MA  02111-1307  USA
%
%  Copyright (c) 2001-2006 by Pierrick Penven 
%  e-mail:Pierrick.Penven@ird.fr  
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

%
% open the grid file  
% 
ng_id = netcdf.open(grdname, 'NC_NOWRITE');
L=netcdf.inqDimLen(ng_id, netcdf.inqDimID(ng_id, 'xi_rho'));
M=netcdf.inqDimLen(ng_id, netcdf.inqDimID(ng_id, 'eta_rho'));
if obcndx==1
  h=netcdf.getVar(ng_id, netcdf.inqVarID(ng_id, 'h'));
  suffix='_south';
elseif obcndx==2
  h=netcdf.getVar(ng_id, netcdf.inqVarID(ng_id, 'h'));
  suffix='_east';
elseif obcndx==3
  h=netcdf.getVar(ng_id, netcdf.inqVarID(ng_id, 'h'));
  suffix='_north';
elseif obcndx==4
  h=netcdf.getVar(ng_id, netcdf.inqVarID(ng_id, 'h'));
  suffix='_west';
end
netcdf.close(ng_id);
%
% open the clim file  
% 
ncid = netcdf.open(bryname, 'NC_WRITE');
theta_s = netcdf.getVar(ncid, netcdf.inqVarID(ncid, 'theta_s'));
theta_b =  netcdf.getVar(ncid, netcdf.inqVarID(ncid, 'theta_b'));
hc  =  netcdf.getVar(ncid, netcdf.inqVarID(ncid, 'hc'));
N =  netcdf.inqDimLen(ncid, netcdf.inqDimID(ncid, 's_rho'));
tlen =  netcdf.inqDimLen(ncid, netcdf.inqDimID(ncid, 'bry_time'));
vtransform = netcdf.getVar(ncid, netcdf.inqVarID(ncid, 'Vtransform'));
if  ~exist('vtransform')
    vtransform=1; %Old Vtransform
    disp([' NO VTRANSFORM parameter found'])
    disp([' USE TRANSFORM default value vtransform = 1'])
end
if tlen==0
  tlen=1;
end
%
% Get the sigma depths
%
P=-1e-4*1025*9.81*squeeze(oct_zlevs(h,0.*h,theta_s,theta_b,hc,N,'r',vtransform));
%
% loop on time
%
for l=1:tlen
%  disp([' Time index: ',num2str(l),' of total: ',num2str(tlen)])
  T=squeeze(netcdf.getVar(ncid, netcdf.inqVarID(ncid, ['temp',suffix])));
  S=squeeze(netcdf.getVar(ncid, netcdf.inqVarID(ncid, ['salt',suffix])));
  netcdf.putVar(ncid, netcdf.inqVarID(ncid, ['temp',suffix]), l,:,:-1, 1, oct_theta(S,T,P));  % [conv] 0-based
end
netcdf.close(ncid);
return
