वेक्टर डेटासेट में सभी सुविधाओं को आसानी से कैसे स्थानांतरित करें?


33

मान लीजिए कि मैंने एक शेपफाइल को एक साथ रखा है और सभी विशेषताओं में उनके कोने एक स्थिर राशि द्वारा स्थानांतरित किए गए हैं। सभी सुविधाओं को स्थानांतरित करने का सबसे आसान तरीका क्या है (इसलिए (x, y) उनके कोने की स्थिति) एक मनमानी पारी द्वारा? मेरे पास बहुत सारी फाइलें हैं जिन्हें मैं इस सुधार पर लागू करूंगा, इसलिए एक बैश / ओजीआर उत्तर पसंद किया जाएगा :)

अंत में, मैंने इसके लिए स्पैटियालाइट का उपयोग करना समाप्त कर दिया, क्योंकि इसका अच्छा कार्य है ShiftCoords। हालांकि, धागा बहुत जानकारीपूर्ण था! सबको शुक्रीया!


मुझे सिर्फ इस एंट्री से प्यार है। यह पूरा पृष्ठ Q & A का एक शानदार उदाहरण है। एक स्पष्ट रूप से स्पष्ट रूप से वर्णित प्रश्न, और हर उत्तर एक अनूठा, मान्य और पूर्ण समाधान देता है। यह खूबसूरत है। मैंने हर एक को अपने गुण के आधार पर उतारा।
मैट विल्की

@ इस पोस्ट को GDAL लाइब्रेरी के अपेक्षाकृत हालिया संवर्द्धन के कारण थोड़ा अद्यतन करने की आवश्यकता है। अब एक लाइनर समाधान है (नीचे उत्तर देखें)! SpatiaLite ShiftCoords फ़ंक्शन का उपयोग सीधे ogr2ogr उपयोगिता के साथ करना संभव है।
एंटोनियो फाल्कियानो

जवाबों:


21

JEQL का उपयोग करना यह तीन लाइनों के साथ किया जा सकता है:

ShapefileReader t file: "shapefile.shp";
out = select * except (GEOMETRY), Geom.translate(GEOMETRY,100,100) from t;
ShapefileWriter out file: "ahapefile_shift.shp";

अग्रणी! अच्छा!
वोल्फऑड्रेड

अच्छा लगा, डेविड। वह तंग है।
sgillies

1
बस इशारा करना होगा ... "अनहैफाइल?"
वुल्फड्रैड

मैंने Spatialite के अनुवाद फ़ंक्शन का उपयोग करके समाप्त किया, जो कि आप यहां सुझाए गए समान है।
जोस

30

मैंने इस तरह की प्रोसेसिंग को सरल बनाने के लिए फियोना (एक ओजीआर रैपर) डिजाइन किया है।

from fiona import collection
import logging

log = logging.getLogger()

# A few functions to shift coords. They call eachother semi-recursively.
def shiftCoords_Point(coords, delta):
    # delta is a (delta_x, delta_y [, delta_y]) tuple
    return tuple(c + d for c, d in zip(coords, delta))

def shiftCoords_LineString(coords, delta):
    return list(shiftCoords_Point(pt_coords, delta) for pt_coords in coords)

def shiftCoords_Polygon(coords, delta):
    return list(
        shiftCoords_LineString(ring_coords, delta) for ring_coords in coords)

# We'll use a map of these functions in the processing code below.
shifters = {
    'Point': shiftCoords_Point,
    'LineString': shiftCoords_LineString,
    'Polygon': shiftCoords_Polygon }

# Example 2D shift, 1 unit eastward and northward
delta = (1.0, 1.0)

with collection("original.shp", "r") as source:

    # Create a sink for processed features with the same format and 
    # coordinate reference system as the source.
    with collection(
            "shifted.shp", 
            "w",
            driver=source.driver,
            schema=source.schema,
            crs=source.crs
            ) as sink:

        for rec in source:
            try:
                g = rec['geometry']
                g['coordinates'] = shifters[g['type']](
                    g['coordinates'], delta )
                rec['geometry'] = g
                sink.write(rec)
            except Exception, e:
                log.exception("Error processing record %s:", rec)

अपडेट : मैंने इस स्क्रिप्ट का एक अलग, हल्का संस्करण http://sgillies.net/blog/1128/geoprocessing-for-hipsters-translating-features पर डाल दिया है ।


2
"हिप्पस्टर्स के लिए जियोप्रोसेसिंग" काश मैं उस भयानक शीर्षक के लिए सिर्फ 10x तक
बढ़ा सकता

13

और हालांकि पोस्ट को अजगर के साथ टैग किया गया है, क्योंकि जेईक्यूएल पहले से ही उल्लेख किया गया है, यहां जावास्क्रिप्ट (जावास्क्रिप्ट का उपयोग करके ) के साथ एक उदाहरण है ।

/**
 * Shift all coords in all features for all layers in some directory
 */

var Directory = require("geoscript/workspace").Directory;
var Layer = require("geoscript/layer").Layer;

// offset for all geometry coords
var dx = dy = 10;

var dir = Directory("./data");
dir.names.forEach(function(name) {
    var orig = dir.get(name);
    var shifted = Layer({
        schema: orig.schema.clone({name: name + "-shifted"})
    });
    orig.features.forEach(function(feature) {
        var clone = feature.clone();
        clone.geometry = feature.geometry.transform({dx: dx, dy: dy});
        shifted.add(clone);
    });
    dir.add(shifted);
});

13

GDAL> = 1.10.0 का उपयोग SQLite और स्पैटियालाइट के साथ संकलित:

ogr2ogr data_shifted.shp data.shp -dialect sqlite -sql "SELECT ShiftCoords(geometry,1,10) FROM data"

जहाँ shiftX = 1 और shiftY = 10 है।


1
शानदार - एक सरल एक लाइन सीएलआई समाधान।
डेव एक्स

कम और आसान!
कुर्त

8

GRASS GIS v.edit मॉड्यूल :

मिलान प्रक्षेपण में एक मौजूदा स्थान और मैपसेट ग्रहण किया जाता है।

एक शेल स्क्रिप्ट में:

#!/bin/bash

for file in `ls | grep \.shp$ | sed 's/\.shp$//g'`
do
    v.in.ogr dsn=./${file}.shp output=$file
    v.edit map=$file tool=move move=1,1 where="1=1"
    v.out.ogr input=$file type=point,line,boundary,area dsn=./${file}_edit.shp
done

या पायथन लिपि में:

#!/usr/bin/env python

import os
from grass.script import core as grass

for file in os.listdir("."):
    if file.endswith(".shp"):
        f = file.replace(".shp","")
        grass.run_command("v.in.ogr", dsn=file, output=f)
        grass.run_command("v.edit", map=f, tool="move", move="1,1", where="1=1")
        grass.run_command("v.out.ogr", input=f, type="point,line,boundary,area", dsn="./%s_moved.shp" % f)

8

एक अन्य विकल्प केवल ओआर 2 आर 2 में रिप्रोडक्शन विकल्पों का उपयोग करना होगा, निश्चित रूप से जेईक्यूएल, फियोना या जियोस्क्रिप्ट दृष्टिकोण की तुलना में एक हैकर दृष्टिकोण लेकिन प्रभावी कोई नहीं-कम। ध्यान दें कि से और अनुमानों को वास्तव में मूल आकार-प्रकार का वास्तविक प्रक्षेपण होने की आवश्यकता नहीं है, जब तक कि एकमात्र चीज जो s_srs और t_srs में उपयोग किए जाने वाले अनुमानों के बीच बदल रही है, झूठे पूर्वलेखन और नॉर्थिंग हैं। इस उदाहरण में मैं सिर्फ Google Mercator का उपयोग कर रहा हूं। मुझे यकीन है कि आधार के रूप में उपयोग करने के लिए बहुत सरल समन्वय प्रणाली है, लेकिन यह मेरे सामने कॉपी / पेस्ट करने के लिए सही था।

ogr2ogr -s_srs EPSG:900913 -t_srs 'PROJCS["Google Mercator",GEOGCS["WGS 84",DATUM["World Geodetic System 1984",SPHEROID["WGS 84",6378137.0,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0.0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.017453292519943295],AXIS["Geodetic latitude",NORTH],AXIS["Geodetic longitude",EAST],AUTHORITY["EPSG","4326"]],PROJECTION["Mercator_1SP"],PARAMETER["semi_minor",6378137.0],PARAMETER["latitude_of_origin",0.0],PARAMETER["central_meridian",0.0],PARAMETER["scale_factor",1.0],PARAMETER["false_easting",1000.0],PARAMETER["false_northing",1000.0],UNIT["m",1.0],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","900913"]]' -f "ESRI Shapefile" shift.shp original.shp

या टाइपिंग / पेस्टिंग को बचाने के लिए, निम्न को projcs.txt(ऊपर के समान, लेकिन एकल उद्धरण को हटाते हुए) सहेजें :

-s_srs EPSG:900913 -t_srs PROJCS["Google Mercator",GEOGCS["WGS 84",DATUM["World Geodetic System 1984",SPHEROID["WGS 84",6378137.0,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0.0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.017453292519943295],AXIS["Geodetic latitude",NORTH],AXIS["Geodetic longitude",EAST],AUTHORITY["EPSG","4326"]],PROJECTION["Mercator_1SP"],PARAMETER["semi_minor",6378137.0],PARAMETER["latitude_of_origin",0.0],PARAMETER["central_meridian",0.0],PARAMETER["scale_factor",1.0],PARAMETER["false_easting",1000.0],PARAMETER["false_northing",1000.0],UNIT["m",1.0],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","900913"]]

और फिर चलाएं:

ogr2ogr --optfile projcs.txt shifted.shp input.shp

2
यह जियो-स्क्रिप्टिंग गोल्फ में बदल रहा है! अगला कदम लंबे ईपीएल PROJCS को खत्म करने के लिए अपने ईपीएसजी टेबल को हैक करना होगा;)
sgillies

@ sgillies, epsg को हैक करने की आवश्यकता नहीं है, बस projcs को एक फ़ाइल में सहेजें और उपयोग करें --optfile, जैसे ogr2ogr --optfile projcs.txt shifted.shp input.shp। मैं इसे उत्तर में मोड़ूंगा।
मैट विल्की

7

पैकेज maptools और उसके elide फ़ंक्शन का उपयोग कर एक आर विकल्प:

shift.xy <- c(1, 2)
library(maptools)
files <- list.files(pattern = "shp$")
for (fi in files) {
  xx <- readShapeSpatial(fi)
  ## update the geometry with elide arguments
  shifted <- elide(xx, shift = shift.xy)
  ## write out a new shapfile
  writeSpatialShape(shifted, paste("shifted", fi, sep = ""))
}

4

जियोफिक्शन में शेपफाइल पार्सर का उपयोग करके, आप प्रक्रिया को करने के लिए XSLT का उपयोग कर सकते हैं। बेशक आप के बाद वापस आकार बदलने के लिए की आवश्यकता होगी :-)।

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="2.0" xmlns:gml="http://www.opengis.net/gml">
    <xsl:param name="x_shift" select="0.0"/>
    <xsl:param name="y_shift" select="0.0"/>

    <!-- first the identity transform makes sure everything gets copied -->
    <xsl:template match="node()|@*">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>
    <!-- for any element with coordinate strings, apply the translation factors -->
    <!-- note that a schema-aware processor could use the schema type names to simplify -->
    <xsl:template match="gml:pos|gml:posList|gml:lowerCorner|gml:upperCorner">
        <xsl:copy>
            <!-- this xpath parses the ordinates, assuming x y ordering (shapefiles), applies translation factors -->
            <xsl:value-of select="
                for $i in tokenize(.,'\s+') return 
                  if ($i[(position() mod 2) ne 0]) then 
                    number($i)+$x_shift 
                  else 
                    number($i)+$y_shift
             "/>
        </xsl:copy>
    </xsl:template>
</xsl:stylesheet>

4

यहाँ एक Groovy GeoScript संस्करण है:

import geoscript.workspace.Directory
import geoscript.layer.Layer

int dx = 10
int dy = 10

def dir = new Directory("./data")
dir.layers.each{name ->
    def orig = dir.get(name)
    def shifted = dir.create("${name}-shifted", orig.schema.fields)
    shifted.add(orig.cursor.collect{f ->
        f.geom = f.geom.translate(dx, dy)
        f
    })
}  

0

यहाँ ओजीआर संस्करण है

ड्राइवर = ogr.GetDriverByName ("ESRI शेपफाइल")

डीईएफ़ मूव (dx, dy, dz):

dataSource = driver.Open(path,1)
layer = dataSource.GetLayer(0)
for feature in layer:
    get_poly = feature.GetGeometryRef()
    get_ring = get_poly.GetGeometryRef(0)
    points   = get_ring.GetPointCount()
    set_ring = ogr.Geometry(ogr.wkbLinearRing)
    for p in xrange(points):
        x,y,z = get_ring.GetPoint(p)
        x += dx
        y += dy
        z += dz
        set_ring.AddPoint(x,y)
        print x,y,z
set_poly = ogr.Geometry(ogr.wkbPolygon)
set_poly.AddGeometry(set_ring)

feature.SetGeometry(set_poly)
layer.SetFeature(feature)

del layer
del feature
del dataSource   
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.