Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
82 views

I am trying to convert WKT strings in a column to WKB in Snowflake using ST_GEOMETRYFROMWKT so that I can visualize them in Spotfire. Some rows cause this error: ERROR [P0000] Geometry validation ...
rjcito's user avatar
  • 21
0 votes
1 answer
212 views

I am attempting to load WKT representations of polygons and multipolygons into a Snowflake GEOGRAPHY-type column. Each polygon has thousands of points, each of which is defined by lat/long points ...
Jonsey's user avatar
  • 1
0 votes
0 answers
122 views

I'm currently working on an online dashboard in Google Looker Studio, with BigQuery as the database backend. One of the visualizations involves displaying polygons on a map, which had been working ...
antonio-graterol's user avatar
0 votes
1 answer
648 views

I am working on a Tableau project that provides an analysis of congestion in NYC. I have a data set that shows the daily volume of cars, the borough, the origin street (fromst), destination street (...
wijodu's user avatar
  • 9
3 votes
1 answer
240 views

I have downloaded the NYC Taxi Zones dataset (downloaded from SODA Api and saved as json file - Not GeoJson or Shapefile). The dataset is rather small, thus I am using the whole information included. ...
NikSp's user avatar
  • 1,589
0 votes
1 answer
167 views

I am using shape data from .shp files and using geopandas to convert those into Multipolygons for my postgresql table with a column of type geometry(multipolygon, 4326) NULL. The issue I'm running ...
Paul's user avatar
  • 3
1 vote
0 answers
223 views

I have a table named fields with a column named geoJSON. The geoJSON column is of type JSON which stores an actual GeoJSON object. I am trying to take a list of coordinates which are POINTS (single ...
adamlmiller's user avatar
-1 votes
1 answer
153 views

I'm using PHP to physically locate items in a MYSQL table based on their relationship to other items. Specifically, I'm creating the spatial WKT by running a series of ST_UNIONs on the result. In most ...
SlamJammington's user avatar
0 votes
1 answer
194 views

I am trying to read a .shx file into my Python script using geopandas and I receive: "ValueError: Invalid value supplied 'WktVersion.WKT2_2019'. Only ('WKT2_2015', 'WKT2_2015_SIMPLIFIED', '...
SergeNYC's user avatar
0 votes
1 answer
366 views

I am currently working on a project that involves ingesting spatial data from an Oracle database into GeoMesa using the JDBC converter. My source data is in the Oracle-specific SDO_GEOMETRY format. My ...
auliama's user avatar
2 votes
1 answer
1k views

I implemented NetTopologySuite into EF Core (SQLServer). I'm getting coordinates from the Google APIs, transforming them into Point and Polygon and saving them into the database without trouble. I ...
Auguste VN's user avatar
0 votes
2 answers
245 views

I am looking for a regex expression for validating a MultiPolygon in WKT format.
Meursault's user avatar
0 votes
1 answer
964 views

I have a Shapefile with multiple polygons. When using the following method to generate a WKT the resultant output is only the first polygon of the Shapefile. The method works fine for single polygon ...
Larry's user avatar
  • 45
1 vote
1 answer
734 views

I have an image stored as matrix with grayscale for each pixel. On this image I use SLIC algorithm to divide it into areas. So I get a simple feature (sf) with polygons, I am able to extract in well-...
Allerleirauh's user avatar
0 votes
1 answer
189 views

For those wanting to test the contents of their .geojson files, by visualising/ plotting coordinates. I didn't see a go-to solution online.
DanielBell99's user avatar
  • 2,045
1 vote
1 answer
220 views

Below is the rasterLayer RASTER_slope in a plot (4 NAs are shown in white): Here is the metadata of RASTER_slope class : RasterLayer dimensions : 4, 4, 16 (nrow, ncol, ncell) resolution : 500, ...
Inder's user avatar
  • 51
0 votes
1 answer
69 views

I have multi-part polyline vertices stored as individual rows in an Oracle 18c table. ASSET_ID PART_NUM VERTEX_NUM X Y M ---------- ---------- ---------- ---------- -----...
User1974's user avatar
  • 366
1 vote
0 answers
337 views

I have a dataset like the image below. I want to save it as shp file. enter image description here I tried with this code. df['geometry'] = geopandas.GeoSeries.from_wkt(df['geometry']) gdf = geopandas....
datasever's user avatar
1 vote
1 answer
1k views

The data is a csv with colum like this : "list(c(-72.6689780388482, -72.6697951984133, ...... -37.8155440677891, -37.8164165487739, ......))" The original archive is a .RDS file My goal is ...
Cristián Vargas Acevedo's user avatar
0 votes
1 answer
1k views

I am trying to use GeoTools to transform between two coordinate systems, one in meter and the other in degree, but no matter what i try the converted values are not correct. I have tried to follow ...
aweis's user avatar
  • 5,656
1 vote
1 answer
2k views

How it's currently done is as follows: geoms = df["wkt"].apply(shapely.wkt.loads).values Here df["wkt"] has rows with data like: "MULTIPOLYGON (((24.2401805 70.8385222,24....
Laende's user avatar
  • 207
1 vote
3 answers
2k views

I have a csv file that contains the point geometry information in a single column. Is there a straight forward way to convert from csv to a spatial data file in r given the format of the geometry ...
Adrienne's user avatar
1 vote
1 answer
165 views

I have a shapely Polygon. What is the difference between converting it to wkt and converting it to string: import shapely.wkt P = shapely.wkt.loads('POLYGON ((8.0 3.0, 8.3 3.3, 8.3 3.0, 8.0 3.0))') ...
GStav's user avatar
  • 1,176
0 votes
0 answers
885 views

One thing I can't explain. Why the new created polygon converted to string by str() or .wkt is not recognized in the list after shapely.wkt.loads? The last print returns no. import shapely.wkt liste =...
Tim's user avatar
  • 583
1 vote
1 answer
640 views

I am getting an error trying to convert data from a Geometry field to a geography field in a separate table. INSERT INTO PIGeoData ([ID], [geo_name], [geo_wkt] ,[port_geography_binary] ) ...
Feargal Hogan's user avatar