1

我目前正在使用 Shapefile 类和 ColdFusion 来浏览每个 shapefile 的“记录”。每条记录都有一个边界框,我能够获得这些信息,但还没有找到一种方法来实际检索每条记录中的点。

有人可以阐明要使用哪些类以及如何使用它们吗?

这与以下情况完全相同(包括一些措辞):

http://old.nabble.com/what-c​​lass-do-you-use-to-extract-data-from-.SHP-files--td20208204.html

尽管我使用的是 ColdFusion,但我相信任何对解决方案的提示都会对我有很大帮助。

我目前的测试代码如下:

<cfset shapeFile = createObject("java","com.bbn.openmap.layer.shape.ShapeFile")>

<cfset shapeFile.init('/www/_Dev/tl_2009_25_place.shp')>

<cfoutput>
 getFileLength = #shapeFile.getFileLength()#<br>
 getFileVersion = #shapeFile.getFileVersion()#<br>
 getShapeType = #shapeFile.getShapeType()#<br>
 toString = #shapeFile.toString()#<br>
</cfoutput>
<cfdump var="#shapeFile#"> 
<cfdump var="#shapeFile.getBoundingBox()#"> <br>
<cfdump var="#shapeFile.getNextRecord()#"> 
4

1 回答 1

2

我从来没有使用过这个,也没有做过任何 GIS,但是在查看了 API 之后,这是我的建议。

因此,在您拥有 shapefile 后,您将:

myESRIRecord = shapeFile.getNextRecord();

这将为您提供ESRIRecord类或其子类之一,具体取决于它的形状类型。

我弄乱了这个形状文件是:

http://russnelson.com/india.zip

并且只包含多边形类型。

ESRIPolygonRecord 包含一个名为“polygons”的属性,其中包含 com.bbn.openmap.layer.shape.ESRIPoly$ESRIFloatPoly 实例的数组。

这个库的关键似乎是很多数据都在属性中,不能通过方法访问。

因此,正如我所说,ESRIPolygonRecords 的数据位于多边形属性中,ESRIPointRecord 的数据位于 x 和 y 属性中。因此,如果您正在寻找 getX() 或 getY(),这就是您没有找到它的原因。

此示例代码对我有用:

<cfset shapeFile = createObject("java","com.bbn.openmap.layer.shape.ShapeFile")>

<cfset shapeFile.init('/tmp/india-12-05.shp')>

<!--- There may be more then one record, so you can repeat this, or loop to get
      more records --->
<cfset myRecord = shapeFile.getNextRecord()>

<!--- Get the polygons that make up this record --->
<cfset foo = myRecord.polygons>

<cfdump var="#foo#">

<cfloop array="#foo#" index="thispoly">
<cfoutput>
    This poly has #thisPoly.nPoints# points:<br>
    <!--- because java arrays are 0 based --->
    <cfset loopEnd = thisPoly.nPoints-1>
    <cfloop from="0" to="#loopEnd#" index="i">
        X: #thisPoly.getX(i)#   Y: #thisPoly.getY(i)#<br>
    </cfloop>
    <!--- Returns points as array --->
    <cfdump var="#thisPoly.getDecimalDegrees()#">
    <cfdump var="#thisPoly.getRadians()#">
</cfoutput>
</cfloop>
于 2010-09-17T22:27:28.760 回答