Re: [gdal-dev] Converting OBJ to Geojson files with ogr2ogr

2020-12-02 Thread Paul Harwood
> Smith-Kettlewell Eye Research Institute > Office: 415-345-2130 > Cell: 650-833-9394 > > -- > *From:* Paul Harwood > *Sent:* Wednesday, December 2, 2020 12:20 PM > *To:* Brandon Biggs > *Cc:* Andrew C Aitchison ; > gdal-dev@lists.osgeo.org > *Subject:* Re: [gdal-dev] Co

Re: [gdal-dev] Converting OBJ to Geojson files with ogr2ogr

2020-12-02 Thread Brandon Biggs
c: Andrew C Aitchison ; gdal-dev@lists.osgeo.org Subject: Re: [gdal-dev] Converting OBJ to Geojson files with ogr2ogr GeoJSON is very good for many things but I would not convert an .OBJ to GeoJSON and then into the VR space local coordinate system. You are going to have project the OBJ into 432

Re: [gdal-dev] Converting OBJ to Geojson files with ogr2ogr

2020-12-02 Thread Paul Harwood
> -- > *From:* Paul Harwood > *Sent:* Wednesday, December 2, 2020 2:31 AM > *To:* Andrew C Aitchison > *Cc:* Brandon Biggs ; gdal-dev@lists.osgeo.org < > gdal-dev@lists.osgeo.org> > *Subject:* Re: [gdal-dev] Converting OBJ to Geojson files with ogr2ogr

Re: [gdal-dev] Converting OBJ to Geojson files with ogr2ogr

2020-12-02 Thread Brandon Biggs
eo.org Subject: Re: [gdal-dev] Converting OBJ to Geojson files with ogr2ogr .OBJ is a simple object mesh (or to put it in more traditional terms: TIN) - it has shape but no data values and is not geolocated. I don't think there is any driver for OGR that will read .OBJ. You are g

Re: [gdal-dev] Converting OBJ to Geojson files with ogr2ogr

2020-12-02 Thread Paul Harwood
.OBJ is a simple object mesh (or to put it in more traditional terms: TIN) - it has shape but no data values and is not geolocated. I don't think there is any driver for OGR that will read .OBJ. You are going to problems with geolocation if you write your own. Geojson requires that the geometrie

Re: [gdal-dev] Converting OBJ to Geojson files with ogr2ogr

2020-12-01 Thread Andrew C Aitchison
On Tue, 1 Dec 2020, Brandon Biggs wrote: Hello, I am wondering how to convert an obj file to a geojson file? I am using ogr2ogr with the command: Ogr2ogr -f geojson output.geojson input.obj But get the error that ogr2ogr does not have an OBJ driver. I looked on: the vector drivers page

[gdal-dev] Converting OBJ to Geojson files with ogr2ogr

2020-12-01 Thread Brandon Biggs
Hello, I am wondering how to convert an obj file to a geojson file? I am using ogr2ogr with the command: Ogr2ogr -f geojson output.geojson input.obj But get the error that ogr2ogr does not have an OBJ driver. I looked on: the vector drivers page but am u