This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # /// script | |
| # requires-python = ">=3.11" | |
| # dependencies = [ | |
| # "requests", | |
| # ] | |
| # /// | |
| """Download LAPD drone flight data from ArcGIS feature service.""" | |
| import json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2"><Folder ><Folder ><name >AE654A track</name> | |
| <Placemark ><name >AE654A</name> | |
| <Style ><LineStyle ><color >ff1c1ae3</color> | |
| <width >4</width> | |
| </LineStyle> | |
| <IconStyle ><Icon ><href >http://maps.google.com/mapfiles/kml/shapes/airports.png</href> | |
| </Icon> | |
| </IconStyle> | |
| </Style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2"><Folder ><Folder ><name >N29LW track</name> | |
| <Placemark ><name >N29LW</name> | |
| <Style ><LineStyle ><color >ff1c1ae3</color> | |
| <width >4</width> | |
| </LineStyle> | |
| <IconStyle ><Icon ><href >http://maps.google.com/mapfiles/kml/shapes/airports.png</href> | |
| </Icon> | |
| </IconStyle> | |
| </Style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2"><Folder ><Folder ><name >N2585U track</name> | |
| <Placemark ><name >N2585U</name> | |
| <Style ><LineStyle ><color >ff1c1ae3</color> | |
| <width >4</width> | |
| </LineStyle> | |
| <IconStyle ><Icon ><href >http://maps.google.com/mapfiles/kml/shapes/airports.png</href> | |
| </Icon> | |
| </IconStyle> | |
| </Style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2"><Folder ><Folder ><name >SWA1496 737 track</name> | |
| <Placemark ><name >SWA1496 737</name> | |
| <Style ><LineStyle ><color >ff1c1ae3</color> | |
| <width >4</width> | |
| </LineStyle> | |
| <IconStyle ><Icon ><href >http://maps.google.com/mapfiles/kml/shapes/airports.png</href> | |
| </Icon> | |
| </IconStyle> | |
| </Style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2"><Folder ><Folder ><name >N15KR track</name> | |
| <Placemark ><name >N15KR</name> | |
| <Style ><LineStyle ><color >ff1c1ae3</color> | |
| <width >4</width> | |
| </LineStyle> | |
| <IconStyle ><Icon ><href >http://maps.google.com/mapfiles/kml/shapes/airports.png</href> | |
| </Icon> | |
| </IconStyle> | |
| </Style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2"><Folder ><Folder ><name >N470WN track</name> | |
| <Placemark ><name >N470WN</name> | |
| <Style ><LineStyle ><color >ff1c1ae3</color> | |
| <width >4</width> | |
| </LineStyle> | |
| <IconStyle ><Icon ><href >http://maps.google.com/mapfiles/kml/shapes/airports.png</href> | |
| </Icon> | |
| </IconStyle> | |
| </Style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2"><Folder ><Folder ><name >N216MH track</name> | |
| <Placemark ><name >N216MH</name> | |
| <Style ><LineStyle ><color >ff1c1ae3</color> | |
| <width >4</width> | |
| </LineStyle> | |
| <IconStyle ><Icon ><href >http://maps.google.com/mapfiles/kml/shapes/airports.png</href> | |
| </Icon> | |
| </IconStyle> | |
| </Style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ⏺ Design review of 668cf98: | |
| 1. The virtual viewport approach is a good solution for the resizing issue, but there's duplicate code in both src/artifacts/index.tsx and src/components/GPSSpoofingSimulation.tsx - unclear which one is the source of | |
| truth. | |
| 2. Type issues: | |
| - Marker and Point types are now functionally identical but maintained separately | |
| - screenToVirtual parameter in useDrag.ts is defined but unused | |
| - Inconsistent null checking in event handlers | |
| 3. Performance concerns: | |
| - No debounce on resize event listeners |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2"><Folder ><Folder ><name >N892SA track</name> | |
| <Placemark ><name >N892SA</name> | |
| <Style ><LineStyle ><color >ff1c1ae3</color> | |
| <width >4</width> | |
| </LineStyle> | |
| <IconStyle ><Icon ><href >http://maps.google.com/mapfiles/kml/shapes/airports.png</href> | |
| </Icon> | |
| </IconStyle> | |
| </Style> |
NewerOlder