Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
df-aggregator
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Oleksandr Barabash
df-aggregator
Commits
649bc7d6
Commit
649bc7d6
authored
Nov 05, 2020
by
Corey Koval
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup of main branch
parent
bde56baa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
35 deletions
+3
-35
df-aggregator.py
df-aggregator.py
+3
-3
index.tpl
views/index.tpl
+0
-32
No files found.
df-aggregator.py
View file @
649bc7d6
...
...
@@ -415,9 +415,9 @@ if __name__ == '__main__':
clear
(
debugging
)
except
KeyboardInterrupt
:
#
clear(debugging)
#
print("Processing, please wait.")
clear
(
debugging
)
print
(
"Processing, please wait."
)
conn
.
commit
()
conn
.
close
()
#
write_geojson(*process_data(database_name, geofile, eps, min_samp)[:2])
write_geojson
(
*
process_data
(
database_name
,
geofile
,
eps
,
min_samp
)[:
2
])
kill
(
getpid
(),
signal
.
SIGTERM
)
views/index.tpl
deleted
100644 → 0
View file @
bde56baa
<!DOCTYPE html>
<html>
<head>
<link
rel=
"stylesheet"
href=
"https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity=
"sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=
""
/>
<script
src=
"https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
integrity=
"sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=
""
></script>
</head>
<body>
<p>
Test
</p>
<div
style=
"height: 700px"
id=
"map"
></div>
<script>
// initialize Leaflet
var
map
=
L
.
map
(
'map'
).
setView
(
{
lon
:
-
76.3
,
lat
:
39.1
}
,
8
);
// add the OpenStreetMap tiles
L
.
tileLayer
(
'https://
{
s
}
.tile.openstreetmap.org/
{
z
}
/
{
x
}
/
{
y
}
.png'
,
{
maxZoom
:
19
,
attribution
:
'© <a href="https://openstreetmap.org/copyright">OpenStreetMap contributors</a>'
}).
addTo
(
map
);
// show the scale bar on the lower left corner
L
.
control
.
scale
().
addTo
(
map
);
</script>
</body>
</html>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment