コンピュータ

コンピュータ
Pre-process for MPI compilation

Pre-process for MPI compilation You may need a pre-process before compiling MPI codes. In case of FVCOM2.6.1, […]

続きを読む
コンピュータ
makedepf90 on ha8000.cc.u-tokyo.ac.jp

Install makedepf90 on HA8000 It seems that makedepf90 is not installed on HA8000 at cc.u-tokyo.ac.jp. Thus I i […]

続きを読む
コンピュータ
FVCOM2.6.1 serial compile and run on FX10@cc.u-tokyo.ac.jp

Compiling FVCOM for serial run On Fx10, you will use Fujitsu compilers. The following setting in makefile will […]

続きを読む
コンピュータ
bash script to change directory

#!/bin/bash cd ~/FVCOM316/examples/inlet/run The name of this script is say “cd_test.sh.” This script will not […]

続きを読む
コンピュータ
ffmpeg and ImageMagick on Scientific Linux 6.1 x86-64

To create a movie from images, “convert” and “ffmpeg” would be often used. “convert” is useful to create GIF a […]

続きを読む
コンピュータ
Set search path for Ruby scripts

Suppose that the search path is ~/ruby. Add the following line in .bashrc. export RUBYPATH=~/ruby Put ruby scr […]

続きを読む
コンピュータ
Find index for the minimum value of NArray element in Ruby

Suppose that a[1.1, 1.3, 0.2, 3.1] is a NArray. a.min #=> 0.2 a.eq(a.min) #=> [0, 0, 1, 0] a.eq(a.min).w […]

続きを読む
コンピュータ
UTMと公共座標系の違い

東京湾海岸線 (lon, lat) を直交座標系に変換する際,UTM54と公共座標9系による比較を行ったところ,有意な差が出た.東京湾水深メッシュ等は公共座標9系で作成されていると思われ,公共座標9系で海岸線を変換した場 […]

続きを読む
コンピュータ
netCDF-3.6.3 install with Intel compilers on Scientific Linux 6.1 x86-64

I could not install netcdf when I upgraded to Scientific Linux 6.1 (x86-64). After “configure” I found an erro […]

続きを読む
コンピュータ
How to covert to (lon, lat, depth) in Tokyo Bay from (x, y, depth) with unknown (x, y) coordinates

Summary Converting coastline.blz (lon, lat, z) to (utm_x, utm, y, z) creating coastline.xyz using Proj Adjusti […]

続きを読む