shapeinfo.pro
13.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
;+
; NAME:
; SHAPEINFO
;
; PURPOSE:
;
; The purpose of this program is allow the user to browse a very narrow
; selection of shapefiles. Namely, those containing geographical shapes
; in latitude and longitude coordinates. In other words, shapefiles
; containing maps. File attributes are listed in the left-hand list
; widget. Clicking on a file attribute, will list all the entity
; attributes for that file attribute in the right-hand list. Clicking
; an entity attribute with list the type of entity, and the X and Y
; bounds of that entity (shown as LON and LAT, respectively), in the
; statusbar at the bottom of the display.
;
; Knowing the attribute and entity names of a shapefile will give
; you insight into how to read and display the information in the file.
; For examples, see the Coyote Library programs DrawCounties and DrawStates.
;
; AUTHOR:
;
; FANNING SOFTWARE CONSULTING
; David Fanning, Ph.D.
; 1645 Sheely Drive
; Fort Collins, CO 80526 USA
; Phone: 970-221-0438
; E-mail: david@idlcoyote.com
; Coyote's Guide to IDL Programming: http://www.idlcoyote.com
;
; CATEGORY:
; Utilities
;
; CALLING SEQUENCE:
;
; ShapeInfo, shapefile
;
; ARGUMENTS:
;
; shapefile: The name of the input shapefile. If not provided, the user
; will be prompted to select a shapefile.
;
; OUTPUT KEYWORDS:
;
; XRANGE: An output two-element vector containing the minimum and maximum
; X boundary of the shapefile entities.
;
; YRANGE: An output two-element vector containing the minimum and maximum
; Y boundary of the shapefile entities.
;
; RESTRICTIONS:
;
; It is assumed the shapefile contains 2D map information. The X and Y bounds of
; each shapefile entity are reported as LON and LAT values, respectively.
;
; Required Coyote Library programs:
;
; CenterTLB
; Error_Message
;
; EXAMPLE:
;
; filename = Filepath(SubDir=['examples','data'], 'states.shp')
; ShapeInfo, filename, XRANGE=xr, YRANGE=yr
; Plot, xr, yr, /NoData, XStyle=1, YStyle=1
; DrawShapes, filename
;
; MODIFICATION HISTORY:
;
; Written by David W. Fanning, 21 October 2006.
; Slight modifications to the interface. 14 May 2010. DWF.
; Added XRANGE and YRANGE output keywords. 15 May 2010. DWF.
;-
;******************************************************************************************;
; Copyright (c) 2006-2010, by Fanning Software Consulting, Inc. ;
; All rights reserved. ;
; ;
; Redistribution and use in source and binary forms, with or without ;
; modification, are permitted provided that the following conditions are met: ;
; ;
; * Redistributions of source code must retain the above copyright ;
; notice, this list of conditions and the following disclaimer. ;
; * Redistributions in binary form must reproduce the above copyright ;
; notice, this list of conditions and the following disclaimer in the ;
; documentation and/or other materials provided with the distribution. ;
; * Neither the name of Fanning Software Consulting, Inc. nor the names of its ;
; contributors may be used to endorse or promote products derived from this ;
; software without specific prior written permission. ;
; ;
; THIS SOFTWARE IS PROVIDED BY FANNING SOFTWARE CONSULTING, INC. ''AS IS'' AND ANY ;
; EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES ;
; OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT ;
; SHALL FANNING SOFTWARE CONSULTING, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, ;
; INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED ;
; TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; ;
; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ;
; ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ;
; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS ;
; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ;
;******************************************************************************************;
PRO ShapeInfo_Events, event
Compile_Opt idl2
; Error handling.
Catch, theError
IF theError NE 0 THEN BEGIN
Catch, /Cancel
void = Error_Message()
RETURN
ENDIF
; Get the info structure.
Widget_Control, event.top, Get_UValue=info
; Possible events identified by UVALUE.
Widget_Control, event.id, Get_UValue=theEvent
CASE theEvent OF
; User selected entity attribute. Get the particulars for this entity.
'ENTITYLIST': BEGIN
types = IntArr(N_Elements(*(*info).entities))
bounds = FltArr(N_Elements(*(*info).entities))
thisEntity = (*(*info).entities)[event.index]
types = thisEntity.shape_type
bounds = thisEntity.bounds
typeIndex = Where((*info).typecode EQ types, count)
IF count EQ 0 THEN BEGIN
ok = Dialog_Message('Unknown type code: ' + types + ' Returning.')
RETURN
ENDIF
space = String(Replicate(32B, 5))
type = 'Type = ' + ((*info).shapetype[typeIndex])[0]
lat = 'Y Bounds = [' + StrTrim(bounds[1],2) + ', ' + StrTrim(bounds[5],2) + ']'
lon = 'X Bounds = [' + StrTrim(bounds[0],2) + ', ' + StrTrim(bounds[4],2) + ']'
idx = 'Index = ' + StrTrim(event.index,2)
Widget_Control, (*info).statusbar, $
Set_Value=type[0] + space + lon + space + lat + space + idx
END
; User selected a file attribute. Get the entity attributes associated with this file attribute.
'NAMELIST': BEGIN
entityAttributes = StrArr(N_Elements(*(*info).entities))
FOR j=0,N_Elements(*(*info).entities)-1 DO BEGIN
thisEntity = (*(*info).entities)[j]
entityAttributes[j] = StrUpCase(StrTrim((*thisEntity.attributes).(event.index), 2))
ENDFOR
Widget_Control, (*info).entityList, Set_Value=entityAttributes
*(*info).entityAttributes = entityAttributes
Widget_Control, (*info).statusbar, Set_Value=String(Replicate(32B, 150))
END
; User wants to open new shapefile.
'OPENFILE': BEGIN
CD, CURRENT=thisDir, (*info).directory
filename = Dialog_Pickfile(Title='Select Shapefile for Input...', Filter='*.shp')
CD, thisDir
IF filename EQ "" THEN RETURN
(*info).directory = File_DirName(filename)
; Clean up current shapefile information.
Heap_Free, (*info).entities
Ptr_Free, (*info).entityAttributes
Obj_Destroy, (*info).shapefile
; Create a new shapefile object
shapefile = Obj_New('IDLffShape', filename)
IF Obj_Valid(shapefile) EQ 0 THEN BEGIN
Message, 'Specified file (' + File_Basename(filename) + $
') does not appear to be a shapefile. Returning...'
ENDIF
; Get the attribute names from the shape file.
shapefile -> GetProperty, ATTRIBUTE_NAMES=theNames
theNames = StrUpCase(StrTrim(theNames, 2))
; Get all the attribute pointers from the file. These are the entities.
entities = Ptr_New(/Allocate_Heap)
*entities = shapefile -> GetEntity(/All, /Attributes)
; Load the info structure.
(*info).shapefile = shapefile
(*info).entities = entities
entityAttributes = StrArr(N_Elements(*(*info).entities))
FOR j=0,N_Elements(*(*info).entities)-1 DO BEGIN
thisEntity = (*(*info).entities)[j]
entityAttributes[j] = StrUpCase(StrTrim((*thisEntity.attributes).(0), 2))
ENDFOR
Widget_Control, (*info).namelist, Set_List_Select=0
(*info).entityAttributes = Ptr_New(entityAttributes)
Widget_Control, (*info).nameList, Set_Value=theNames
Widget_Control, (*info).entityList, Set_Value=entityAttributes
Widget_Control, (*info).statusbar, Set_Value=String(Replicate(32B, 150))
END
'QUIT': Widget_Control, event.top, /Destroy
ELSE: Print, 'Event not currently handled.
ENDCASE
END ; -----------------------------------------------------------------------------------------
PRO ShapeInfo_Cleanup, tlb
Widget_Control, tlb, Get_UValue=info
Heap_Free, (*info).entities
Ptr_Free, (*info).entityAttributes
Obj_Destroy, (*info).shapefile
Ptr_Free, info
END ; -----------------------------------------------------------------------------------------
PRO ShapeInfo, filename, XRANGE=xrange, YRANGE=yrange
Compile_Opt idl2
; Error handling.
Catch, theError
IF theError NE 0 THEN BEGIN
Catch, /Cancel
void = Error_Message()
RETURN
ENDIF
; Ask the user to select file if one is not provided.
IF N_Elements(filename) EQ 0 THEN BEGIN
filename = Dialog_Pickfile(Title='Select Shapefile for Input...', Filter='*.shp')
IF filename EQ "" THEN RETURN
ENDIF
; Create a shapefile object
shapefile = Obj_New('IDLffShape', filename)
directory = File_DirName(filename)
IF Obj_Valid(shapefile) EQ 0 THEN BEGIN
Message, 'Specified file (' + File_Basename(filename) + $
') does not appear to be a shapefile. Returning...'
ENDIF
; Get the attribute names from the shape file.
shapefile -> GetProperty, ATTRIBUTE_NAMES=theNames
theNames = StrUpCase(StrTrim(theNames, 2))
; Get all the attribute pointers from the file. These are the entities.
entities = Ptr_New(/Allocate_Heap)
*entities = shapefile -> GetEntity(/All, /Attributes)
; Create the widgets.
tlb = Widget_Base(Title='ShapeFile Information', Column=1, MBAR=menuID)
listBase = Widget_Base(tlb, Row=1, XPAD=0, YPAD=0, SPACE=0)
; Menubar
fileID = Widget_Button(menuID, Value='File')
button = Widget_Button(fileID, Value='Open New Shapefile', UVALUE='OPENFILE')
button = Widget_Button(fileID, Value='Quit', UVALUE='QUIT')
; Shapefile Lists.
nameBase = Widget_Base(listBase, Column=1)
label = Widget_Label(nameBase, Value='Attribute Name')
nameList = Widget_List(nameBase, Value=theNames, YSize=25, XSIZE=40, UVALUE='NAMELIST')
Widget_Control, nameList, Set_List_Select=0
attIndex = 0
; Cycle through each entity and get the attribute
entityAttributes = StrArr(N_Elements(*entities))
entityTypes = IntArr(N_Elements(*entities))
entityMinX = FltArr(N_Elements(*entities))
entityMaxX = FltArr(N_Elements(*entities))
entityMiny = FltArr(N_Elements(*entities))
entityMaxY = FltArr(N_Elements(*entities))
FOR j=0,N_Elements(*entities)-1 DO BEGIN
thisEntity = (*entities)[j]
entityAttributes[j] = StrUpCase(StrTrim((*thisEntity.attributes).(attIndex), 2))
entityTypes[j] = thisEntity.shape_type
entityMinX[j] = thisEntity.bounds[0]
entityMaxX[j] = thisEntity.bounds[4]
entityMiny[j] = thisEntity.bounds[1]
entityMaxY[j] = thisEntity.bounds[5]
ENDFOR
xrange = [Min(entityMinX), Max(entityMaxX)]
yrange = [Min(entityMinY), Max(entityMaxY)]
; Print, 'XRange = [' + Strtrim(Min(entityMinX),2) + ',' + StrTrim(Max(entityMaxX),2) + ']'
; Print, 'YRange = [' + Strtrim(Min(entityMinY),2) + ',' + StrTrim(Max(entityMaxY),2) + ']'
; FOR j=0,N_Elements(*entities)-1 DO Print, entityMinx[j], entityMaxx[j], entityminy[j], entitymaxy[j]
; Entity attribute list.
nameBase = Widget_Base(listBase, Column=1)
label = Widget_Label(nameBase, Value='Attribute Value')
entityList = Widget_List(nameBase, Value=entityAttributes, YSize=25, XSIZE=75, UVALUE='ENTITYLIST')
; Entity statusbar widgets.
infobase = Widget_Base(tlb, Row=1, XPAD=0, YPAD=0, SPACE=0)
label = Widget_Label(infobase, Value='Entity Info: ')
; Size the statusbar appropriately.
gb = Widget_Info(infobase, /Geometry)
gl = Widget_Info(label, /Geometry)
statusbar = Widget_Label(infobase,/Sunken_Frame, SCR_XSIZE=gb.scr_xsize-gl.scr_xsize, $
Value=String(Replicate(32B, 150)))
CenterTLB, tlb
Widget_Control, tlb, /Realize
; Information to identify entity types.
typecode = [ 1, 3, 5, 8, 11, 13, 15, 18, 21, 23, 25, 28, 31]
shapetype = ['Point', 'Polyline', 'Polygon', 'MultiPoint', 'PointZ', 'PointLineZ', 'PolygonZ', $
'MultiPointZ', 'PointM', 'PolyLineM', 'PolygonM', 'MultiPointM', 'MultiPatch']
; Create info structure and store it.
info = Ptr_New({entities:entities, namelist:namelist, entitylist:entitylist, $
entityAttributes:Ptr_New(entityAttributes, /No_Copy), shapefile:shapefile, $
typecode:typecode, shapetype:shapetype, statusbar:statusbar, directory:directory}, /No_Copy)
Widget_Control, tlb, Set_UValue=info
; Start it up.
XManager, 'shapeinfo', tlb, Event_Handler='ShapeInfo_Events', $
Cleanup='ShapeInfo_Cleanup', /No_Block
END ; -----------------------------------------------------------------------------------------