Terence Tuhinanshu
Terence Tuhinanshu
These are being seen again recently. Will do greater investigation if frequency increases.
I downloaded last year's worth of logs from Papertrail and grepped for SIGKILL, resulting in this file: [sigkill_only.txt](https://github.com/user-attachments/files/19799543/sigkill_only.txt) Counting the [number of occurrences per day](https://docs.google.com/spreadsheets/d/195CK5TaxsqVTE6xV--58lAHyYiCfMaa_PKAwulCCDXw/), we do see an uptick...
It's quite likely that the PROD tile servers will convert to SSL once we deploy all the new work from staging, since the staging tile servers do use SSL. I...
It seems like this happens at the edge of certain tiles. 1 sq km shape in Center City does not cause this, but near the Art Museum does.
Here's a GeoJSON of the offending shape to test with: ```json {"type": "Feature", "properties": {}, "geometry": {"type":"MultiPolygon","coordinates":[[[[-75.19678870333927,39.96553758512753],[-75.18505772457821,39.96553758512753],[-75.18505772457821,39.97452797890017],[-75.19678870333927,39.97452797890017],[-75.19678870333927,39.96553758512753]]]]}} ```
As shown in this Notebook: https://gist.github.com/rajadain/60a01ecb2b674811d54c8a33a2dd633e, the reprojected AoI is indeed out of bounds of one of the tiles, or at least on the edge enough to cause problems: 
I was able to use a script like this to bake static vector tiles that are restricted to certain stream orders: [ingest-vector-tiles-2.sh](https://github.com/user-attachments/files/15892475/ingest-vector-tiles-2.txt). You can see the cutoffs in the file,...
@aufdenkampe @darscott the stream layer is available on staging here: https://staging.modelmywatershed.org/, if you scroll down the Streams tab in the layer selector and select "TDX Streamnet 7020038340" to see the...
I made an [updated version of my script](https://github.com/user-attachments/files/16459189/ingest-vector-tiles-3.txt) that is [easier to parameterize](https://github.com/user-attachments/files/16459192/tdx-styling.csv), and ingested the Vector Tiles with the new breaks. These are headed to staging now, will post...
I've also been playing around with line width. If we very naively just use the stream order for line width: ```diff diff --git a/src/mmw/js/src/core/models.js b/src/mmw/js/src/core/models.js index 4a63525c..93396fd6 100644 --- a/src/mmw/js/src/core/models.js...