{"id":23093354,"url":"https://github.com/kartverket/norgeskart3","last_synced_at":"2025-08-16T10:31:51.611Z","repository":{"id":10773675,"uuid":"65973380","full_name":"kartverket/norgeskart3","owner":"kartverket","description":"Norgeskart.no - version 3","archived":false,"fork":false,"pushed_at":"2025-08-14T09:34:39.000Z","size":39186,"stargazers_count":15,"open_issues_count":11,"forks_count":4,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-08-14T11:29:49.544Z","etag":null,"topics":["kartverket","norgeskart","openlayers"],"latest_commit_sha":null,"homepage":"https://norgeskart.no/","language":"JavaScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kartverket.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2016-08-18T07:01:30.000Z","updated_at":"2025-07-31T10:48:28.000Z","dependencies_parsed_at":"2025-04-22T13:32:16.707Z","dependency_job_id":"9fd46d80-3585-4ba1-8012-9490b29219de","html_url":"https://github.com/kartverket/norgeskart3","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/kartverket/norgeskart3","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kartverket%2Fnorgeskart3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kartverket%2Fnorgeskart3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kartverket%2Fnorgeskart3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kartverket%2Fnorgeskart3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kartverket","download_url":"https://codeload.github.com/kartverket/norgeskart3/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kartverket%2Fnorgeskart3/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270701573,"owners_count":24630868,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-16T02:00:11.002Z","response_time":91,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["kartverket","norgeskart","openlayers"],"created_at":"2024-12-16T21:47:07.412Z","updated_at":"2025-08-16T10:31:51.597Z","avatar_url":"https://github.com/kartverket.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Norgeskart3\nNorgeskart version 3\n\nThe content of norgeskart.no and this repository is available under the following licenses:\n\n* Kartverkets logo and font: (C) Kartverket. \n* OpenLayers and all contributions to openlayers, included at /lib/src/openlayers: BSD style - see https://github.com/openlayers/openlayers/blob/master/LICENSE.md\n* Everything else: Public Domain.\n\nThe solution uses web services from Kartverket which are subject to their own licenses (mostly CC-BY 3.0 Norway) and the Norwegian Geodata law. See http://kartverket.no/data/lisens/ for the license terms and http://kartverket.no/data/ for details on the web services.\n\n\nInstallation\n------------\n    1. Install nodejs, make sure you can run the commands \"node\" in your preferred command line    \n    2. Install $ npm -g install grunt-cli karma\n    3. Install ruby and compass to build scss\n        3.1 Install ruby 1.9.3 http://rubyinstaller.org/\n        3.2 Add ruby executables to your PATH \n        3.3 Verify that the command \"ruby -v\" outputs the ruby version in your terminal\n        3.4 run \"gem update --system\"\n        3.5 run \"gem install compass\"    \n    4. Run \"npm install\" on the command line from within the fetched directory\n    5. Build and run unit tests with \"grunt default\"\n\n\nLearn\n------------\n\nAt a high level, the structure looks roughly like this:\n\n```\nng-boilerplate/\n  |- grunt-tasks/\n  |- karma/\n  |- src/\n  |  |- app/\n  |  |  |- \u003capp logic\u003e\n  |  |- assets/\n  |  |  |- \u003cstatic files\u003e\n  |  |- common/\n  |  |  |- \u003creusable code\u003e\n  |  |- less/\n  |  |  |- main.less\n  |- build.config.js\n  |- Gruntfile.js\n  |- module.prefix\n  |- module.suffix\n  |- package.json\n```\n\nWhat follows is a brief description of each entry, but most directories contain\ntheir own `README.md` file with additional documentation, so browse around to\nlearn more.\n\n- `karma/` - test configuration.\n- `src/` - our application sources. [Read more \u0026raquo;](src/README.md)\n- `build.config.js` - our customizable build settings.\n- `Gruntfile.js` - our build script.\n- `module.prefix` and `module.suffix` - our compiled application script is\n  wrapped in these, which by default are used to place the application inside a\n  self-executing anonymous function to ensure no clashes with other libraries.\n- `package.json` - metadata about the app, used by NPM and our build script. Our\n  NPM dependencies are listed here.\n\n## Development Setup\n\n### Troubleshooting\n\n#### Error: Cannot find module 'liftup'\n\nIf you encounter the error \"Cannot find module 'liftup'\" when running `grunt compass` or any other grunt task, follow these steps:\n\n1. Run the fix-dependencies script:\n   ```bash\n   chmod +x fix-dependencies.sh\n   ./fix-dependencies.sh\n   ```\n\n2. Or install the missing dependencies manually:\n   ```bash\n   npm install liftup@1.0.0 findup-sync@0.3.0 --save-dev\n   ```\n\n3. Make sure you have Ruby and Compass installed:\n   ```bash\n   # On Ubuntu/Debian\n   sudo apt install ruby-full\n   sudo gem install compass\n\n   # On macOS\n   brew install ruby\n   gem install compass\n   ```\n\n#### CSS Not Generating Correctly\n\nIf the CSS isn't generating correctly, ensure:\n\n1. Ruby and Compass are properly installed\n2. The SASS files are in the correct location (src/sass)\n3. Run `npm run build:css` to specifically build the CSS","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkartverket%2Fnorgeskart3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkartverket%2Fnorgeskart3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkartverket%2Fnorgeskart3/lists"}