Skip to content

Commit

Permalink
version 0.4-1
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown author authored and gaborcsardi committed Oct 28, 2002
1 parent 93937ca commit 33d21b6
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 34 deletions.
8 changes: 4 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Package: RArcInfo
Version: 0.4
Date: 2002/10/24
Version: 0.4-1
Date: 2002/10/28
Title: Functions to import data from Arc/Info V7.x binary coverages
Author: Virgilio G�mez-Rubio <virgilio.gomez@uv.es>
Maintainer: Virgilio G�mez-Rubio <virgilio.gomez@uv.es>
Depends: R (>= 1.6.0)
Description: This package uses the functions written by Daniel
Morissette <danmo@videotron.ca> to read geographical information in Arc/Info
V 7.x format to import the coverages into R variables.
V 7.x format and E00 files to import the coverages into R variables.
License: GPL version 2 or later
URL:http://sourceforge.net/projects/rarcinfo/
URL:http://sourceforge.net/projects/rarcinfo/,http://matheron.uv.es/~virgil/Rpackages/RArcInfo
60 changes: 34 additions & 26 deletions INDEX
Original file line number Diff line number Diff line change
@@ -1,26 +1,34 @@
RArcInfo RArcInfo
get.arcdata Function for importing the contents of an ARC
file into R
get.bnddata Function for importing the contents of a BND
file into R
get.cntdata Function for importing the contents of a CNT
file into R
get.labdata Funtion for importing the contents of a LAB file
into R
get.namesofcoverages Function for getting the names of the coverages
get.paldata Function for importing the contents of a PAL
file into R
get.tabledata Function for importing the contents of a table
file into R
get.tablefields Function for reading names of the table fields
in the coverages
get.tablenames Function for reading the names of the tables in
the coverages
get.toldata Function for importing the contents of a TOL
file into R
get.txtdata Function for importing the contents of an TXT
file into R
plotarc Plots the data imported from an ARC file
plotpal Plots the data imported from an ARC file
according to the contents of a PAL file
plotpoly Plots polygons defined by the coverages.
RArcInfo RArcInfo
avctoe00 Converts a ARC/INFO binary coverage into an
ESRI E00 file
e00toavc Converts an ESRI E00 file into an Arc/Info V
7.x binary coverage
get.arcdata Function for importing the contents of an ARC
file into R
get.bnddata Function for importing the contents of a BND
file into R
get.cntdata Function for importing the contents of a CNT
file into R
get.labdata Funtion for importing the contents of a LAB
file into R
get.namesofcoverages Function for getting the names of the coverages
get.paldata Function for importing the contents of a PAL
file into R
get.tabledata Function for importing the contents of a table
file into R
get.tablefields Function for reading names of the table fields
in the coverages
get.tablenames Function for reading the names of the tables in
the coverages
get.toldata Function for importing the contents of a TOL
file into R
get.txtdata Function for importing the contents of an TXT
file into R
plotarc Plots the data imported from an ARC file
plotpal Plots the data imported from an ARC file
according to the contents of a PAL file
plotpoly Plots polygons defined by the coverages.
read.coverage Function for retrieving basic data from a given
coverage
thinlines Function for deleting points in an arc
definition object
4 changes: 2 additions & 2 deletions R/thinlines.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ thinl<-function(coord, tol)
index<-c(1)
j<-1

for(i in 2:npoints)
for(i in 2:(npoints-1))
{
xx<-x[j]-x[i]
yy<-y[j]-y[i]
Expand All @@ -21,7 +21,7 @@ thinl<-function(coord, tol)

}


index<-c(index,npoints) #Suggested by Erich Neuwirth

list(x[index], y[index])
}
Expand Down
7 changes: 5 additions & 2 deletions README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
RArcInfo - 0.4
RArcInfo - 0.4-1

- INTRODUCTION

Expand Down Expand Up @@ -141,6 +141,9 @@ the source code. When I have more spare time I will make a beatiful web page too

NEWS

*V 0.4-1- 'thinlines' modified to keep the last point of the arcs. Thanks
to Erich Neuwirth for this comment.

*V 0.4 - Two new functions added to convert from/to ArcInfo binary
coverages to/from E00 files: 'e00toavc' and 'avctoe00'.
- 'read.coverage' now reads the polygon definiton file is
Expand All @@ -155,7 +158,7 @@ NEWS
- The plots are scaled according to the real proportions of
the map.
- Added a configure script in order to proper compile under several
platforms. UPDATE: No longer need because endianness is tested
platforms. UPDATE: No longer needed because endianness is tested
and set in the C sources.
- Added the function read.coverage to retrieve whole informtation
- Fixed a bug in plotpoly. If the first polygon Id is 0, then
Expand Down

0 comments on commit 33d21b6

Please sign in to comment.