rgeo-shapefile 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/History.rdoc +7 -0
- data/README.rdoc +108 -0
- data/Version +1 -0
- data/lib/rgeo/shapefile.rb +62 -0
- data/lib/rgeo/shapefile/reader.rb +902 -0
- data/test/shapelib_testcases/readme.txt +11 -0
- data/test/shapelib_testcases/test.dbf +0 -0
- data/test/shapelib_testcases/test.shp +0 -0
- data/test/shapelib_testcases/test.shx +0 -0
- data/test/shapelib_testcases/test0.shp +0 -0
- data/test/shapelib_testcases/test0.shx +0 -0
- data/test/shapelib_testcases/test1.shp +0 -0
- data/test/shapelib_testcases/test1.shx +0 -0
- data/test/shapelib_testcases/test10.shp +0 -0
- data/test/shapelib_testcases/test10.shx +0 -0
- data/test/shapelib_testcases/test11.shp +0 -0
- data/test/shapelib_testcases/test11.shx +0 -0
- data/test/shapelib_testcases/test12.shp +0 -0
- data/test/shapelib_testcases/test12.shx +0 -0
- data/test/shapelib_testcases/test13.shp +0 -0
- data/test/shapelib_testcases/test13.shx +0 -0
- data/test/shapelib_testcases/test2.shp +0 -0
- data/test/shapelib_testcases/test2.shx +0 -0
- data/test/shapelib_testcases/test3.shp +0 -0
- data/test/shapelib_testcases/test3.shx +0 -0
- data/test/shapelib_testcases/test4.shp +0 -0
- data/test/shapelib_testcases/test4.shx +0 -0
- data/test/shapelib_testcases/test5.shp +0 -0
- data/test/shapelib_testcases/test5.shx +0 -0
- data/test/shapelib_testcases/test6.shp +0 -0
- data/test/shapelib_testcases/test6.shx +0 -0
- data/test/shapelib_testcases/test7.shp +0 -0
- data/test/shapelib_testcases/test7.shx +0 -0
- data/test/shapelib_testcases/test8.shp +0 -0
- data/test/shapelib_testcases/test8.shx +0 -0
- data/test/shapelib_testcases/test9.shp +0 -0
- data/test/shapelib_testcases/test9.shx +0 -0
- data/test/tc_shapelib_tests.rb +527 -0
- metadata +133 -0
metadata
ADDED
@@ -0,0 +1,133 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rgeo-shapefile
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 2
|
8
|
+
- 0
|
9
|
+
version: 0.2.0
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Daniel Azuma
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2010-12-07 00:00:00 -08:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: rgeo
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
segments:
|
29
|
+
- 0
|
30
|
+
- 2
|
31
|
+
- 0
|
32
|
+
version: 0.2.0
|
33
|
+
type: :runtime
|
34
|
+
version_requirements: *id001
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: dbf
|
37
|
+
prerelease: false
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
segments:
|
44
|
+
- 1
|
45
|
+
- 5
|
46
|
+
- 2
|
47
|
+
version: 1.5.2
|
48
|
+
type: :development
|
49
|
+
version_requirements: *id002
|
50
|
+
description: RGeo is a geospatial data library for Ruby. RGeo::Shapefile is an optional RGeo module for reading the ESRI shapefile format, a common file format for geospatial datasets.
|
51
|
+
email: dazuma@gmail.com
|
52
|
+
executables: []
|
53
|
+
|
54
|
+
extensions: []
|
55
|
+
|
56
|
+
extra_rdoc_files:
|
57
|
+
- History.rdoc
|
58
|
+
- README.rdoc
|
59
|
+
files:
|
60
|
+
- lib/rgeo/shapefile/reader.rb
|
61
|
+
- lib/rgeo/shapefile.rb
|
62
|
+
- History.rdoc
|
63
|
+
- README.rdoc
|
64
|
+
- test/tc_shapelib_tests.rb
|
65
|
+
- test/shapelib_testcases/readme.txt
|
66
|
+
- test/shapelib_testcases/test.shp
|
67
|
+
- test/shapelib_testcases/test0.shp
|
68
|
+
- test/shapelib_testcases/test1.shp
|
69
|
+
- test/shapelib_testcases/test10.shp
|
70
|
+
- test/shapelib_testcases/test11.shp
|
71
|
+
- test/shapelib_testcases/test12.shp
|
72
|
+
- test/shapelib_testcases/test13.shp
|
73
|
+
- test/shapelib_testcases/test2.shp
|
74
|
+
- test/shapelib_testcases/test3.shp
|
75
|
+
- test/shapelib_testcases/test4.shp
|
76
|
+
- test/shapelib_testcases/test5.shp
|
77
|
+
- test/shapelib_testcases/test6.shp
|
78
|
+
- test/shapelib_testcases/test7.shp
|
79
|
+
- test/shapelib_testcases/test8.shp
|
80
|
+
- test/shapelib_testcases/test9.shp
|
81
|
+
- test/shapelib_testcases/test.shx
|
82
|
+
- test/shapelib_testcases/test0.shx
|
83
|
+
- test/shapelib_testcases/test1.shx
|
84
|
+
- test/shapelib_testcases/test10.shx
|
85
|
+
- test/shapelib_testcases/test11.shx
|
86
|
+
- test/shapelib_testcases/test12.shx
|
87
|
+
- test/shapelib_testcases/test13.shx
|
88
|
+
- test/shapelib_testcases/test2.shx
|
89
|
+
- test/shapelib_testcases/test3.shx
|
90
|
+
- test/shapelib_testcases/test4.shx
|
91
|
+
- test/shapelib_testcases/test5.shx
|
92
|
+
- test/shapelib_testcases/test6.shx
|
93
|
+
- test/shapelib_testcases/test7.shx
|
94
|
+
- test/shapelib_testcases/test8.shx
|
95
|
+
- test/shapelib_testcases/test9.shx
|
96
|
+
- test/shapelib_testcases/test.dbf
|
97
|
+
- Version
|
98
|
+
has_rdoc: true
|
99
|
+
homepage: http://virtuoso.rubyforge.org/rgeo-shapefile
|
100
|
+
licenses: []
|
101
|
+
|
102
|
+
post_install_message:
|
103
|
+
rdoc_options: []
|
104
|
+
|
105
|
+
require_paths:
|
106
|
+
- lib
|
107
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
108
|
+
none: false
|
109
|
+
requirements:
|
110
|
+
- - ">="
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
segments:
|
113
|
+
- 1
|
114
|
+
- 8
|
115
|
+
- 7
|
116
|
+
version: 1.8.7
|
117
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
118
|
+
none: false
|
119
|
+
requirements:
|
120
|
+
- - ">="
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
segments:
|
123
|
+
- 0
|
124
|
+
version: "0"
|
125
|
+
requirements: []
|
126
|
+
|
127
|
+
rubyforge_project: virtuoso
|
128
|
+
rubygems_version: 1.3.7
|
129
|
+
signing_key:
|
130
|
+
specification_version: 3
|
131
|
+
summary: RGeo::Shapefile is an RGeo module for reading ESRI shapefiles.
|
132
|
+
test_files:
|
133
|
+
- test/tc_shapelib_tests.rb
|