Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gavinr/arcgis-json-to-geojson
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.1.0
Choose a base ref
...
head repository: gavinr/arcgis-json-to-geojson
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 9,402 additions and 5,421 deletions.
  1. +0 −6 .babelrc
  2. +0 −9 .editorconfig
  3. +1 −0 .eslintignore
  4. +13 −4 .gitignore
  5. +5 −3 README.md
  6. +5 −0 babel.config.js
  7. +25 −0 deploy.sh
  8. +0 −16 index.html
  9. +9,039 −5,059 package-lock.json
  10. +42 −28 package.json
  11. BIN public/favicon.ico
  12. +21 −0 public/index.html
  13. +53 −27 src/App.vue
  14. +0 −127 src/JsonToGeojsonForm.vue
  15. +1 −0 src/assets/buttons.js
  16. BIN src/assets/logo.png
  17. +155 −0 src/components/JsonToGeojsonForm.vue
  18. +36 −32 src/{ → components}/LeafletMap.vue
  19. +6 −2 src/main.js
  20. +0 −108 webpack.config.js
6 changes: 0 additions & 6 deletions .babelrc

This file was deleted.

9 changes: 0 additions & 9 deletions .editorconfig

This file was deleted.

1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
buttons.js
17 changes: 13 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
.DS_Store
node_modules/
dist/
npm-debug.log
yarn-error.log
node_modules
/dist

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw*
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
ArcGIS JSON to GeoJSON
ArcGIS JSON to GeoJSON
======================

Need to convert some ArcGIS JSON to GeoJSON? This is a simple page that helps you do that.

[![screenshot](https://i.imgur.com/d26vDKM.jpg)](http://arcgisjson.togeojson.com/)
[![screenshot](https://i.imgur.com/DYlsFNm.png)](http://arcgisjson.togeojson.com/)

View the site: http://arcgisjson.togeojson.com/

@@ -17,7 +17,9 @@ Credit

This is just a web page wrapper that gives you access to the tools in:

* [arcgis-to-geojson-utils](https://github.com/Esri/arcgis-to-geojson-utils)
* [@terraformer/arcgis](https://github.com/terraformer-js/terraformer/blob/master/packages/arcgis/README.md) (formerly [arcgis-to-geojson-utils](https://github.com/Esri/arcgis-to-geojson-utils) which have been moved to `@terraformer`)

Built using [vue-cli version 3](https://cli.vuejs.org/).


Feedback
5 changes: 5 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/app'
]
}
25 changes: 25 additions & 0 deletions deploy.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/usr/bin/env sh

# abort on errors
set -e

# build
npm run build

# navigate into the build output directory
cd dist

# if you are deploying to a custom domain
echo 'arcgisjson.togeojson.com' > CNAME

git init
git add -A
git commit -m 'deploy'

# if you are deploying to https://<USERNAME>.github.io
# git push -f git@github.com:<USERNAME>/<USERNAME>.github.io.git master

# if you are deploying to https://<USERNAME>.github.io/<REPO>
git push -f https://github.com/gavinr/arcgis-json-to-geojson master:gh-pages

cd -
16 changes: 0 additions & 16 deletions index.html

This file was deleted.

Loading