डेस्कटॉप के लिए आर्कजीआईएस में निर्दिष्ट दूरी से लाइन का विस्तार?


11

मेरे पास एक विशुद्ध रूप से सौंदर्य की परत है जिसमें तीर के प्रतीक हैं। कुछ सही नहीं दिख रहे हैं क्योंकि लाइन बहुत छोटी है। मैंने शायद 50 रिकॉर्ड चुने हैं जहाँ मुझे इस लाइन को किसी दिए गए नंबर (एक्स। 2 मीटर) द्वारा विस्तारित करने की आवश्यकता है। विस्तारित लाइन टूल केवल एक निर्दिष्ट चौराहे तक लाइनों का विस्तार करता है, इसलिए यह उपकरण वह नहीं है जिसकी मुझे तलाश है।

मैं आकार लंबाई क्षेत्र को संपादित करने की कोशिश की है, लेकिन यह मुझे नहीं होने देंगे। फील्ड कैलकुलेटर के माध्यम से या संपादक टूल बार के भीतर ऐसा करने का एक सरल तरीका है?


1
आकार, gdb, fgdb में डेटा है? क्या आपके पास बुनियादी, मानक, उन्नत है?
ब्रैड नेसोम

आकार और उन्नत।
जियोसिड

क्या मैं स्पष्ट कर सकता हूं, क्या आप हर फीचर को पॉलीलाइन टाइप शेपफाइल या सिर्फ चुनिंदा फीचर्स में बढ़ाना चाहते हैं?

यदि आप समापन बिंदु पर अपने विस्तार को आधार बनाना चाहते हैं, तो आप पिछले शीर्ष पर जा सकते हैं और इन दो बिंदुओं के बीच ढलान निर्धारित कर सकते हैं। फिर आप एंडपॉइंट को अपनी दूरी x कहे गए ढलान के आधार पर स्थानांतरित कर सकते हैं ।
पॉल

@ पाओल, मैं ऐसा करने के लिए एक पटकथा लिख ​​रहा हूं, लेकिन यह थोड़ा अधिक जटिल है क्योंकि आपको बहु-भाग वाली नायिकाओं के लिए खाते की आवश्यकता है। यही है, आपको प्रत्येक भाग के लिए प्रारंभ और अंत बिंदु और उनके पड़ोसी बिंदुओं को देखना होगा। मुझे यह जानना आवश्यक है कि जियोसिड को हालांकि पहले सभी विशेषताओं को विस्तारित करने में रुचि है।

जवाबों:


12

वैसे मुझे लगता है कि मैंने इसे किसी भी शीर्ष गणना की रेखाओं के लिए नीचे पा लिया है। मैंने मल्टीपार्ट लाइनों का प्रयास नहीं किया है, क्योंकि मैंने इसे चापलूसी में कभी गड़बड़ नहीं किया है। कोडिंग को थोड़ा और अधिक कठिन बना दिया गया था क्योंकि ज्यामिति वस्तुओं के लिए lastPoint संपत्ति तक पहुंच नहीं है। ढलान का उपयोग करने के बजाय (जो कि मेरा प्रारंभिक विचार था), मैंने इस एसओ प्रश्न से कोड का उपयोग किया । यह त्रिकोणमिति पर निर्भर नहीं है, इसलिए इसे थोड़ा और कुशल होना चाहिए। निम्नलिखित कोड एक पंक्ति के अंत बिंदु को एक नए निर्देशांक में ले जाकर काम करता है जो कि पिछले अंतिम छोरों से एक पंक्ति के लंबे समय तक लंबित होता है। मैंने इसे एक आकृति पर परीक्षण किया।

from math import hypot
import collections
from operator import add
import arcpy

layer = arcpy.GetParameterAsText(0)
distance = float(arcpy.GetParameterAsText(1))

#Computes new coordinates x3,y3 at a specified distance
#along the prolongation of the line from x1,y1 to x2,y2
def newcoord(coords, dist):
    (x1,y1),(x2,y2) = coords
    dx = x2 - x1
    dy = y2 - y1
    linelen = hypot(dx, dy)

    x3 = x2 + dx/linelen * dist
    y3 = y2 + dy/linelen * dist    
    return x3, y3

#accumulate([1,2,3,4,5]) --> 1 3 6 10 15
#Equivalent to itertools.accumulate() which isn't present in Python 2.7
def accumulate(iterable):    
    it = iter(iterable)
    total = next(it)
    yield total
    for element in it:
        total = add(total, element)
        yield total

#OID is needed to determine how to break up flat list of data by feature.
coordinates = [[row[0], row[1]] for row in
               arcpy.da.SearchCursor(layer, ["OID@", "SHAPE@XY"], explode_to_points=True)]

oid,vert = zip(*coordinates)

#Construct list of numbers that mark the start of a new feature class.
#This is created by counting OIDS and then accumulating the values.
vertcounts = list(accumulate(collections.Counter(oid).values()))

#Grab the last two vertices of each feature
lastpoint = [point for x,point in enumerate(vert) if x+1 in vertcounts or x+2 in vertcounts]

#Convert flat list of tuples to list of lists of tuples.
#Obtain list of tuples of new end coordinates.
newvert = [newcoord(y, distance) for y in zip(*[iter(lastpoint)]*2)]    

j = 0
with arcpy.da.UpdateCursor(layer, "SHAPE@XY", explode_to_points=True) as rows:
    for i,row in enumerate(rows):
        if i+1 in vertcounts:            
            row[0] = newvert[j]
            j+=1
            rows.updateRow(row)

मैंने OID पर आधारित श्रेणियों के लिए अंत में तीर चलाने के लिए सहजीवन को सेट किया ताकि सुविधाओं के बीच अलगाव को देखना आसान हो जाए। लंबन की गणना करने के लिए लेबलिंग निर्धारित की गई थी।यहां छवि विवरण दर्ज करें


इससे मुझे बहुत मदद मिली! हालाँकि, यह मेरी विशेष स्थिति में और भी मददगार होगा यदि मूल पैरामीटर सुविधाओं के आधार पर दूरी पैरामीटर एक क्षेत्र पर आधारित हो सकता है। मैंने खुद इसे लागू करने की कोशिश की है और मुझे पता है कि मुझे किसी तरह "न्यूटवर्ट =" लाइन में दूरियों के माध्यम से पुनरावृति करनी होगी, लेकिन मुझे इसे लागू करने में मुश्किल समय आ रहा है। यदि आप ऐसा करने के लिए अपने कोड का विस्तार करने में सक्षम थे, तो मैं बहुत आभारी रहूंगा!
जियोजॉन

यदि आप स्क्रिप्ट को पायथन कंसोल के भीतर से चला रहे थे, तो अपना दृष्टिकोण अपडेट करना न भूलें। कई "असफल" कोशिशों के बाद मेरी रेखाएं बहुत लंबी हो गईं।
ईकेमाइक

2

क्या होगा अगर आप उन लाइनों का चयन करते हैं जिन्हें आप विस्तारित करना चाहते हैं।
वांछित विस्तार की राशि से उन पंक्तियों को बफर करें।
कन्वर्ट करने के लिए एक लाइन एफसी।
फिर चौराहे तक विस्तारित करें।
आपको बीच में लाइन को ओवरलैप करने से रोकने के लिए बफर के दूसरे छोर को तोड़ना और हटाना पड़ सकता है। (मैंने आपके पास क्या करना है या क्या करना है उसका स्क्रीनशॉट नहीं देखा है)
या मुझे लगता है कि एटटूल में एक उपकरण है (मैं कार्यक्षमता देखने के लिए जाँच कर रहा हूँ और अगर यह मुफ़्त है) तो
मैंने जो कुछ भी किया वह उपयोगी नहीं पाया। लगता है इस सूत्र कुछ (पुराने) VB कोड के लिए। और कुछ अजगर के लिए एक अनुरोध। आप इसका अनुसरण कर सकते हैं और ideas.arcgis.com वेबसाइट की जांच कर सकते हैं।


2

यहां एक विधि है जो किसी भी संख्या के नोड बिंदुओं से बने बहु-भाग पॉलीइलाइन के साथ काम करती है। यह ओपन सोर्स GIS व्हाइटबॉक्स GAT ( http://www.uoguelph.ca/~hydrogeo/Whitebox/ ) का उपयोग करता है । बस व्हाइटबॉक्स डाउनलोड करें, स्क्रिप्‍ट (टूलबार पर स्क्रिप्ट आइकन) खोलें, स्क्रिप्टिंग भाषा को ग्रूवी में बदलें, निम्न कोड पेस्ट करें और इसे 'ExtendVectorLines.groovy' के रूप में सहेजें। आप इसे या तो स्क्रिफ्ट से चला सकते हैं या, अगली बार जब आप व्हाइटबॉक्स लॉन्च करेंगे, तो यह वेक्टर टूलबॉक्स के भीतर एक प्लगइन टूल के रूप में दिखाई देगा। यह एक शेपफाइल और इनपुट के रूप में विस्तार दूरी लेता है। मैं टूल को व्हाइटबॉक्स GAT की अगली सार्वजनिक रिलीज़ में शामिल करूँगा।

/*
 * Copyright (C) 2013 Dr. John Lindsay <jlindsay@uoguelph.ca>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.awt.event.ActionListener
import java.awt.event.ActionEvent
import java.io.File
import java.util.concurrent.Future
import java.util.concurrent.*
import java.util.Date
import java.util.ArrayList
import whitebox.interfaces.WhiteboxPluginHost
import whitebox.geospatialfiles.ShapeFile
import whitebox.geospatialfiles.shapefile.*
import whitebox.ui.plugin_dialog.ScriptDialog
import whitebox.utilities.FileUtilities;
import groovy.transform.CompileStatic

// The following four variables are required for this 
// script to be integrated into the tool tree panel. 
// Comment them out if you want to remove the script.
def name = "ExtendVectorLines"
def descriptiveName = "Extend Vector Lines"
def description = "Extends vector polylines by a specified distance"
def toolboxes = ["VectorTools"]

public class ExtendVectorLines implements ActionListener {
private WhiteboxPluginHost pluginHost
private ScriptDialog sd;
private String descriptiveName

public ExtendVectorLines(WhiteboxPluginHost pluginHost, 
    String[] args, def descriptiveName) {
    this.pluginHost = pluginHost
    this.descriptiveName = descriptiveName

    if (args.length > 0) {
        final Runnable r = new Runnable() {
            @Override
            public void run() {
                execute(args)
            }
        }
        final Thread t = new Thread(r)
        t.start()
    } else {
        // Create a dialog for this tool to collect user-specified
        // tool parameters.
        sd = new ScriptDialog(pluginHost, descriptiveName, this)    

        // Specifying the help file will display the html help
        // file in the help pane. This file should be be located 
        // in the help directory and have the same name as the 
        // class, with an html extension.
        def helpFile = "ExtendVectorLines"
        sd.setHelpFile(helpFile)

        // Specifying the source file allows the 'view code' 
        // button on the tool dialog to be displayed.
        def pathSep = File.separator
        def scriptFile = pluginHost.getResourcesDirectory() + "plugins" + pathSep + "Scripts" + pathSep + "ExtendVectorLines.groovy"
        sd.setSourceFile(scriptFile)

        // add some components to the dialog
        sd.addDialogFile("Input file", "Input Vector Polyline File:", "open", "Vector Files (*.shp), SHP", true, false)
        sd.addDialogFile("Output file", "Output Vector File:", "close", "Vector Files (*.shp), SHP", true, false)
        sd.addDialogDataInput("Distance:", "Enter a distance", "", true, false)

        // resize the dialog to the standard size and display it
        sd.setSize(800, 400)
        sd.visible = true
    }
}

// The CompileStatic annotation can be used to significantly
// improve the performance of a Groovy script to nearly 
// that of native Java code.
@CompileStatic
private void execute(String[] args) {
    try {
        int i, f, progress, oldProgress, numPoints, numParts
        int part, startingPointInPart, endingPointInPart
        double x, y, x1, y1, x2, y2, xSt, ySt, xEnd, yEnd, slope;
        ShapefileRecordData recordData;
        double[][] geometry
        int[] partData
        if (args.length != 3) {
            pluginHost.showFeedback("Incorrect number of arguments given to tool.")
            return
        }
        // read the input parameters
        String inputFile = args[0]
        String outputFile = args[1]
        double d = Double.parseDouble(args[2]) // extended distance

        def input = new ShapeFile(inputFile)

        // make sure that input is of a POLYLINE base shapetype
        ShapeType shapeType = input.getShapeType()
        if (shapeType.getBaseType() != ShapeType.POLYLINE) {
            pluginHost.showFeedback("Input shapefile must be of a POLYLINE base shapetype.")
            return
        }

        int numFeatures = input.getNumberOfRecords()

        // set up the output files of the shapefile and the dbf
        ShapeFile output = new ShapeFile(outputFile, shapeType);
        FileUtilities.copyFile(new File(input.getDatabaseFile()), new File(output.getDatabaseFile()));

        int featureNum = 0;
        for (ShapeFileRecord record : input.records) {
            featureNum++;
            PointsList points = new PointsList();
            recordData = getXYFromShapefileRecord(record);
            geometry = recordData.getPoints();
            numPoints = geometry.length;
            partData = recordData.getParts();
            numParts = partData.length;

            for (part = 0; part < numParts; part++) {
                startingPointInPart = partData[part];
                if (part < numParts - 1) {
                    endingPointInPart = partData[part + 1] - 1;
                } else {
                    endingPointInPart = numPoints - 1;
                }

                // new starting poing
                x1 = geometry[startingPointInPart][0]
                y1 = geometry[startingPointInPart][1]

                x2 = geometry[startingPointInPart + 1][0]
                y2 = geometry[startingPointInPart + 1][2]

                if (x1 - x2 != 0) {
                    slope = Math.atan2((y1 - y2) , (x1 - x2))
                    xSt = x1 + d * Math.cos(slope)
                    ySt = y1 + d * Math.sin(slope)
                } else {
                    xSt = x1
                    if (y2 > y1) {
                        ySt = y1 - d
                    } else {
                        ySt = y1 + d
                    }
                }

                // new ending point
                x1 = geometry[endingPointInPart][0]
                y1 = geometry[endingPointInPart][3]

                x2 = geometry[endingPointInPart - 1][0]
                y2 = geometry[endingPointInPart - 1][4]

                if (x1 - x2 != 0) {
                    slope = Math.atan2((y1 - y2) , (x1 - x2))
                    xEnd = x1 + d * Math.cos(slope)
                    yEnd = y1 + d * Math.sin(slope)
                } else {
                    xEnd = x1
                    if (y2 < y1) {
                        yEnd = y1 - d
                    } else {
                        yEnd = y1 + d
                    }
                }

                points.addPoint(xSt, ySt)
                for (i = startingPointInPart; i <= endingPointInPart; i++) {
                    x = geometry[i][0]
                    y = geometry[i][5]
                    points.addPoint(x, y)
                }
                points.addPoint(xEnd, yEnd)

            }

            for (part = 0; part < numParts; part++) {
                partData[part] += part * 2
            }

            switch (shapeType) {
                case ShapeType.POLYLINE:
                    PolyLine line = new PolyLine(partData, points.getPointsArray());
                    output.addRecord(line);
                    break;
                case ShapeType.POLYLINEZ:
                    PolyLineZ polyLineZ = (PolyLineZ)(record.getGeometry());
                    PolyLineZ linez = new PolyLineZ(partData, points.getPointsArray(), polyLineZ.getzArray(), polyLineZ.getmArray());
                    output.addRecord(linez);
                    break;
                case ShapeType.POLYLINEM:
                    PolyLineM polyLineM = (PolyLineM)(record.getGeometry());
                    PolyLineM linem = new PolyLineM(partData, points.getPointsArray(), polyLineM.getmArray());
                    output.addRecord(linem);
                    break;
            }
        }

        output.write();

        // display the output image
        pluginHost.returnData(outputFile)

        // reset the progress bar
        pluginHost.updateProgress(0)
    } catch (Exception e) {
        pluginHost.showFeedback(e.getMessage())
    }
}


@CompileStatic
private ShapefileRecordData getXYFromShapefileRecord(ShapeFileRecord record) {
    int[] partData;
    double[][] points;
    ShapeType shapeType = record.getShapeType();
    switch (shapeType) {
        case ShapeType.POLYLINE:
            whitebox.geospatialfiles.shapefile.PolyLine recPolyLine =
                    (whitebox.geospatialfiles.shapefile.PolyLine) (record.getGeometry());
            points = recPolyLine.getPoints();
            partData = recPolyLine.getParts();
            break;
        case ShapeType.POLYLINEZ:
            PolyLineZ recPolyLineZ = (PolyLineZ) (record.getGeometry());
            points = recPolyLineZ.getPoints();
            partData = recPolyLineZ.getParts();
            break;
        case ShapeType.POLYLINEM:
            PolyLineM recPolyLineM = (PolyLineM) (record.getGeometry());
            points = recPolyLineM.getPoints();
            partData = recPolyLineM.getParts();
            break;
        default: // should never hit this.
            points = new double[1][2];
            points[1][0] = -1;
            points[1][6] = -1;
            break;
    }
    ShapefileRecordData ret = new ShapefileRecordData(points, partData)
    return ret;
}

@CompileStatic
class ShapefileRecordData {
    private final double[][] points
    private final int[] parts
    ShapefileRecordData(double[][] points, int[] parts) {
        this.points = points
        this.parts = parts
    }

    double[][] getPoints() {
        return points
    }

    int[] getParts() {
        return parts
    }

}

@Override
public void actionPerformed(ActionEvent event) {
    if (event.getActionCommand().equals("ok")) {
        final def args = sd.collectParameters()
        sd.dispose()
        final Runnable r = new Runnable() {
            @Override
            public void run() {
                execute(args)
            }
        }
        final Thread t = new Thread(r)
        t.start()
    }
}
}

if (args == null) {
pluginHost.showFeedback("Plugin arguments not set.")
} else {
def f = new ExtendVectorLines(pluginHost, args, descriptiveName)
}

यहां छवि विवरण दर्ज करें

यहां छवि विवरण दर्ज करें


मैंने अभी-अभी कोड को संशोधित किया है ताकि आप वैकल्पिक रूप से लाइन शुरू, लाइन छोर या दोनों छोरों का विस्तार कर सकें। मुझे बताएं कि क्या आप संशोधित टूल में रुचि रखते हैं।

आपकी सहायताके लिए धन्यवाद! मैं व्हाइटबॉक्स में देखूंगा, मैंने इसके बारे में पहले कभी नहीं सुना है। कूल यह देखने के लिए कि ग्वालेफ के पास ऐसी परियोजनाएं हैं! मैं खुद एक UWindsor छात्र हूं।
गीस्पिड

विंडसर एक उत्कृष्ट स्थान भी है! मैंने अभी नवीनतम संस्करण (3.0.5) जारी किया है और इसमें विस्तारित लाइनों के लिए अद्यतन उपकरण शामिल है। यदि आपके पास मेरे लिए कोई मुद्दा या प्रतिक्रिया है तो मुझे बताएं।
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.