-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6eff07b
commit 0501daa
Showing
138 changed files
with
55,569 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
FROM node:16-alpine | ||
|
||
WORKDIR /usr/src/app | ||
|
||
# Copy package.json and package-lock.json | ||
# Do this before adding other files so npm install is only re-run on docker | ||
# image builds when project dependencies have changed, not when just any file | ||
# has changed. | ||
COPY package.*json ./ | ||
RUN npm install | ||
|
||
# Add the rest of the project | ||
ADD . . | ||
|
||
EXPOSE 3000 | ||
|
||
# Run the server | ||
CMD ["npm", "start"] |
Binary file added
BIN
+10.9 MB
data/datasets/south_australia/sources/1270055001_mb_2016_sa_shape/MB_2016_SA.dbf
Binary file not shown.
1 change: 1 addition & 0 deletions
1
data/datasets/south_australia/sources/1270055001_mb_2016_sa_shape/MB_2016_SA.prj
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
GEOGCS["GCS_GDA_1994",DATUM["D_GDA_1994",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433],AUTHORITY["EPSG",4283]] |
Binary file added
BIN
+14.3 MB
data/datasets/south_australia/sources/1270055001_mb_2016_sa_shape/MB_2016_SA.shp
Binary file not shown.
Binary file added
BIN
+220 KB
data/datasets/south_australia/sources/1270055001_mb_2016_sa_shape/MB_2016_SA.shx
Binary file not shown.
559 changes: 559 additions & 0 deletions
559
data/datasets/south_australia/sources/1270055001_mb_2016_sa_shape/MB_2016_SA.xml
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.