How to Use¶
Run Cell 1:
- This cell sets up the telemetry functions and initializes the CSV file.
Run Cell 2:
- This cell runs the telemetry loop. It will continuously fetch telemetry data and update the map until you interrupt the cell execution (e.g., using the stop button in Jupyter).
Run Cell 3:
- This cell displays the latest map. You can re-run this cell to refresh the map display with updated data. read more
Introduction to Folium Maps Drones
Make a folium map of drone data¶
Introduction to Folium Maps GIS
Make a folium map of drone data¶
What is ArcPY? Part2
- Multiple Shapefile data sources access programmatically online and converted to points in Arcpy, then mapped with ArcGIS pro
- Shown below is a dashboard of these data for the latest sampling dates where contamination data is grouped by city/township
What is Arcpy?: Part 2¶
Reminder: Arcpy is a Python library for automating GIS tasks in Arc GIS Pro
read moreIntroduction to Functional Programming
Functional programming¶
- a style of programming where your output is determined solely by your input
- The function does not change anything outside of it or depend on external data to produce the output
Why use Functional programming?:
- makes your code easier to understand, test, debug and build upon
- It's widely used in data analysis and other fields where computation is important read more