Skip to content

Commit

Permalink
code format lines past 1 in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jbousquin committed Aug 31, 2023
1 parent ee96ff6 commit 341762a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions harmonize_wq/visualize.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ def map_counts(df_in, gdf, col=None):
Build example DataFrame of results
>>> df_in = pandas.DataFrame({'Measure_Value': [5, 0, 1],
'MonitoringLocationIdentifier': ['ID1',
'ID2',
'ID1']
})
... 'MonitoringLocationIdentifier': ['ID1',
... 'ID2',
... 'ID1']
... })
>>> df_in
Measure_Value MonitoringLocationIdentifier
0 5 ID1
Expand All @@ -98,7 +98,7 @@ def map_counts(df_in, gdf, col=None):
>>> from shapely.geometry import Point
>>> d = {'MonitoringLocationIdentifier': ['ID1', 'ID2'],
'geometry': [Point(1, 2), Point(2, 1)]}
... 'geometry': [Point(1, 2), Point(2, 1)]}
>>> gdf = geopandas.GeoDataFrame(d, crs="EPSG:4326")
>>> gdf
MonitoringLocationIdentifier geometry
Expand Down

0 comments on commit 341762a

Please sign in to comment.