search for: long_nam

Displaying 19 results from an estimated 19 matches for "long_nam".

Did you mean: long_name
2002 Nov 14
0
WIN 3.1 App crashes.. Unhandled Exception
...fs:DOSFS_FindUnixName /var/lib/wine/drivec,L"Program Files\\Atwin\\Atwin.exe" 0820ac28:trace:dosfs:DOSFS_ToDosFCBFormat (L"Program Files\\Atwin\\Atwin.exe", 0x410d1e70) 0820ac28:trace:dosfs:DOSFS_OpenDir "/var/lib/wine/drivec" 0820ac28:trace:dosfs:DOSFS_ReadDir Read: long_name: L".", short_name: (null) 0820ac28:trace:dosfs:DOSFS_ReadDir Read: long_name: L"..", short_name: (null) 0820ac28:trace:dosfs:DOSFS_ReadDir Read: long_name: L"Program Files", short_name: (null) 0820ac28:trace:dosfs:DOSFS_FindUnixName (/var/lib/wine/drivec,L"Progr...
2009 May 01
0
Copying ncdf dims and vars from one file to the other
...itude_of_projection_origin = 90.0f; // float :resolution_at_standard_parallel = 2500.0f; // float :_CoordinateTransformType = "Projection"; :_CoordinateAxisTypes = "GeoX GeoY"; double O3_(time=144, level=28, yc=211, xc=157); :units = "ppb"; :long_name = "O3"; :actual_range = 1.3366962775762659E-5, 700.8307495117188; // double :coordinates = "lon lat"; :grid_mapping = "polar_stereographic"; :level_desc = "Height"; :grid_desc = "polar_stereographic"; float xc(xc=157);...
2011 May 06
1
read a netcdf file _Fill_value=-32768
...ifferent . I want to do statistic on this kind of file . 1) first calculate mean . my data is like that through ncdump -h test.nc netcdf test { dimensions: lat = 301 ; lon = 401 ; time = UNLIMITED ; // (80 currently) variables: float lat(lat) ; lat:long_name = "latitude" ; lat:standard_name = "latitude" ; lat:units = "degrees_north" ; lat:valid_range = -60., 60. ; float lon(lon) ; lon:long_name = "longitude" ; lon:standard_na...
2017 Aug 28
3
Extracting subset from netCDF file using lat/lon and converting into .csv in R
...NC_FORMAT_NETCDF4_CLASSIC): 1 variables (excluding dimension variables): float prAdjust[lon,lat,time] _FillValue: 1.00000002004088e+20 missing_value: 1.00000002004088e+20 comment: includes all types (rain, snow, large-scale, convective, etc.) long_name: Bias-Corrected Precipitation units: kg m-2 s-1 standard_name: precipitation_flux 3 dimensions: lon Size:720 standard_name: longitude long_name: longitude units: degrees_east axis: X lat Size:360...
2014 Feb 06
0
Array Confusion
...9;t even read it. Can someone shed some light as to how to reach into this array of hashes (that's what I can see) to get the location lat and lon? res = Geocoder.search(addy1) This is the res: [#<Geocoder::Result::Google:0x007fb46c345e18 @data={"address_components"=>[{"long_name"=>"1600", "short_name"=>"1600", "types"=>["street_number"]}, {"long_name"=>"Amphitheatre Parkway", "short_name"=>"Amphitheatre Pkwy", "types"=>["route"]}, {"lon...
2011 Sep 07
3
Editing the variables attributes section in the netCDF header of netCDF files created using the package ncdf.
...n exiting netCDF file created outside of R. Below is what the existing header looks like (part of it that is different): netcdf ccd1984_05_08 { dimensions: lat = 1974 ; lon = 1894 ; time = UNLIMITED ; // (1 currently) variables: int time(time) ; time:long_name = "time" ; time:units = "days since 1984-05-01 0:0:0" ; time:day_begins = "06:15" ; double lat(lat) ; lat:long_name = "latitude" ; lat:standard_name = "latitude" ;...
2017 Aug 28
0
Extracting subset from netCDF file using lat/lon and converting into .csv in R
...gt; 1 variables (excluding dimension variables): > float prAdjust[lon,lat,time] > _FillValue: 1.00000002004088e+20 > missing_value: 1.00000002004088e+20 > comment: includes all types (rain, snow, large-scale, > convective, etc.) > long_name: Bias-Corrected Precipitation > units: kg m-2 s-1 > standard_name: precipitation_flux > > 3 dimensions: > lon Size:720 > standard_name: longitude > long_name: longitude > units: degrees_east >...
2009 Feb 12
2
[patch 1/3] add protocol extension to ATTR message
This patch adds all the missing commonly used UNIX attributes: st_dev, st_ino, st_nlink, st_rdev, st_blocks, st_blksize, st_ctime. In addition it extends st_atime and st_mtime to 64bits, and adds nanosecond resolution to all three timestamps. This is implemented as an extension to the ATTR message. This patch alone is sufficient for SSHFS to be able to use these attributes. The following two
2014 Jan 01
0
Soft chroot jail for sftp-server
...s(id,SSH2_FX_FAILURE); > free(path); > return; > } > > } 975a1135 > name = jail_to_actual(name); 997a1158 > name = jail_to_actual(name); 1021a1183 > name = jail_to_actual(name); 1042a1205 > path = jail_to_actual(path); 1054,1055c1217,1233 < s.name = s.long_name = resolvedname; < send_names(id, 1, &s); --- > if (jail != NULL) { > char* jailed_resolvedname = actual_to_jail(xstrdup(resolvedname)); > /* Note that only the resolved string needs to point inside the jail. During resolution it may visit links outside jail > * The...
2011 Jun 17
0
Inconsistent results from var.get.nc in RNetCDF
...ude, latitude, and a date) and 3 variables (latitude, longitude, and a climate variable). Here is some of the output from print.nc for clarity: ----- dimensions: month = UNLIMITED ; // (1368 currently) lat = 3105 ; lon = 7025 ; variables: float lat(lat) ; lat:long_name = "latitude" ; lat:standard_name = "latitude" ; lat:units = "degrees_north" ; float lon(lon) ; lon:long_name = "longitude" ; lon:standard_name = "longitude" ; lon:units = &...
2007 Nov 11
1
ftp-server patch - restrict user to directory
...path = xstrdup("."); } debug3("request %u: realpath", id); - verbose("realpath \"%s\"", path); - if (realpath(path, resolvedname) == NULL) { - send_status(id, errno_to_portable(errno)); - } else { - Stat s; - attrib_clear(&s.attrib); - s.name = s.long_name = resolvedname; - send_names(id, 1, &s); - } + + /* RestrictDirectory ? - could be used to probe the file system. + * Need to allow on realpath since that is done automatically to get the $HOME. + * The user must then cd <whereever> before s/he can do anything else. + */ + if(num_rea...
2002 Nov 05
0
[PATCH] Add getlink command to sftp
...GID) { ! ret = lchown(name, a->uid, a->gid); if (ret == -1) status = errno_to_portable(errno); } *************** *** 907,915 **** send_status(id, errno_to_portable(errno)); else { Stat s; ! link[len] = '\0'; attrib_clear(&s.attrib); s.name = s.long_name = link; send_names(id, 1, &s); } --- 941,958 ---- send_status(id, errno_to_portable(errno)); else { Stat s; ! struct stat st; ! int status; link[len] = '\0'; attrib_clear(&s.attrib); + + status = lstat(path, &st); + if (status == 0) { + sta...
2002 May 04
1
A simpler move-files patch
...args[ac++] = "--compare-dest"; args[ac++] = compare_dest; } + + if (move_files) + args[ac++] = "--move-files"; *argc = ac; } Index: rsync.h --- rsync.h 2002/04/11 02:18:51 1.131 +++ rsync.h 2002/05/04 19:20:29 @@ -47,6 +47,7 @@ #define SAME_NAME SAME_DIR #define LONG_NAME (1<<6) #define SAME_TIME (1<<7) +#define FLAG_NO_DELETE (1<<8) /* update this if you make incompatible changes */ #define PROTOCOL_VERSION 26 Index: rsync.yo --- save/rsync.yo Fri May 3 16:35:18 2002 +++ rsync.yo Sat May 4 11:53:41 2002 @@ -254,6 +254,7 @@ --delete-a...
2018 Mar 25
0
R-devel Digest, Vol 181, Issue 22
...with one row for each group. Naming depends on whether ? arguments are named and on some optional arguments. Here is an example. args(df_stats) ## function (formula, data, ..., drop = TRUE, fargs = list(), sep = "_", ## format = c("wide", "long"), groups = NULL, long_names = TRUE, ## nice_names = FALSE, na.action = "na.warn") df_stats(Sepal.Length ~ Species, data = iris, mean, sd, R = range, Q = quantile) ## Species mean_Sepal.Length sd_Sepal.Length R_1 R_2 Q_0% Q_25% Q_50% Q_75% Q_100% ## 1 setosa 5.006 0.3524897 4.3 5.8...
2007 Feb 07
0
strange sqlite3 errors - validates_associated & failing activerecord unit tests
...;id002 !ruby/object:ActiveRecord::Errors base: !ruby/object:SubscriptionPlan attributes: price: 55.25 duration_in_months: 17 deleted_at: publication_id: 1 active: false errors: *id002 new_record: true publication: &id001 !ruby/object:Publication attributes: long_name: J. Taylor''s Gold & Technology Stocks id: "1" version: "1" short_name: gold errors: !ruby/object:ActiveRecord::Errors base: *id001 errors: {} errors: publication: - is invalid . <false> is not true. The test fails on l...
2001 Sep 01
3
Patch to make rsync preserve access times
...------------------------------------- Now, on to the nasty bit of code that caused me some grief and head scratching... > *** ./rsync.h Sat Jan 29 18:49:36 2000 > --- ./rsync.h Sun Feb 6 20:19:53 2000 > *************** > *** 45,53 **** > #define SAME_NAME SAME_DIR > #define LONG_NAME (1<<6) > #define SAME_TIME (1<<7) > > /* update this if you make incompatible changes */ > ! #define PROTOCOL_VERSION 24 > #define MIN_PROTOCOL_VERSION 15 > #define MAX_PROTOCOL_VERSION 30 > > --- 45,58 ---- > #define SAME_NAME SAME_DIR >...
2006 May 28
3
Validating Foreign Key
...r does it work... -- BEGIN -- class City < ActiveRecord::Base has_many :schools belongs_to :state validates_presence_of :city_name validates_presence_of :state_id validates_associated :state end class State < ActiveRecord::Base has_many :cities validates_presence_of :long_name validates_presence_of :state_code validates_length_of :state_code, :is => 2 validates_uniqueness_of :state_code end -- END -- Regardless of all of that, my test can still create a city with a state_id of 91, and I do not have a 91 row in my states table. -- From test.log -- State Lo...
2006 Mar 07
13
Active Record - Can''t figure out relationship.
I have the following two tables: create table teams ( id int not null auto_increment, short_name varchar(12) not null, long_name varchar(50) not null, logo varchar(20) not null, primary key (id) ); create table rounds ( id int not null auto_increment, home_team_id int not null, away_team_id int not null, round tinyint(4) not null...
2003 Sep 22
13
[Bug 697] ending slash is not used
http://bugzilla.mindrot.org/show_bug.cgi?id=697 Summary: ending slash is not used Product: Portable OpenSSH Version: 3.7.1p1 Platform: PPC OS/Version: AIX Status: NEW Severity: normal Priority: P2 Component: sftp-server AssignedTo: openssh-bugs at mindrot.org ReportedBy: ramses at