Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
93 views

I am trying to render a congressional boundaries map using d3. I am able to do this with the plain geojson file, but because it is quite large, I was trying to trim it down geo2topo. Now when I try to ...
anderruhr's user avatar
-1 votes
1 answer
51 views

I have the below javascript; var XX = $.getJSON("skiareas-polygons.geojson",function(data){ // add data to map L.geoJson(data, { style: function (feature) { ...
spreaderman's user avatar
  • 1,116
-1 votes
1 answer
106 views

I have a dataframe with a column called 'geometry', it contains Multipolygon and Polygon values. I want to use Pyspark or Python to find and return where coordinates contain [X, Y, Z]; also would like ...
SPena's user avatar
  • 37
0 votes
1 answer
93 views

I am making a geojson file of Berlin by myself. I am using geojson.io because it is very easy to use. When I draw the poligon, if the line is out of border of Berlin, is there any problem? I think ...
Pavon Colombia's user avatar
0 votes
1 answer
36 views

I implemented openlayers geojson-vt example. I try to load a genuine geojson... I don't understand why no features are generated: sandbox demo Where is the issue causing the difference with openlayers ...
Respect Pub's user avatar
1 vote
1 answer
128 views

To start here is an example of the geojson data: WESTERN NORTH PACIFIC ROMS GeoJSON: { "type": "Polygon", "coordinates": [ [ [ -77.52046966552734, ...
bv169's user avatar
  • 23
0 votes
1 answer
61 views

I'm using D3.js for drawing map of Vietnam. I fetch a GeoJSON data from an URL (in the code), I following a lot of instructions, from converting to TopoJSON (for compact size) then convert back to ...
C4n Ng0's user avatar
0 votes
1 answer
247 views

I'm attempting to combine 2 geojson files using ogr2ogr, but I'm getting the following errors: Running this from a windows cmd window: ogr2ogr PROW.geojson Rural.geojson Urban.geojson Returns this: ...
DaveF's user avatar
  • 285
0 votes
1 answer
524 views

I have a GeoJson file whose geometries are in 3857. I want to read it using C# and insert its rows in a postgres table and I want the geometries there to be in 4326. Also, I have some other files in ...
mehrandvd's user avatar
  • 9,184
0 votes
0 answers
93 views

I have a shapefile with postal codes in Belgium. In addition I have a distance-matrix from store-locations of one brand to all postal-codes. I managed to add markers to my map in PyQt5 QMainWindow ...
Johannes Van der Pol's user avatar
0 votes
0 answers
42 views

I want to search for the document with my location, depending on whether I am within the polygon. I have a document like this { ... "points": { "coordinates": [ [ ...
javi's user avatar
  • 3
1 vote
1 answer
73 views

Does anyone have any idea why D3 is failing to render the following GeoJSON? <!DOCTYPE html> <meta charset="utf-8"> <body> <svg width="960" height="720"></svg> &...
jbeard4's user avatar
  • 12.9k
0 votes
1 answer
513 views

All I want is to override the CSS of my Folium map. When I override the styles in my template, they do not reflect on my Folium map. However, when I edit the CSS in the browser's developer tools, it ...
Kenjuring's user avatar
0 votes
1 answer
50 views

I'm having the same issue found in this question, though it was supposedly fixed in Django 1.9, so I thought maybe I'm doing something wrong. I'm trying to serialize my geodjango data: homes = ...
Shmuelt's user avatar
  • 151
0 votes
1 answer
208 views

I'm using osmnx and networkx modelues in Python to convert a sumo network into a geojson file. I've got an error when using graph_to_gdfs I've tried this simple example after trying on a more ...
Pablo Lotito's user avatar
1 vote
0 answers
91 views

I have a GeoJSON layer in deck.gl which I'm trying to extrude based on the elevation property. E.g. { "type": "Feature", "geometry": { ...
guest_310723's user avatar
0 votes
1 answer
80 views

I have created a simple chloropleth of UK regions in highcharts, inclusive of countries other than England (North East, Wales, West Midlands, etc.) and I am using this public domain GeoJSON map. I am ...
tkfa's user avatar
  • 5
0 votes
0 answers
51 views

I have two files: one contains data on taxi trips in NYC and the other is a GeoJSON file with the borough boundaries of NYC. I need to create two new columns in the taxi trip dataframe. These columns ...
John Stuart's user avatar
0 votes
1 answer
321 views

I want to build an news interactive map. The app would get latest news of a website, try to regex location of news and if so, insert them as points in a map, where a user could navigate and click on ...
civil_engineer_1's user avatar
1 vote
0 answers
66 views

So there are a lot of questions on here about how to convert JSON to an NSDictionary, but nothing I've found on how to stop it from happening in the first place. I'm trying to develop an app. Part of ...
ReezaCoriza's user avatar
0 votes
0 answers
34 views

I continue working on the style classification of GeoJSON features based on the selection in a select html. The function that defines a general style classified by colors works without problem if i ...
user68481's user avatar
0 votes
1 answer
407 views

I tried to implement geojson-vt in my sveltekit project, however, it stopped just when I wanted to load my geojson file. +page.svelte: <script> import geojsonfile from '$lib/some_file....
louislugas's user avatar
0 votes
1 answer
162 views

I'm trying to convert from Shape to a JSON string but I couldn't create a string for Polygon, I searched but I couldn't find something that helps me. In the code shows other types different to polygon ...
SonickSeven's user avatar
0 votes
1 answer
162 views

I am attempting to import data from Revit rooms into an interactive Power BI report. I would like to bring the room geometries into the PBI report and link it with external data tables, creating ...
Anna Milczarek's user avatar
0 votes
0 answers
65 views

I'm working with this schema: const mongoose = require("mongoose"); const { rideStatus } = require("../utils/rideStatus") const rideSchema = new mongoose.Schema( { ...
Francisco Iturburu's user avatar

1
2
3 4 5
88