ডেস্কটপের জন্য আর্কজিআইএসে নির্দিষ্ট দূরত্ব দ্বারা লাইন প্রসারিত করা হচ্ছে?


11

আমার একটি নিখুঁত নান্দনিক স্তর রয়েছে যার তীর চিহ্ন রয়েছে। লাইনটি খুব ছোট হওয়ায় কিছু ডান দেখাচ্ছে না। আমি সম্ভবত 50 টি রেকর্ড নির্বাচন করেছি যেখানে আমাকে একটি নির্দিষ্ট সংখ্যার (উদা। 2 মিটার) দ্বারা এই লাইনটি প্রসারিত করতে হবে। প্রসারিত রেখার সরঞ্জামটি কেবল একটি নির্দিষ্ট চৌরাস্তাতে লাইনগুলি প্রসারিত করে, সুতরাং এই সরঞ্জামটি আমি যা খুঁজছি তা নয়।

আমি আকৃতির দৈর্ঘ্যের ক্ষেত্রটি সম্পাদনা করার চেষ্টা করেছি তবে এটি আমাকে দেয় না। ফিল্ড ক্যালকুলেটরের মাধ্যমে বা সম্পাদক সরঞ্জাম বারের মধ্যে এটি করার কোনও সহজ উপায় আছে?


1
ডাটা, আকার, জিডিবি, এফজিডিবি? আপনার কি বেসিক, স্ট্যান্ডার্ড, অ্যাডভান্সড আছে?
ব্র্যাড নেসম

আকৃতি এবং উন্নত।
GISKid

আমি কি স্পষ্ট করে বলতে পারি, আপনি কি পললাইন টাইপের শেফফিলের প্রতিটি বৈশিষ্ট্য বা কেবলমাত্র নির্বাচিত বৈশিষ্ট্যগুলি প্রসারিত করতে চান?

আপনি যদি আপনার প্রসারণটি শেষের বিন্দুতে ভিত্তি করতে চান তবে আপনি আগের ভার্টেক্সে গিয়ে এই দুটি পয়েন্টের মধ্যে slাল নির্ধারণ করতে পারেন। তারপর আপনি প্রান্তবিন্দু আপনার দূরত্ব শেষবিন্দু স্থানান্তর করতে পারেন এক্স বলেছেন ঢাল উপর ভিত্তি করে।
পল

@ পল, আমি এটি করার জন্য একটি স্ক্রিপ্ট লিখছি, তবে এটি কিছুটা জটিল কারণ আপনার বহু-অংশের পলিনগুলির জন্য অ্যাকাউন্ট প্রয়োজন। এটি হল, আপনাকে প্রতিটি অংশের জন্য শুরু এবং শেষের পয়েন্টগুলি এবং তাদের প্রতিবেশী পয়েন্টগুলি লক্ষ্য করা উচিত। আমার জানা দরকার যে GISKid প্রথমে যদিও সমস্ত বৈশিষ্ট্য প্রসারিত করতে আগ্রহী।

উত্তর:


12

ওয়েল আমি মনে করি যে আমি এটি কোনও ভার্টেক্স গণনার লাইনের জন্য পেয়ে গেছি। আমি মাল্টিপার্ট লাইনগুলি চেষ্টা করিনি, কারণ আমি তো কখনও আরকেপিতে এটির সাথে গোলমাল করি না। জ্যামিতি অবজেক্টের জন্য শেষ পয়েন্ট সম্পত্তিটিতে লেখার অ্যাক্সেস না থাকায় কোডিংটি আরও কিছুটা কঠিন হয়ে পড়েছিল। Opeাল (যা আমার প্রাথমিক চিন্তা ছিল) ব্যবহার করার পরিবর্তে, আমি এই এসও প্রশ্ন থেকে কোডটি ব্যবহার করেছি । এটি ত্রিকোণমিতির উপর নির্ভর করে না, তাই এটি আরও কিছুটা দক্ষ হওয়া উচিত। নিম্নলিখিত কোডটি একটি লাইনের শেষ পয়েন্টটিকে নতুন স্থানাঙ্কে স্থানান্তরিত করে কাজ করে যা শেষ দুটি শীর্ষে থেকে একটি রেখার দীর্ঘায়নের পাশাপাশি থাকে। আমি এটি একটি শেফফাইলে পরীক্ষা করেছি।

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)

আমি ওআইডি ভিত্তিক বিভাগগুলির জন্য প্রতীকটি তীরের শেষে রেখেছি যাতে বৈশিষ্ট্যগুলির মধ্যে বিভাজনটি দেখতে আরও সহজ হবে। লেবেলিং শীর্ষে গণনা সেট করা হয়েছিল।এখানে চিত্র বর্ণনা লিখুন


এটি কেবল আমাকে অনেক সাহায্য করেছে! তবে, দূরত্বের প্যারামিটারটি মূল রেখার বৈশিষ্ট্যগুলির ক্ষেত্রে কোনও ক্ষেত্রের ভিত্তিতে তৈরি করা যেতে পারলে এটি আমার বিশেষ পরিস্থিতিতে আরও বেশি সহায়ক হবে। আমি নিজেই এটি বাস্তবায়নের চেষ্টা করেছি এবং জানি যে আমি কোনওভাবেই "নিউভার্ট =" লাইনের দূরত্বগুলি দিয়ে পুনরাবৃত্তি করতে হবে তবে এটি বাস্তবায়নে আমার খুব কষ্ট হচ্ছে। আপনি যদি নিজের কোডটি প্রসারিত করতে সক্ষম হন তবে আমি খুব কৃতজ্ঞ হব!
জিওজন

যদি আপনি পাইথন কনসোলের মধ্যে থেকে স্ক্রিপ্টটি চালাচ্ছিলেন তবে আপনার ভিউ আপডেট করতে ভুলবেন না। বেশ কয়েকটি "ব্যর্থ" চেষ্টা করার পরে আমার লাইনগুলি সত্যই দীর্ঘ হয়েছে।
EikeMike

2

আপনি যদি প্রসারিত করতে চান এমন লাইনগুলির একটি নির্বাচন করেন তবে কী হবে।
কাঙ্ক্ষিত এক্সটেনশনের পরিমাণ দ্বারা সেই লাইনগুলি বাফার করুন।
এটিকে একটি লাইনে রূপান্তর করুন fc তে।
তারপরে ছেদটি প্রসারিত করুন।
মাঝখানে লাইনটি ওভারল্যাপ করা থেকে বিরত রাখতে আপনাকে বাফারের অন্য প্রান্তটি ভেঙে মুছতে হতে পারে। (আপনার কাছে যা আছে বা কী করতে চান তার কোনও স্ক্রিনশট আমি দেখিনি)
বা আমার কাছে মনে হয় যে এটিটোলে একটি সরঞ্জাম রয়েছে (আমি কার্যকারিতাটি পরীক্ষা করতে যাচ্ছি এবং এটি নিখরচায়)
আমি এট সরঞ্জামগুলিতে দরকারী কিছু পাইনি এটি এই থ্রেড কিছু (বয়সী) VB কোড। এবং কিছু অজগর জন্য একটি অনুরোধ। আপনি এটি অনুসরণ করা এবং পরীক্ষা পারে ideas.arcgis.com ওয়েবসাইট।


2

এখানে এমন একটি পদ্ধতি যা নোড পয়েন্টের সংখ্যার সমন্বয়ে মাল্টি পার্ট পলিনগুলির সাথে কাজ করে। এটি ওপেন সোর্স জিআইএস হোয়াইটবক্স জিএটি ( http://www.uoguelph.ca/~hydrogeo/Whitebox/ ) ব্যবহার করে। সহজভাবে হোয়াইটবক্স ডাউনলোড করুন, স্ক্রিপ্টারটি (সরঞ্জামদণ্ডের স্ক্রিপ্ট আইকন) খুলুন, স্ক্রিপ্টিংয়ের ভাষাটি গ্রোভিতে পরিবর্তন করুন, নিম্নলিখিত কোডটি এতে আটকান এবং এটিকে 'এক্সটেন্ডেভেক্টরলাইনস.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)
}

এখানে চিত্র বর্ণনা লিখুন

এখানে চিত্র বর্ণনা লিখুন


আমি সবেমাত্র কোডটি সংশোধন করেছি যাতে আপনি বৈকল্পিকভাবে লাইনের শুরু, লাইন শেষ বা উভয় প্রান্ত প্রসারিত করতে পারেন। আপনি যদি পরিবর্তিত সরঞ্জামটিতে আগ্রহী হন তবে আমাকে জানান।

আপনার সাহায্যের জন্য ধন্যবাদ! আমি হোয়াইটবক্সে সন্ধান করব, আমি এর আগে কখনও শুনিনি। দেখতে ভালই যে গেল্ফের এমন প্রকল্প রয়েছে! আমি নিজেই একজন উইন্ডসোর ছাত্র।
GISKid

উইন্ডসর একটি দুর্দান্ত জায়গা! আমি সবেমাত্র সর্বশেষতম সংস্করণ (3.0.5) প্রকাশ করেছি এবং এতে লাইন বাড়ানোর জন্য আপডেট হওয়া সরঞ্জামটি অন্তর্ভুক্ত রয়েছে। আমার কাছে আপনার কাছে কোনও সমস্যা বা প্রতিক্রিয়া থাকলে আমাকে জানান।
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.