You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I am working on one network kernel density estimation problem. The task is to estimate the road network density of motor vehicle collision records in New York.
Describe the solution you'd like
A convenient tool that can generate the network kernel density based on point features (such as collision records), network shapefile (e.g., road network), and the city border (a polygon)
Describe alternatives you've considered
I am using the network kernel density estimation tool in the R package spNetwork to complete this task. But a python class that can complete this task is preferable for Python users.
Thanks for opening this @bright1993ff66. This is not currently possible within spaghetti. I seem to remember that @knaaptime was working with network KDE but I can't remember the package it was with.
Also, the modernization and update of spaghetti has been on my To Do list for some years now. Along with the Network KDE idea. Seeing as how I have had no bandwidth for implementing any of those ideas in the past 5 years, I highly doubt I will in the near or mid term future.
the pysal segregation package uses what's essentially the 'simple method' described over in spnetwork, but there's actually not much more i could expose. Basically, you just need to do an aggregation query with pandana to get the total values at each $i$, then divide by the sum to get you into the [0,1] range.
To get the okabe-style measures, you'd need to roll your own, unfortunately
Is your feature request related to a problem? Please describe.
I am working on one network kernel density estimation problem. The task is to estimate the road network density of motor vehicle collision records in New York.
Describe the solution you'd like
A convenient tool that can generate the network kernel density based on point features (such as collision records), network shapefile (e.g., road network), and the city border (a polygon)
Describe alternatives you've considered
I am using the network kernel density estimation tool in the R package spNetwork to complete this task. But a python class that can complete this task is preferable for Python users.
Additional context
Some reference:
The text was updated successfully, but these errors were encountered: