diff --git a/.github/workflows/generate_relationships.yml b/.github/workflows/generate_relationships.yml index 142a1adab..710bc0db1 100644 --- a/.github/workflows/generate_relationships.yml +++ b/.github/workflows/generate_relationships.yml @@ -1,11 +1,14 @@ name: Create relationships on: - workflow_dispatch + workflow_dispatch: + inputs: + directory-name: + type: string + description: Name of parent directory containing records to generate relationships for. Needed only if different from branch name. jobs: generate-relationships: runs-on: ubuntu-latest - if: github.event.ref != 'refs/heads/main' steps: - name: checkout uses: actions/checkout@v2 @@ -15,37 +18,39 @@ jobs: uses: actions/setup-python@v2 with: python-version: "3.8" - - name: Extract branch name - id: extract_branch - shell: bash - run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})" + - name: Get directory name + if: "${{ github.event.inputs.directory-name != '' }}" + run: echo "WORKING_DIR=${{ github.event.inputs.directory-name }}" >> $GITHUB_ENV + - name: Get branch name + if: "${{ github.event.inputs.directory-name == '' }}" + run: echo "WORKING_DIR=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV - name: Generate relationships id: genrelshp - working-directory: ${{ steps.extract_branch.outputs.branch }} + working-directory: ${{ env.WORKING_DIR }} run: | python -m pip install --upgrade pip pip install requests==2.23.0 pip install git+https://github.com/ror-community/update_address.git - curl https://raw.githubusercontent.com/ror-community/ror-api/staging/rorapi/management/commands/generaterelationships.py -o generaterelationships.py + curl https://raw.githubusercontent.com/ror-community/ror-api/dev/rorapi/management/commands/generaterelationships.py -o generaterelationships.py python generaterelationships.py relationships.csv - continue-on-error: true - name: commit error file if: ${{ steps.genrelshp.outcome != 'success'}} - working-directory: ${{ steps.extract_branch.outputs.branch }} + working-directory: ${{ env.WORKING_DIR }} run: | - echo "ERRORS found:" + echo "ERRORS found for some records:" cat relationship_errors.log - name: commit changed files if: ${{ steps.genrelshp.outcome == 'success'}} uses: stefanzweifel/git-auto-commit-action@v4 with: - file_pattern: ${{ steps.extract_branch.outputs.branch }}/*.json + file_pattern: ${{ env.WORKING_DIR }}/**.json commit_message: Apply relationship changes to files - name: Set env variable for notification + if: always() run: | if [[ ${{ steps.genrelshp.outcome }} == 'success' ]]; then echo "relationship_status=SUCCESS" >> $GITHUB_ENV - elif [[ ${{ steps.genrelshp.outcome }} == 'failure' ]]; then + else echo "relationship_status=FAILED" >> $GITHUB_ENV fi - name: Notify Slack @@ -57,4 +62,4 @@ jobs: with: channel: '#ror-curation-releases' color: 'good' - text: 'Relationship generation status: ${env.VALIDATION_STATUS}. Branch: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/tree/${env.GITHUB_REF_NAME}. Directory: ${{ steps.extract_branch.outputs.branch }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID} for more details' + text: 'Relationship generation status ${env.VALIDATION_STATUS} in ${env.GITHUB_REPOSITORY}. Branch: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/tree/${env.GITHUB_REF_NAME}. Directory: ${{ env.WORKING_DIR }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID} for more details' diff --git a/.github/workflows/staging_manual_index.yml b/.github/workflows/staging_manual_index.yml index 4f2712cea..a5e36cdea 100644 --- a/.github/workflows/staging_manual_index.yml +++ b/.github/workflows/staging_manual_index.yml @@ -60,7 +60,7 @@ jobs: if [[ -f "../${{ github.event.inputs.directory-name }}/relationships.csv" ]]; then python run_validations.py -i ../files -f ../${{ github.event.inputs.directory-name }}/relationships.csv -p ../files/ else - python run_validations.py -i ../files -p ../files/ + python run_validations.py -i ../files fi - name: Notify Slack if: always() diff --git a/.github/workflows/staging_pull_request.yml b/.github/workflows/staging_pull_request.yml index a7d00feaf..ee2653582 100644 --- a/.github/workflows/staging_pull_request.yml +++ b/.github/workflows/staging_pull_request.yml @@ -61,7 +61,7 @@ jobs: if [[ -f "../${{github.event.pull_request.head.ref}}/relationships.csv" ]]; then python run_validations.py -i ../files -f ../${{github.event.pull_request.head.ref}}/relationships.csv -p ../files/ else - python run_validations.py -i ../files -p ../files/ + python run_validations.py -i ../files fi - name: Notify Slack if: always() diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index fdc168943..cf1152638 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -5,6 +5,9 @@ on: with-relationship: type: boolean description: Check box to validate with relationships + directory-name: + type: string + description: Name of parent directory containing records to validate. Needed only if different from branch name. jobs: validate-files: @@ -24,21 +27,23 @@ jobs: with: repository: ror-community/validation-suite path: validation-suite - - name: Extract branch name - shell: bash - run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})" - id: extract_branch + - name: Get directory name + if: "${{ github.event.inputs.directory-name != '' }}" + run: echo "WORKING_DIR=${{ github.event.inputs.directory-name }}" >> $GITHUB_ENV + - name: Get branch name + if: "${{ github.event.inputs.directory-name == '' }}" + run: echo "WORKING_DIR=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV - name: Validate files id: validatefiles run: | mkdir files - cp ./${{ steps.extract_branch.outputs.branch }}/*.json files/ + cp ./${{ env.WORKING_DIR }}/**.json files/ cd validation-suite python -m pip install --upgrade pip pip install -r requirements.txt if [[ ${{ github.event.inputs.with-relationship }} == "true" ]]; then - if [[ -f "../${{ steps.extract_branch.outputs.branch }}/relationships.csv" ]]; then - python run_validations.py -i ../files -f ../${{ steps.extract_branch.outputs.branch }}/relationships.csv -p ../files/ + if [[ -f "../${{ env.WORKING_DIR }}/**relationships.csv" ]]; then + python run_validations.py -i ../files -f ../${{ env.WORKING_DIR }}/**relationships.csv -p ../files/ else python run_validations.py -i ../files -p ../files/ fi @@ -53,4 +58,4 @@ jobs: with: channel: '#ror-curation-releases' color: 'good' - text: 'Validation status: ${{ steps.validatefiles.outcome }}. On branch: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/tree/${env.GITHUB_REF_NAME} in directory ${{ steps.extract_branch.outputs.branch }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' + text: 'Validation status ${{ steps.validatefiles.outcome }} in ${env.GITHUB_REPOSITORY}. On branch: ${{ env.WORKING_DIR }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' diff --git a/README.md b/README.md index d38dc3fba..328230cb2 100644 --- a/README.md +++ b/README.md @@ -3,26 +3,121 @@ Test repository for developing deployment process for ROR record updates. # ROR Data release creation & deployment steps +## Prepare JSON files in ror-updates 1. [Create JSON files for new and updated ROR records](#create-json-files-for-new-and-updated-ror-records) -2. [Create new release branch](#create-new-release-branch) -3. [Push new/updated ROR JSON files to release branch](#push-newupdated-ror-json-files-to-release-branch) -4. [Generate relationships](#generate-relationships) -5. [Validate files](#validate-files) -6. [Deploy to Staging](#deploy-to-staging) -7. [Test Staging release](#test-staging-release) -8. [Deploy to Production](#deploy-to-production) -9. [Test production release](#test-production-release) -10. [Publish data dump to Zenodo](#publish-data-dump-to-zenodo) -11. [Announce production release](#announce-production-release) - -# Create JSON files for new and updated ROR records +2. [Validate files in ror-updates](#validate-files-in-ror-updates) +3. [Generate relationships](#generate-relationships) +4. [Validate files again in ror-updates](#validate-files-again-in-ror-updates) + +## Release to Staging +1. [Create new release branch](#create-new-release-branch-in-ror-records) +2. [Push new/updated ROR JSON files to release branch](#push-newupdated-ror-json-files-to-release-branch-in-ror-records) +3. [Validate files in ror-records](#validate-files-in-ror-records) +4. [Deploy to Staging](#deploy-to-staging) +5. [Test Staging release](#test-staging-release) + +## Release to production +1. [Deploy to Production](#deploy-to-production) +2. [Test production release](#test-production-release) +3. [Create data dump for internal use](#create-data-dump-for-internal-use) + +## Publish public data dump (quarterly) +1. [Publish public data dump to Zenodo](#publish-public-data-dump-to-zenodo) +11. [Announce public data dump](#announce-public-data-dump) + +# Prepare JSON files in ror-updates + +## Create JSON files for new and updated ROR records JSON files for new and updated ROR records are created by the ROR metadata curation lead and curation advisory board as part of the process managed in [ror-updates](https://github.com/ror-community/ror-updates). **Only changes requested and approved through this curation process are included in ROR data releases.** Schema-valid ROR record JSON can be generated using the [Leo form app](https://leo.dev.ror.org/). Note that relationships should not be included in record files; these are created in the [Generate relationships](#generate-relationships) step of the deployment process. -# Create new release branch +Once created, push JSON files to ror-updates in a new branch per below. + +### Create new release branch in ror-updates +These steps assume that you have already [installed and configured git](https://git-scm.com/downloads) on your computer, and that you have cloned the [ror-records](https://github.com/ror-community/ror-updates) repository locally. + +1. In your local ror-updates directory, checkout the Main branch + + git checkout main + +2. Make sure your local Main branch matches the remote branch (make sure to git stash any local changes before doing this!) -## Github UI + git fetch origin + git reset --hard origin/main + +3. Checkout a new branch based on Main. Branch name does not need to match the ror-records release branch naming convention, but should clearly convey the release number. + + git checkout -b rc-v1.3-review + +### Push record files to release branch in ror-updates +1. Create in new directory in the root of the ror-updates repository with the **exact same name** as the branch (ex: rc-v1.3-review). + + mkdir rc-v1.3-review + +2. Create subdirectories ```new``` and ```updates``` inside the directory you just created. Note: Creating both directories is not required in order for validation and relationship generation actions to work. If there are only new records or only updates, you only need to create one directory. If there's no ```updates``` directory but the relatinships.csv file contains relationships to production records, the relationship generation action will create an ```updates``` directory and download production records into it. + + mkdir rc-v1.3-review/new + mkdir rc-v1.3-review/updates + +2. Place the JSON files for new and updated records inside the directories you just created. +2. Add and commit the files + + git add rc-v1.3-review/ + git commit -m "add new and updated ROR records to rc-v1.3-review" + +3. Push the files and new branch to the remote ror-records repository + + git push origin rc-v1.3-review + +4. Repeat steps 1-3 if additional files need to be added to the release candidate. + +## Validate files in ror-updates +JSON files for new and updated ROR records should be validated before generating relationshps to check that they comply with the ROR schema and contained properly formatted JSON. Validation is performed by a script [run_validations.py](https://github.com/ror-community/validation-suite/blob/main/run_validations.py) triggered by a Github action [Validate files](https://github.com/ror-community/ror-records/blob/staging/.github/workflows/validate.yml +). + +1. Go to https://github.com/ror-community/ror-updates/actions/workflows/validate.yml (Actions > Create relationships in the ror-updates repository) +2. Click Run workflow at right, choose the branch you're working on and leave "Check box to validate relationships" _unchecked_. If you're working on the Main branch or the directory containing the files you'd like to validate has a diffferent name from the branch you're working on, enter name of that directory. +3. Click the green Run workflow button. +4. It will take a few minutes for the workflow to run. If sucessful, a green checkbox will be shown on the workflow runs list in Github, and a success messages will be posted to the #ror-curation-releases Slack channel. If the workflow run is unsuccessful, an red X will be shown on the workflow runs list in Github and an error message will be posted to Slack. To see the error details, click the validate-filtes box on the workflow run page in Github. +5. If this workflow fails, there's an issue with the data in one of more ROR record JSON files that needs to be corrected. In that case, check the error details, make the needed corrections, commit and push the files to your working branch and repeat steps 1-3 to re-run the Validate files workflow. + +## Generate relationships +Relationships are not included in the intitial ROR record JSON files. Relationships are generated using a script [generaterelationships.py](https://github.com/ror-community/ror-api/blob/dev/rorapi/management/commands/generaterelationships.py) triggered by a Github action [Create relationships](https://github.com/ror-community/ror-updates/blob/staging/.github/workflows/generate_relationships.yml), which should be run AFTER all new and updated JSON records to be included in the release are uploaded to ror-updates. + +*Note: Currently relationships can only be added using this process, not removed. Removing relationships from an existing record requires manually downloading and editing the record, and adding it to the release branch.* + +1. Create relationships list as a CSV file using the template [[TEMPLATE] relationships.csv](https://docs.google.com/spreadsheets/d/17rA549Q6Vc-YyH8WUtXUOvsAROwCDmt1vy4Rjce-ELs) and name the file relationships.csv. **IMPORTANT! File must be named relationships.csv and fields used by the script must be formatted correctly**. Template fields used by the script are: + +| **Field name** | **Description** | **Example value** | +|-----------------------------------------|---------------------------------------------------------------------------------------------|-------------------------------------------------| +| Record ID | ROR ID of record being added/updated, in URL form | https://ror.org/015m7w34 | +| Related ID | ROR ID of the related record, in URL form | https://ror.org/02baj6743 | +| Relationship of Related ID to Record ID | One the following values: Parent, Child, Related | Parent | +| Name of org in Related ID | Name of the related organization, as it appears in the name field of the related ROR record | Indiana University – Purdue University Columbus | +| Current location of Related ID | Production or Release branch | Production | + +2. Place the relationships.csv inside the parent directory where the ROR record JSON files are located (ex: rc-v1.3-review - don't put it inside new or updates directories). +3. Commit and push the relationships.csv file to your working branch, ex: + + git add rc-v1.3-review/relationships.csv + git commit -m "adding relationships list to v1.3" + git push origin rc-v1.3-review + +3. Go to https://github.com/ror-community/ror-updates/actions/workflows/generate_relationships.yml (Actions > Create relationships in the ror-records repository) +4. Click Run workflow at right, choose the branch that you just pushed relationships.csv to, and click the green Run workflow button. +5. It will take a few minutes for the workflow to run. If sucessful, the workflow will update ROR record JSON files in the branch that you specified, a green checkbox will be shown on the workflow runs list in Github, and a success messages will be posted to the #ror-curation-releases Slack channel. If the workflow run is unsuccessful, an red X will be shown on the workflow runs list in Github and an error message will be posted to Slack. To see the error details, click the generate-relationships box on the workflow run page in Github. +6. If this workflow fails, there's likely a mistake in the relationships.csv or one or more of the ROR record JSON files that needs to be corrected. In that case, make the needed corrections, commit and push the files to the vX.X branch and repeat steps 3-5 to re-run the Create relationships workflow. + +## Validate files again in ror-updates +After relationships are added, record files should be validated again to ensure that the changes applied by the script are still schema-valid. +Follow the steps above to run validation, but make sure to tick the "Check box to validate relationships" checkbox. + +# Release to Staging + +## Create new release branch in ror-records + +### Github UI 1. Go to [ror-community/ror-records](https://github.com/ror-community/ror-records) 2. Click the branches dropdown in the upper left (should say 'main' by default) 3. Click staging to switch to the staging branch @@ -30,7 +125,7 @@ Schema-valid ROR record JSON can be generated using the [Leo form app](https://l 5. Enter the name of your new release branch in the "Find or create branch" field. Names for new release candidate branches should follow the convention v[MAJOR VERSION].[MINOR VERSION].[PATCH VERSION IF APPLICABLE], ex: v1.3. 6. Click Create branch: [NEW BRANCH NAME] from 'staging' -## Git CLI +### Git CLI These steps assume that you have already [installed and configured git](https://git-scm.com/downloads) on your computer, and that you have cloned the [ror-records](https://github.com/ror-community/ror-records) repository locally. 1. In the ror-records checkout the staging branch @@ -46,9 +141,9 @@ These steps assume that you have already [installed and configured git](https:// git checkout -b v1.3 -# Push new/updated ROR JSON files to release branch +# Push new/updated ROR JSON files to release branch in ror-records -## Github UI +### Github UI 1. On your computer, place all the JSON files for the new and updated ROR records into a folder with the **exact same name** as the release branch (ex, v1.3). 2. In the ror-records repository, click the Branches dropdown at left and choose the vX.X branch that you created in the previous steps. 3. Click the Add file button at right and choose Upload files @@ -56,12 +151,12 @@ These steps assume that you have already [installed and configured git](https:// 5. Under Commit changes, type a commit message in the first text box, leave the radio button set to "Commit directly to the vX.X branch" and click Commit changes. 5. Repeat steps 1-4 if additional files need to be added to the release candidate. -## Git CLI +### Git CLI 1. Create in new directory in the root of the ror-records repository the **exact same name** as the release branch (ex, v1.3). mkdir v1.3 -2. Place the JSON files for new and updated records inside the directory you just created. +2. Place JSON files for new and updated records inside the directory you just created. Do not place them in subdirectories. If there are relationships, also include relationships.csv file. 2. Add and commit the files git add v1.3/ @@ -73,34 +168,7 @@ These steps assume that you have already [installed and configured git](https:// 4. Repeat steps 1-3 if additional files need to be added to the release candidate. -# Generate relationships -Relationships are not included in the intitial ROR record JSON files. Relationships are generated using a script [generaterelationships.py](https://github.com/ror-community/ror-api/blob/dev/rorapi/management/commands/generaterelationships.py) triggered by a Github action [Create relationships](https://github.com/ror-community/ror-records/blob/staging/.github/workflows/generate_relationships.yml), which should be run AFTER all new and updated JSON records to be included in the release are uploaded to the vX.X branch. - -*Note: Currently relationships can only be added using this process, not removed. Removing relationships from an existing record requires manually downloading and editing the record, and adding it to the release branch.* - -1. Create relationships list as a CSV file using the template [[TEMPLATE] relationships.csv](https://docs.google.com/spreadsheets/d/17rA549Q6Vc-YyH8WUtXUOvsAROwCDmt1vy4Rjce-ELs) and name the file relationships.csv. **IMPORTANT! File must be named relationships.csv and fields used by the script must be formatted correctly**. Template fields used by the script are: - -| **Field name** | **Description** | **Example value** | -|-----------------------------------------|---------------------------------------------------------------------------------------------|-------------------------------------------------| -| Record ID | ROR ID of record being added/updated, in URL form | https://ror.org/015m7w34 | -| Related ID | ROR ID of the related record, in URL form | https://ror.org/02baj6743 | -| Relationship of Related ID to Record ID | One the following values: Parent, Child, Related | Parent | -| Name of org in Related ID | Name of the related organization, as it appears in the name field of the related ROR record | Indiana University – Purdue University Columbus | -| Current location of Related ID | Production or Release branch | Production | - -2. Place the relationships.csv inside the vX.X directory where the ROR record JSON files are located. -3. Commit and push the relationships.csv file to the current rc branch - - git add v1.3/relationships.csv - git commit -m "adding relationships list to v1.3" - git push origin v1.3 - -3. Go to https://github.com/ror-community/ror-records/actions/workflows/generate_relationships.yml (Actions > Create relationships in the ror-records repository) -4. Click Run workflow at right, choose the vX.X branch that you just pushed relationships.csv to, and click the green Run workflow button. -5. It will take a few minutes for the workflow to run. If sucessful, the workflow will update ROR record JSON files in the vX.X branch that you specified, a green checkbox will be shown on the workflow runs list in Github, and a success messages will be posted to the #ror-curation-releases Slack channel. If the workflow run is unsuccessful, an red X will be shown on the workflow runs list in Github and an error message will be posted to Slack. To see the error details, click the generate-relationships box on the workflow run page in Github. -6. If this workflow fails, there's likely a mistake in the relationships.csv or one or more of the ROR record JSON files that needs to be corrected. In that case, make the needed corrections, commit and push the files to the vX.X branch and repeat steps 3-5 to re-run the Create relationships workflow. - -# Validate files +## Validate files in ror-records Before finalizing a release candidate, JSON files for new and updated ROR records should be validated to check that they comply with the ROR schema and contained properly formatted JSON. Validation is performed by a script [run_validations.py](https://github.com/ror-community/validation-suite/blob/main/run_validations.py) triggered by a Github action [Validate files](https://github.com/ror-community/ror-records/blob/staging/.github/workflows/validate.yml ), which should be run after all new and updated JSON records to be included in the release are uploaded to the vX.X branch. @@ -111,7 +179,7 @@ Before finalizing a release candidate, JSON files for new and updated ROR record **IMPORTANT! Validate files workflow must succeed before proceeding to deployment** -# Deploy to Staging +## Deploy to Staging Deploying to staging.ror.org/search and api.staging.ror.org requires making a Github pull request and merging it. Each of these actions triggers different automated workflows: - **Open pull request against Staging branch:** Check user permissions and validate files @@ -119,7 +187,6 @@ Deploying to staging.ror.org/search and api.staging.ror.org requires making a Gi *Note that only specific Github users (ROR staff) are allowed to open/merge pull requests and create releases.* - 1. Go to https://github.com/ror-community/ror-records/pulls (Pull requests tab in ror-records repository) 2. Click New pull request at right 3. Click the Base dropdown at left and choose Staging. Important! Do not make a pull request against the default Main branch. @@ -137,10 +204,10 @@ If records needed to be added or changed after an initial Staging release, add t - Include relationships for any records already in merged to the vX.X directory on Staging in the release branch relationships.csv (not just the current deployment) - Deleting record files from the release branch after they have been deployed to Staging will not remove them from the Staging index. At the moment, this will need to be done manually by a developer; in the future, we will add a mechanism to remove records from the Staging index that have been deleted from an release branch. This does not affect production, as the production index is completely separate. -# Test Staging release +## Test Staging release *Note: There is currently no staging UI search app (https://staging.ror.org connects to production search app using api.ror.org). UI tests should be run against https://dev.ror.org.* -## New records +### New records Choose several new records from the Staging release and, for each record: 1. Check that the record can be retrieved from the Staging API @@ -150,7 +217,7 @@ Choose several new records from the Staging release and, for each record: curl https://api.staging.ror.org/organizations?query=[STAGING%20RECORD%20NAME] -## Updated records +### Updated records Choose several updated records from the Staging release and, for each record: 1. Check that the record can be retrieved from the Staging API @@ -167,7 +234,7 @@ Choose several updated records from the Staging release and, for each record: diff staging_[RORID].json prod_[RORID].json -## Unchanged records +### Unchanged records Choose several records from Production that were not included in the release and for each record: 1. Retrieve the record from the Staging API and the Production API and compare changes to verify that the records are identical. @@ -203,7 +270,7 @@ Deploying to ror.org/search and api.ror.org requires making a Github pull reques 14. Click Publish release 9. A Github action Deploy to production will be triggered, which pushes the new and updated JSON files to AWS S3, indexes the data into the production ROR Elasticsearch instance and generates a new data dump file in TBD. If sucessful, a green checkbox will be shown in the pull request details, and a success messages will be posted to the #ror-curation-releases Slack channel. The new data should now be available in https://ror.org/search and https://api.ror.org -# Test production release +## Test production release Choose several new, updated and unchanged records and, for each record: @@ -223,18 +290,20 @@ Choose several new, updated and unchanged records and, for each record: https://ror.org/search > Enter name in search box -# Create data dump +## Create data dump for internal use 1. In the ror-records repository, go to [Actions > Create data dump](https://github.com/ror-community/ror-records/actions/workflows/generate_dump.yml) 2. Click Run Workflow and enter the name of the release directory (ex, v1.0) and the name of the last production data dump from ror-data that the new dump should be built from, ex 2021-09-23-ror-data (without the .zip file extension) 3. Click the Run workflow button 4. If sucessful, a green checkbox will be shown in the pull request details, and a success messages will be posted to the #ror-curation-releases Slack channel. The new data dump should now be available in ror-data. -# Publish data dump to Zenodo +# Publish public data dump (quarterly) + +## Publish public data dump to Zenodo 1. Download the vX.X-YYYY-MM-DD-ror-data.zip file from ror-data to your computer 2. Log into [Zenodo](https://zenodo.org/) using the info@ror.org account 3. Create a new upload in the [ROR Data community](https://zenodo.org/communities/ror-data) (see past example https://doi.org/10.5281/zenodo.4929693). Make sure to include Related Identifiers metadata referencing previous releases. -# Announce production release +## Announce public data dump TODO: develop standard text and list of channels that we announce new release to TODO: process for notifying requestors that their curation request has been completed diff --git a/v1.0.1/0006s4z66.json b/v1.0.1/0006s4z66.json new file mode 100644 index 000000000..bf40caab9 --- /dev/null +++ b/v1.0.1/0006s4z66.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/0006s4z66", + "name": "Bureau of Justice Statistics", + "email_address": null, + "ip_addresses": [], + "established": 1979, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "United States Department of Justice", + "type": "Parent", + "id": "https://ror.org/02916qm60" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "name": "Washington, D.C.", + "id": 4138106, + "ascii_name": "Washington, D.C.", + "code": "US.DC" + }, + "geonames_admin2": { + "name": "Washington", + "id": 4140987, + "ascii_name": "Washington", + "code": "US.DC.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.bjs.gov/" + ], + "aliases": [], + "acronyms": [ + "BJS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bureau_of_Justice_Statistics", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7754 4970", + "all": [ + "0000 0004 7754 4970" + ] + }, + "FundRef": { + "preferred": "100013173", + "all": [ + "100013173" + ] + }, + "Wikidata": { + "preferred": "Q3791513", + "all": [ + "Q3791513" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/0018wmh19.json b/v1.0.1/0018wmh19.json new file mode 100644 index 000000000..781b2a48e --- /dev/null +++ b/v1.0.1/0018wmh19.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/0018wmh19", + "name": "Molecular Devices", + "email_address": null, + "ip_addresses": [], + "established": 1983, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Molecular Devices (United Kingdom)", + "type": "Child", + "id": "https://ror.org/03y8xh662" + } + ], + "addresses": [ + { + "lat": 37.33939, + "lng": -121.89496, + "state": null, + "state_code": null, + "city": "San Jose", + "geonames_city": { + "id": 5392171, + "city": "San Jose", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Santa Clara", + "id": 5393021, + "ascii_name": "Santa Clara", + "code": "US.CA.085" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.moleculardevices.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Molecular_Devices", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0618 5923", + "all": [ + "0000 0004 0618 5923" + ] + }, + "Wikidata": { + "preferred": "Q6895942", + "all": [ + "Q6895942" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/002e7ss22.json b/v1.0.1/002e7ss22.json new file mode 100644 index 000000000..fef95364d --- /dev/null +++ b/v1.0.1/002e7ss22.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/002e7ss22", + "name": "Lower Saxony State Agency for Water Management, Coastal Protection and Nature Conservation", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 53.59552, + "lng": 7.20639, + "state": null, + "state_code": null, + "city": "Norden", + "geonames_city": { + "id": 2862118, + "city": "Norden", + "geonames_admin1": { + "name": "Lower Saxony", + "id": 2862926, + "ascii_name": "Lower Saxony", + "code": "DE.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.06.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "http://www.nlwkn.de/FSK/" + ], + "aliases": [], + "acronyms": [ + "NLWKN" + ], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/Nieders%C3%A4chsischer_Landesbetrieb_f%C3%BCr_Wasserwirtschaft%2C_K%C3%BCsten-_und_Naturschutz", + "labels": [ + { + "label": "Niedersächsischer Landesbetrieb für Wasserwirtschaft, Küsten- und Naturschutz", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0789 9416", + "all": [ + "0000 0001 0789 9416" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/002vpkf64.json b/v1.0.1/002vpkf64.json new file mode 100644 index 000000000..4d1505d3b --- /dev/null +++ b/v1.0.1/002vpkf64.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/002vpkf64", + "name": "Société des historiens médiévistes de l'enseignement supérieur public", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.shmesp.fr/" + ], + "aliases": [], + "acronyms": [ + "SHMESP", + "SHMS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 1463 6737", + "all": [ + "0000 0001 1463 6737" + ] + }, + "Wikidata": { + "preferred": "Q50823978", + "all": [ + "Q50823978" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/003z0hw02.json b/v1.0.1/003z0hw02.json new file mode 100644 index 000000000..8006a0f00 --- /dev/null +++ b/v1.0.1/003z0hw02.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/003z0hw02", + "name": "Instituto Tecnológico de la Producción", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -12.05139, + "lng": -77.125, + "state": null, + "state_code": null, + "city": "Callao", + "geonames_city": { + "id": 3946080, + "city": "Callao", + "geonames_admin1": { + "name": "Callao", + "id": 3946080, + "ascii_name": "Callao", + "code": "PE.07" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "https://www.itp.gob.pe/" + ], + "aliases": [], + "acronyms": [ + "ITP" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Instituto_Tecnol%C3%B3gico_de_la_Producci%C3%B3n", + "labels": [ + { + "label": "Technological Institute of Production", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0395 9938", + "all": [ + "0000 0004 0395 9938" + ] + }, + "Wikidata": { + "preferred": "Q29561447", + "all": [ + "Q29561447" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/004edqb24.json b/v1.0.1/004edqb24.json new file mode 100644 index 000000000..c4ed6add9 --- /dev/null +++ b/v1.0.1/004edqb24.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/004edqb24", + "name": "Health and Wellbeing Queensland", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Queensland Health", + "type": "Parent", + "id": "https://ror.org/00c1dt378" + } + ], + "addresses": [ + { + "lat": -27.46794, + "lng": 153.02809, + "state": null, + "state_code": null, + "city": "Brisbane", + "geonames_city": { + "id": 2174003, + "city": "Brisbane", + "geonames_admin1": { + "name": "Queensland", + "id": 2152274, + "ascii_name": "Queensland", + "code": "AU.04" + }, + "geonames_admin2": { + "name": "Brisbane", + "id": 7839562, + "ascii_name": "Brisbane", + "code": "AU.04.31000" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "https://hw.qld.gov.au/" + ], + "aliases": [ + "Health + Wellbeing Queensland" + ], + "acronyms": [ + "HWQld" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Health_and_Wellbeing_Queensland", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q97474541", + "all": [ + "Q97474541" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/004qcrr52.json b/v1.0.1/004qcrr52.json new file mode 100644 index 000000000..976e265f7 --- /dev/null +++ b/v1.0.1/004qcrr52.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/004qcrr52", + "name": "Instituto Nacional de Innovación Agraria", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -12.04318, + "lng": -77.02824, + "state": null, + "state_code": null, + "city": "Lima", + "geonames_city": { + "id": 3936456, + "city": "Lima", + "geonames_admin1": { + "name": "Lima", + "id": 3936451, + "ascii_name": "Lima", + "code": "PE.LMA" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "http://www.inia.gob.pe/" + ], + "aliases": [], + "acronyms": [ + "INIA" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Instituto_Nacional_de_Innovaci%C3%B3n_Agraria", + "labels": [ + { + "label": "National Institute of Agrarian Innovation", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 1763 4958", + "all": [ + "0000 0004 1763 4958" + ] + }, + "Wikidata": { + "preferred": "Q29438518", + "all": [ + "Q29438518" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/005k57c98.json b/v1.0.1/005k57c98.json new file mode 100644 index 000000000..ba8bf1cc5 --- /dev/null +++ b/v1.0.1/005k57c98.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/005k57c98", + "name": "Udako Euskal Unibertsitatea", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.26271, + "lng": -2.92528, + "state": null, + "state_code": null, + "city": "Bilbao", + "geonames_city": { + "id": 3128026, + "city": "Bilbao", + "geonames_admin1": { + "name": "Basque Country", + "id": 3336903, + "ascii_name": "Basque Country", + "code": "ES.59" + }, + "geonames_admin2": { + "name": "Biscay", + "id": 3104469, + "ascii_name": "Biscay", + "code": "ES.59.BI" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.ueu.eus/" + ], + "aliases": [], + "acronyms": [ + "UEU" + ], + "status": "active", + "wikipedia_url": "https://eu.wikipedia.org/wiki/Udako_Euskal_Unibertsitatea", + "labels": [ + { + "label": "Universidad Vasca de Verano", + "iso639": "es" + }, + { + "label": "Université basque d'été", + "iso639": "fr" + }, + { + "label": "Basque Summer University", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 1956 4955", + "all": [ + "0000 0001 1956 4955" + ] + }, + "Wikidata": { + "preferred": "Q12268488", + "all": [ + "Q12268488" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/007yfgf06.json b/v1.0.1/007yfgf06.json new file mode 100644 index 000000000..ae1f97c2c --- /dev/null +++ b/v1.0.1/007yfgf06.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/007yfgf06", + "name": "Naos Marine and Molecular Laboratories", + "email_address": null, + "ip_addresses": [], + "established": 1963, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Smithsonian Institution", + "type": "Related", + "id": "https://ror.org/01pp8nd67" + }, + { + "label": "Smithsonian Tropical Research Institute", + "type": "Related", + "id": "https://ror.org/035jbxr46" + } + ], + "addresses": [ + { + "lat": 8.91467, + "lng": -79.53209, + "state": null, + "state_code": null, + "city": "Isla Naos", + "geonames_city": { + "id": 3703983, + "city": "Isla Naos", + "geonames_admin1": { + "name": "Panamá", + "id": 3703433, + "ascii_name": "Panamá", + "code": "PA.08" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3703430 + } + ], + "links": [ + "https://stri.si.edu/facility/naos" + ], + "aliases": [ + "Naos Island Laboratories", + "Naos Laboratories" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratorios de isla Naos", + "iso639": "es" + } + ], + "country": { + "country_name": "Panama", + "country_code": "PA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/008f3q107.json b/v1.0.1/008f3q107.json new file mode 100644 index 000000000..b386381e1 --- /dev/null +++ b/v1.0.1/008f3q107.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/008f3q107", + "name": "ResearchGate", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "name": "Berlin", + "id": 2950157, + "ascii_name": "Berlin", + "code": "DE.16" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.16.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.researchgate.net" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/ResearchGate", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q754454", + "all": [ + "Q754454" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/00bqrh472.json b/v1.0.1/00bqrh472.json new file mode 100644 index 000000000..2e72990ef --- /dev/null +++ b/v1.0.1/00bqrh472.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/00bqrh472", + "name": "Universidad Autónoma de Ica", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -13.40985, + "lng": -76.13235, + "state": null, + "state_code": null, + "city": "Chincha Alta", + "geonames_city": { + "id": 3943789, + "city": "Chincha Alta", + "geonames_admin1": { + "name": "Ica", + "id": 3938526, + "ascii_name": "Ica", + "code": "PE.11" + }, + "geonames_admin2": { + "name": "Provincia de Chincha", + "id": 3943790, + "ascii_name": "Provincia de Chincha", + "code": "PE.11.1102" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "http://www.autonomadeica.edu.pe/" + ], + "aliases": [], + "acronyms": [ + "UAI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Autonomous University of Ica", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6418 3221", + "all": [ + "0000 0004 6418 3221" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/00f89wy98.json b/v1.0.1/00f89wy98.json new file mode 100644 index 000000000..8b44c3744 --- /dev/null +++ b/v1.0.1/00f89wy98.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/00f89wy98", + "name": "Magnetics Information Consortium", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.71571, + "lng": -117.16472, + "state": null, + "state_code": null, + "city": "San Diego", + "geonames_city": { + "id": 5391811, + "city": "San Diego", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "San Diego", + "id": 5391832, + "ascii_name": "San Diego", + "code": "US.CA.073" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://earthref.org/MagIC" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/00g3fjr10.json b/v1.0.1/00g3fjr10.json new file mode 100644 index 000000000..0b3e14fe8 --- /dev/null +++ b/v1.0.1/00g3fjr10.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/00g3fjr10", + "name": "AIR Institute", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "University of Salamanca", + "type": "Related", + "id": "https://ror.org/02f40zc51" + }, + { + "label": "Junta de Castilla y León", + "type": "Related", + "id": "https://ror.org/02s8dab97" + }, + { + "label": "University of Valladolid", + "type": "Related", + "id": "https://ror.org/01fvbaw18" + } + ], + "addresses": [ + { + "lat": 41.65518, + "lng": -4.72372, + "state": null, + "state_code": null, + "city": "Valladolid", + "geonames_city": { + "id": 3106672, + "city": "Valladolid", + "geonames_admin1": { + "name": "Castille and León", + "id": 3336900, + "ascii_name": "Castille and León", + "code": "ES.55" + }, + "geonames_admin2": { + "name": "Valladolid", + "id": 3106671, + "ascii_name": "Valladolid", + "code": "ES.55.VA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://air-institute.org/" + ], + "aliases": [], + "acronyms": [ + "AIR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Fundación Instituto Internacional de Investigación en Inteligencia Artificial y Ciencias de la Computación", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/00gt23c81.json b/v1.0.1/00gt23c81.json new file mode 100644 index 000000000..734185aa5 --- /dev/null +++ b/v1.0.1/00gt23c81.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/00gt23c81", + "name": "Universidad Nacional Autónoma Altoandina de Tarma", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -11.41899, + "lng": -75.68992, + "state": null, + "state_code": null, + "city": "Tarma", + "geonames_city": { + "id": 3927758, + "city": "Tarma", + "geonames_admin1": { + "name": "Junin", + "id": 3937485, + "ascii_name": "Junin", + "code": "PE.12" + }, + "geonames_admin2": { + "name": "Provincia de Tarma", + "id": 3927757, + "ascii_name": "Provincia de Tarma", + "code": "PE.12.1207" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "http://www.unaat.edu.pe/portal/" + ], + "aliases": [], + "acronyms": [ + "UNAAT" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Universidad_Nacional_Aut%C3%B3noma_Altoandina_de_Tarma", + "labels": [ + { + "label": "National Autonomous High Andean University of Tarma", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6021 1803", + "all": [ + "0000 0004 6021 1803" + ] + }, + "Wikidata": { + "preferred": "Q6156552", + "all": [ + "Q6156552" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/00hmkqz52.json b/v1.0.1/00hmkqz52.json new file mode 100644 index 000000000..1abf98bee --- /dev/null +++ b/v1.0.1/00hmkqz52.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/00hmkqz52", + "name": "Instituto Nacional de Ciencias Neurológicas", + "email_address": null, + "ip_addresses": [], + "established": 1700, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Ministry of Health", + "type": "Parent", + "id": "https://ror.org/04gq6mn61" + } + ], + "addresses": [ + { + "lat": -12.04318, + "lng": -77.02824, + "state": null, + "state_code": null, + "city": "Lima", + "geonames_city": { + "id": 3936456, + "city": "Lima", + "geonames_admin1": { + "name": "Lima", + "id": 3936451, + "ascii_name": "Lima", + "code": "PE.LMA" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "http://www.incn.gob.pe/" + ], + "aliases": [], + "acronyms": [ + "INCN" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Instituto_Nacional_de_Ciencias_Neurol%C3%B3gicas", + "labels": [ + { + "label": "National Institute of Neurological Sciences", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0395 9647", + "all": [ + "0000 0004 0395 9647" + ] + }, + "Wikidata": { + "preferred": "Q107067455", + "all": [ + "Q107067455" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/00j0emq76.json b/v1.0.1/00j0emq76.json new file mode 100644 index 000000000..85e70b5bd --- /dev/null +++ b/v1.0.1/00j0emq76.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/00j0emq76", + "name": "Pontifical Biblical Institute", + "email_address": null, + "ip_addresses": [], + "established": 1909, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "name": "Lazio", + "id": 3174976, + "ascii_name": "Lazio", + "code": "IT.07" + }, + "geonames_admin2": { + "name": "Rome", + "id": 3169069, + "ascii_name": "Rome", + "code": "IT.07.RM" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3175395 + } + ], + "links": [ + "https://www.biblico.it/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Pontifical_Biblical_Institute", + "labels": [ + { + "label": "Pontificium Institutum Biblicum", + "iso639": "la" + }, + { + "label": "Pontificio Istituto Biblico", + "iso639": "it" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2183 685X", + "all": [ + "0000 0001 2183 685X" + ] + }, + "Wikidata": { + "preferred": "Q951184", + "all": [ + "Q951184" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/00jjz9s23.json b/v1.0.1/00jjz9s23.json new file mode 100644 index 000000000..add020100 --- /dev/null +++ b/v1.0.1/00jjz9s23.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/00jjz9s23", + "name": "Digitisation Centre of Western Australia", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Curtin University", + "type": "Related", + "id": "https://ror.org/02n415q13" + }, + { + "label": "Edith Cowan University", + "type": "Related", + "id": "https://ror.org/05jhnwe22" + }, + { + "label": "Murdoch University", + "type": "Related", + "id": "https://ror.org/00r4sry34" + }, + { + "label": "University of Notre Dame Australia", + "type": "Related", + "id": "https://ror.org/02stey378" + }, + { + "label": "University of Western Australia", + "type": "Related", + "id": "https://ror.org/047272k79" + } + ], + "addresses": [ + { + "lat": -31.95224, + "lng": 115.8614, + "state": null, + "state_code": null, + "city": "Perth", + "geonames_city": { + "id": 2063523, + "city": "Perth", + "geonames_admin1": { + "name": "Western Australia", + "id": 2058645, + "ascii_name": "Western Australia", + "code": "AU.08" + }, + "geonames_admin2": { + "name": "Perth", + "id": 2063522, + "ascii_name": "Perth", + "code": "AU.08.57080" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "https://www.uwa.edu.au/schools/research/The-Digitisation-Centre-of-Western-Australia" + ], + "aliases": [ + "Digitisation Centre WA" + ], + "acronyms": [ + "DCWA", + "WADC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/00mcxye41.json b/v1.0.1/00mcxye41.json new file mode 100644 index 000000000..0f4d5f589 --- /dev/null +++ b/v1.0.1/00mcxye41.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/00mcxye41", + "name": "National Biodiversity Network Trust", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.9536, + "lng": -1.15047, + "state": null, + "state_code": null, + "city": "Nottingham", + "geonames_city": { + "id": 2641170, + "city": "Nottingham", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Nottingham", + "id": 3333178, + "ascii_name": "Nottingham", + "code": "GB.ENG.J8" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "https://nbn.org.uk/" + ], + "aliases": [], + "acronyms": [ + "NBN" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Biodiversity_Network", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6335 2396", + "all": [ + "0000 0004 6335 2396" + ] + }, + "Wikidata": { + "preferred": "Q6970988", + "all": [ + "Q6970988" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/00meyfe69.json b/v1.0.1/00meyfe69.json new file mode 100644 index 000000000..1f177860e --- /dev/null +++ b/v1.0.1/00meyfe69.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/00meyfe69", + "name": "Universidad Privada Peruano Alemana", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -12.04318, + "lng": -77.02824, + "state": null, + "state_code": null, + "city": "Lima", + "geonames_city": { + "id": 3936456, + "city": "Lima", + "geonames_admin1": { + "name": "Lima", + "id": 3936451, + "ascii_name": "Lima", + "code": "PE.LMA" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "https://www.upal.edu.pe/" + ], + "aliases": [], + "acronyms": [ + "UPAL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "German Peruvian Private University", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/00mwcha69.json b/v1.0.1/00mwcha69.json new file mode 100644 index 000000000..2e188a389 --- /dev/null +++ b/v1.0.1/00mwcha69.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/00mwcha69", + "name": "Akademi Keperawatan YKY", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -7.80139, + "lng": 110.36472, + "state": null, + "state_code": null, + "city": "Yogyakarta", + "geonames_city": { + "id": 1621177, + "city": "Yogyakarta", + "geonames_admin1": { + "name": "Yogyakarta", + "id": 1621176, + "ascii_name": "Yogyakarta", + "code": "ID.10" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1643084 + } + ], + "links": [ + "http://www.akperykyjogja.ac.id/" + ], + "aliases": [ + "Akademi Keperawatan YKY Yogyakarta", + "AKPER YKY Yogyakarta", + "Nursing Academy YKY Yogyakarta" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0497 8954", + "all": [ + "0000 0004 0497 8954" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/00nw4tw41.json b/v1.0.1/00nw4tw41.json new file mode 100644 index 000000000..b02272a89 --- /dev/null +++ b/v1.0.1/00nw4tw41.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/00nw4tw41", + "name": "InterGrain", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": -32.08333, + "lng": 115.81667, + "state": null, + "state_code": null, + "city": "Lake Bibra", + "geonames_city": { + "id": 2076680, + "city": "Lake Bibra", + "geonames_admin1": { + "name": "Western Australia", + "id": 2058645, + "ascii_name": "Western Australia", + "code": "AU.08" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "https://www.intergrain.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0005 0233 6218", + "all": [ + "0000 0005 0233 6218" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/00qxqkw78.json b/v1.0.1/00qxqkw78.json new file mode 100644 index 000000000..f1727f878 --- /dev/null +++ b/v1.0.1/00qxqkw78.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/00qxqkw78", + "name": "European Plate Observing System", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "name": "Lazio", + "id": 3174976, + "ascii_name": "Lazio", + "code": "IT.07" + }, + "geonames_admin2": { + "name": "Rome", + "id": 3169069, + "ascii_name": "Rome", + "code": "IT.07.RM" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3175395 + } + ], + "links": [ + "https://www.epos-eu.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/00rs6s651.json b/v1.0.1/00rs6s651.json new file mode 100644 index 000000000..f59da4103 --- /dev/null +++ b/v1.0.1/00rs6s651.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/00rs6s651", + "name": "Museo de Historia Natural", + "email_address": null, + "ip_addresses": [], + "established": 1918, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National University of San Marcos", + "type": "Parent", + "id": "https://ror.org/006vs7897" + } + ], + "addresses": [ + { + "lat": -12.04318, + "lng": -77.02824, + "state": null, + "state_code": null, + "city": "Lima", + "geonames_city": { + "id": 3936456, + "city": "Lima", + "geonames_admin1": { + "name": "Lima", + "id": 3936451, + "ascii_name": "Lima", + "code": "PE.LMA" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "https://museohn.unmsm.edu.pe/" + ], + "aliases": [], + "acronyms": [ + "MUSEOHN" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Museo_de_Historia_Natural_%28Universidad_Nacional_Mayor_de_San_Marcos%29", + "labels": [ + { + "label": "Museum of Natural History", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 1033 6366", + "all": [ + "0000 0001 1033 6366" + ] + }, + "Wikidata": { + "preferred": "Q1684512", + "all": [ + "Q1684512" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/00s582952.json b/v1.0.1/00s582952.json new file mode 100644 index 000000000..f1d029d7d --- /dev/null +++ b/v1.0.1/00s582952.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/00s582952", + "name": "Instituto Nacional de Salud Mental \"Honorio Delgado - Hideyo Noguchi\"", + "email_address": null, + "ip_addresses": [], + "established": 1981, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Ministry of Health", + "type": "Parent", + "id": "https://ror.org/04gq6mn61" + } + ], + "addresses": [ + { + "lat": -12.04318, + "lng": -77.02824, + "state": null, + "state_code": null, + "city": "Lima", + "geonames_city": { + "id": 3936456, + "city": "Lima", + "geonames_admin1": { + "name": "Lima", + "id": 3936451, + "ascii_name": "Lima", + "code": "PE.LMA" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "http://www.insm.gob.pe/" + ], + "aliases": [], + "acronyms": [ + "INSM \"HD-HN\"" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Institute of Mental Health \"Honorio Delgado - Hideyo Noguchi\"", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0396 2395", + "all": [ + "0000 0004 0396 2395" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/00tfqpy41.json b/v1.0.1/00tfqpy41.json new file mode 100644 index 000000000..b3df78f28 --- /dev/null +++ b/v1.0.1/00tfqpy41.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/00tfqpy41", + "name": "Servicio Nacional de Sanidad Agraria", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -12.04318, + "lng": -77.02824, + "state": null, + "state_code": null, + "city": "Lima", + "geonames_city": { + "id": 3936456, + "city": "Lima", + "geonames_admin1": { + "name": "Lima", + "id": 3936451, + "ascii_name": "Lima", + "code": "PE.LMA" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "https://www.senasa.gob.pe/senasa/" + ], + "aliases": [], + "acronyms": [ + "SENASA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Agrarian Health Service", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 4655 2687", + "all": [ + "0000 0004 4655 2687" + ] + }, + "Wikidata": { + "preferred": "Q99980637", + "all": [ + "Q99980637" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/00tm1qp20.json b/v1.0.1/00tm1qp20.json new file mode 100644 index 000000000..952ef134e --- /dev/null +++ b/v1.0.1/00tm1qp20.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/00tm1qp20", + "name": "Opal Coast Signal and Image Computer Laboratory", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of the Littoral Opal Coast", + "type": "Parent", + "id": "https://ror.org/02gdcg342" + } + ], + "addresses": [ + { + "lat": 50.95194, + "lng": 1.85635, + "state": null, + "state_code": null, + "city": "Calais", + "geonames_city": { + "id": 3029162, + "city": "Calais", + "geonames_admin1": { + "name": "Hauts-de-France", + "id": 11071624, + "ascii_name": "Hauts-de-France", + "code": "FR.32" + }, + "geonames_admin2": { + "name": "Pas-de-Calais", + "id": 2988430, + "ascii_name": "Pas-de-Calais", + "code": "FR.32.62" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www-lisic.univ-littoral.fr/" + ], + "aliases": [], + "acronyms": [ + "LISIC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratoire d’Informatique Signal et Image de la Côte d’Opale", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6108 4463", + "all": [ + "0000 0004 6108 4463" + ] + }, + "Wikidata": { + "preferred": "Q51783321", + "all": [ + "Q51783321" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/00wb4mk85.json b/v1.0.1/00wb4mk85.json new file mode 100644 index 000000000..8ed1c04db --- /dev/null +++ b/v1.0.1/00wb4mk85.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/00wb4mk85", + "name": "OpenCitations", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.75222, + "lng": -1.25596, + "state": null, + "state_code": null, + "city": "Oxford", + "geonames_city": { + "id": 2640729, + "city": "Oxford", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Oxfordshire", + "id": 2640726, + "ascii_name": "Oxfordshire", + "code": "GB.ENG.K2" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://opencitations.net/" + ], + "aliases": [], + "acronyms": [ + "OC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/OpenCitations", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q29279836", + "all": [ + "Q29279836" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/00wk22n41.json b/v1.0.1/00wk22n41.json new file mode 100644 index 000000000..1b351ab34 --- /dev/null +++ b/v1.0.1/00wk22n41.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/00wk22n41", + "name": "Netherlands Haemophilia Society", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.22, + "lng": 5.48611, + "state": null, + "state_code": null, + "city": "Nijkerk", + "geonames_city": { + "id": 2750065, + "city": "Nijkerk", + "geonames_admin1": { + "name": "Gelderland", + "id": 2755634, + "ascii_name": "Gelderland", + "code": "NL.03" + }, + "geonames_admin2": { + "name": "Nijkerk", + "id": 2750064, + "ascii_name": "Nijkerk", + "code": "NL.03.0267" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2750405 + } + ], + "links": [ + "http://www.nvhp.nl/" + ], + "aliases": [], + "acronyms": [ + "NVHP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Nederlandse Vereniging van Hemofilie-Patiënten", + "iso639": "nl" + } + ], + "country": { + "country_name": "Netherlands", + "country_code": "NL" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/00wv18f77.json b/v1.0.1/00wv18f77.json new file mode 100644 index 000000000..0f0421229 --- /dev/null +++ b/v1.0.1/00wv18f77.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/00wv18f77", + "name": "Pope Benedict XVI Institute", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.01513, + "lng": 12.10161, + "state": null, + "state_code": null, + "city": "Regensburg", + "geonames_city": { + "id": 2849483, + "city": "Regensburg", + "geonames_admin1": { + "name": "Bavaria", + "id": 2951839, + "ascii_name": "Bavaria", + "code": "DE.02" + }, + "geonames_admin2": { + "name": "Upper Palatinate", + "id": 2859444, + "ascii_name": "Upper Palatinate", + "code": "DE.02.093" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "http://www.institut-papst-benedikt.de/" + ], + "aliases": [], + "acronyms": [ + "IPB" + ], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/Institut_Papst_Benedikt_XVI.", + "labels": [ + { + "label": "Institut Papst Benedikt XVI.", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0741 8336", + "all": [ + "0000 0001 0741 8336" + ] + }, + "Wikidata": { + "preferred": "Q1664747", + "all": [ + "Q1664747" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/00wx1mx58.json b/v1.0.1/00wx1mx58.json new file mode 100644 index 000000000..3cd12d48a --- /dev/null +++ b/v1.0.1/00wx1mx58.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/00wx1mx58", + "name": "Maison des Sciences de l'Homme Mondes", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.89198, + "lng": 2.20675, + "state": null, + "state_code": null, + "city": "Nanterre", + "geonames_city": { + "id": 2990970, + "city": "Nanterre", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Hauts-de-Seine", + "id": 3013657, + "ascii_name": "Hauts-de-Seine", + "code": "FR.11.92" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.mshmondes.cnrs.fr/" + ], + "aliases": [ + "MSH Mondes" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Maison_des_Sciences_de_l%E2%80%99homme_Mondes", + "labels": [ + { + "label": "Maison Archéologie & Ethnologie", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q3278957", + "all": [ + "Q3278957" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/010r6td27.json b/v1.0.1/010r6td27.json new file mode 100644 index 000000000..3c8fab6af --- /dev/null +++ b/v1.0.1/010r6td27.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/010r6td27", + "name": "Digital Research Alliance of Canada", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "name": "Ontario", + "id": 6093943, + "ascii_name": "Ontario", + "code": "CA.08" + }, + "geonames_admin2": { + "name": "Ottawa", + "id": 8581623, + "ascii_name": "Ottawa", + "code": "CA.08.3506" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "https://engagedri.ca/" + ], + "aliases": [ + "Alliance", + "The Alliance", + "L’Alliance" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "L’Alliance de recherche numérique du Canada", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/013aa2c03.json b/v1.0.1/013aa2c03.json new file mode 100644 index 000000000..61a2d5be3 --- /dev/null +++ b/v1.0.1/013aa2c03.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/013aa2c03", + "name": "Institute of Mental Health and Neurosciences", + "email_address": null, + "ip_addresses": [], + "established": 1983, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 11.24802, + "lng": 75.7804, + "state": null, + "state_code": null, + "city": "Kozhikode", + "geonames_city": { + "id": 1265873, + "city": "Kozhikode", + "geonames_admin1": { + "name": "Kerala", + "id": 1267254, + "ascii_name": "Kerala", + "code": "IN.13" + }, + "geonames_admin2": { + "name": "Kozhikode", + "id": 1265874, + "ascii_name": "Kozhikode", + "code": "IN.13.591" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1269750 + } + ], + "links": [ + "http://imhans.ac.in/" + ], + "aliases": [], + "acronyms": [ + "IMHANS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institute_of_Mental_Health_and_Neurosciences", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q98113942", + "all": [ + "Q98113942" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/014kkjk75.json b/v1.0.1/014kkjk75.json new file mode 100644 index 000000000..4cf7302e5 --- /dev/null +++ b/v1.0.1/014kkjk75.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/014kkjk75", + "name": "Lviv Medical Institute", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.83826, + "lng": 24.02324, + "state": null, + "state_code": null, + "city": "Lviv", + "geonames_city": { + "id": 702550, + "city": "Lviv", + "geonames_admin1": { + "name": "Lviv Oblast", + "id": 702549, + "ascii_name": "Lviv Oblast", + "code": "UA.15" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 690791 + } + ], + "links": [ + "https://medinstytut.lviv.ua/" + ], + "aliases": [], + "acronyms": [ + "LMI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Львівський Медичний Інститут", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0517 646X", + "all": [ + "0000 0004 0517 646X" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/016zwj547.json b/v1.0.1/016zwj547.json new file mode 100644 index 000000000..f30e8faec --- /dev/null +++ b/v1.0.1/016zwj547.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/016zwj547", + "name": "Vishwakarma University", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 18.51957, + "lng": 73.85535, + "state": null, + "state_code": null, + "city": "Pune", + "geonames_city": { + "id": 1259229, + "city": "Pune", + "geonames_admin1": { + "name": "Maharashtra", + "id": 1264418, + "ascii_name": "Maharashtra", + "code": "IN.16" + }, + "geonames_admin2": { + "name": "Pune", + "id": 8133375, + "ascii_name": "Pune", + "code": "IN.16.521" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1269750 + } + ], + "links": [ + "https://www.vupune.ac.in/" + ], + "aliases": [], + "acronyms": [ + "VU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Vishwakarma_University", + "labels": [ + { + "label": "विश्वकर्मा युनिव्हर्सिटी / विश्वकर्मा विद्यापीठ", + "iso639": "mr" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0005 0599 7193", + "all": [ + "0000 0005 0599 7193" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/0171n2m64.json b/v1.0.1/0171n2m64.json new file mode 100644 index 000000000..4058be02d --- /dev/null +++ b/v1.0.1/0171n2m64.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/0171n2m64", + "name": "Instituto Superior Tecnológico Bolivariano de Tecnología", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -2.19616, + "lng": -79.88621, + "state": null, + "state_code": null, + "city": "Guayaquil", + "geonames_city": { + "id": 3657509, + "city": "Guayaquil", + "geonames_admin1": { + "name": "Guayas", + "id": 3657505, + "ascii_name": "Guayas", + "code": "EC.10" + }, + "geonames_admin2": { + "name": "Cantón Guayaquil", + "id": 3657508, + "ascii_name": "Cantón Guayaquil", + "code": "EC.10.0901" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3658394 + } + ], + "links": [ + "https://itb.edu.ec/" + ], + "aliases": [], + "acronyms": [ + "ITB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Ecuador", + "country_code": "EC" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0586 0042", + "all": [ + "0000 0004 0586 0042" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/017bd4h68.json b/v1.0.1/017bd4h68.json new file mode 100644 index 000000000..aa5be1f18 --- /dev/null +++ b/v1.0.1/017bd4h68.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/017bd4h68", + "name": "Universidad Nacional de Frontera", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -4.90389, + "lng": -80.68528, + "state": null, + "state_code": null, + "city": "Sullana", + "geonames_city": { + "id": 3691674, + "city": "Sullana", + "geonames_admin1": { + "name": "Piura", + "id": 3693525, + "ascii_name": "Piura", + "code": "PE.20" + }, + "geonames_admin2": { + "name": "Provincia de Sullana", + "id": 3691673, + "ascii_name": "Provincia de Sullana", + "code": "PE.20.2006" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "https://unf.edu.pe/" + ], + "aliases": [], + "acronyms": [ + "UNF" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Universidad_Nacional_de_Frontera", + "labels": [ + { + "label": "National University of Frontera", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6022 2967", + "all": [ + "0000 0004 6022 2967" + ] + }, + "Wikidata": { + "preferred": "Q27139633", + "all": [ + "Q27139633" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/0180xa122.json b/v1.0.1/0180xa122.json new file mode 100644 index 000000000..2e36490d8 --- /dev/null +++ b/v1.0.1/0180xa122.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/0180xa122", + "name": "Universidad Nacional Autónoma de Alto Amazonas", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -5.81276, + "lng": -76.10229, + "state": null, + "state_code": null, + "city": "Provincia de Alto Amazonas", + "geonames_city": { + "id": 3699735, + "city": "Provincia de Alto Amazonas", + "geonames_admin1": { + "name": "Loreto", + "id": 3695238, + "ascii_name": "Loreto", + "code": "PE.16" + }, + "geonames_admin2": { + "name": "Provincia de Alto Amazonas", + "id": 3699735, + "ascii_name": "Provincia de Alto Amazonas", + "code": "PE.16.1602" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "http://www.unaaa.edu.pe/" + ], + "aliases": [], + "acronyms": [ + "UNAAA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Autonomous University of Alto Amazonas", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6502 5858", + "all": [ + "0000 0004 6502 5858" + ] + }, + "Wikidata": { + "preferred": "Q57987898", + "all": [ + "Q57987898" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/01897f782.json b/v1.0.1/01897f782.json new file mode 100644 index 000000000..1b6d12edd --- /dev/null +++ b/v1.0.1/01897f782.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01897f782", + "name": "Universidad Nacional de Juliaca", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -15.5, + "lng": -70.13333, + "state": null, + "state_code": null, + "city": "Juliaca", + "geonames_city": { + "id": 3937513, + "city": "Juliaca", + "geonames_admin1": { + "name": "Puno", + "id": 3931275, + "ascii_name": "Puno", + "code": "PE.21" + }, + "geonames_admin2": { + "name": "San Roman", + "id": 3929310, + "ascii_name": "San Roman", + "code": "PE.21.2111" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "http://www.unaj.edu.pe/" + ], + "aliases": [], + "acronyms": [ + "UNAJ" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Universidad_Nacional_de_Juliaca", + "labels": [ + { + "label": "National University of Juliaca", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 4912 3685", + "all": [ + "0000 0004 4912 3685" + ] + }, + "Wikidata": { + "preferred": "Q6156585", + "all": [ + "Q6156585" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/019ptgs60.json b/v1.0.1/019ptgs60.json new file mode 100644 index 000000000..8583b71f6 --- /dev/null +++ b/v1.0.1/019ptgs60.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/019ptgs60", + "name": "Buenos Aires Interdisciplinary Political Economy Institute", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Buenos Aires", + "type": "Parent", + "id": "https://ror.org/0081fs513" + }, + { + "label": "National Scientific and Technical Research Council", + "type": "Parent", + "id": "https://ror.org/03cqe8w59" + } + ], + "addresses": [ + { + "lat": -34.61315, + "lng": -58.37723, + "state": null, + "state_code": null, + "city": "Buenos Aires", + "geonames_city": { + "id": 3435910, + "city": "Buenos Aires", + "geonames_admin1": { + "name": "Buenos Aires F.D.", + "id": 3433955, + "ascii_name": "Buenos Aires F.D.", + "code": "AR.07" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3865483 + } + ], + "links": [ + "https://iiep-baires.econ.uba.ar/" + ], + "aliases": [], + "acronyms": [ + "IIEP (UBA CONICET)" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Instituto Interdisciplinario de Economía Política de Buenos Aires", + "iso639": "es" + } + ], + "country": { + "country_name": "Argentina", + "country_code": "AR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/01adbad76.json b/v1.0.1/01adbad76.json new file mode 100644 index 000000000..14dd4851c --- /dev/null +++ b/v1.0.1/01adbad76.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/01adbad76", + "name": "Lexical Computing CZ", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.19522, + "lng": 16.60796, + "state": null, + "state_code": null, + "city": "Brno", + "geonames_city": { + "id": 3078610, + "city": "Brno", + "geonames_admin1": { + "name": "South Moravian", + "id": 3339536, + "ascii_name": "South Moravian", + "code": "CZ.78" + }, + "geonames_admin2": { + "name": "Město Brno", + "id": 3078609, + "ascii_name": "Město Brno", + "code": "CZ.78.0642" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3077311 + } + ], + "links": [ + "https://www.lexicalcomputing.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7388 2649", + "all": [ + "0000 0004 7388 2649" + ] + }, + "Wikidata": { + "preferred": "Q45027067", + "all": [ + "Q45027067" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/01d74sk53.json b/v1.0.1/01d74sk53.json new file mode 100644 index 000000000..401463680 --- /dev/null +++ b/v1.0.1/01d74sk53.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/01d74sk53", + "name": "CatalystNeuro", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.04937, + "lng": -122.15858, + "state": null, + "state_code": null, + "city": "Benicia", + "geonames_city": { + "id": 5327550, + "city": "Benicia", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Solano", + "id": 5396987, + "ascii_name": "Solano", + "code": "US.CA.095" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.catalystneuro.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/01fefmh69.json b/v1.0.1/01fefmh69.json new file mode 100644 index 000000000..6c9450d42 --- /dev/null +++ b/v1.0.1/01fefmh69.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01fefmh69", + "name": "Universidad Jaime Bausate y Meza", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -12.04318, + "lng": -77.02824, + "state": null, + "state_code": null, + "city": "Lima", + "geonames_city": { + "id": 3936456, + "city": "Lima", + "geonames_admin1": { + "name": "Lima", + "id": 3936451, + "ascii_name": "Lima", + "code": "PE.LMA" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "http://www.bausate.edu.pe" + ], + "aliases": [], + "acronyms": [ + "UB" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Universidad_Jaime_Bausate_y_Meza", + "labels": [ + { + "label": "Jaime Bausate y Meza University", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6416 1807", + "all": [ + "0000 0004 6416 1807" + ] + }, + "Wikidata": { + "preferred": "Q56377773", + "all": [ + "Q56377773" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/01ge7v435.json b/v1.0.1/01ge7v435.json new file mode 100644 index 000000000..47ea70b92 --- /dev/null +++ b/v1.0.1/01ge7v435.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/01ge7v435", + "name": "Punta Culebra Nature Center", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 9.54938, + "lng": -79.21413, + "state": null, + "state_code": null, + "city": "Punta de Palmira", + "geonames_city": { + "id": 3711718, + "city": "Punta de Palmira", + "geonames_admin1": { + "name": "Colón", + "id": 3712073, + "ascii_name": "Colón", + "code": "PA.04" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3703430 + } + ], + "links": [ + "https://stri.si.edu/facility/punta-culebra" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Panama", + "country_code": "PA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/01kq4t285.json b/v1.0.1/01kq4t285.json new file mode 100644 index 000000000..288600fb6 --- /dev/null +++ b/v1.0.1/01kq4t285.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01kq4t285", + "name": "Instituto Geográfico Nacional", + "email_address": null, + "ip_addresses": [], + "established": 1913, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -12.04318, + "lng": -77.02824, + "state": null, + "state_code": null, + "city": "Lima", + "geonames_city": { + "id": 3936456, + "city": "Lima", + "geonames_admin1": { + "name": "Lima", + "id": 3936451, + "ascii_name": "Lima", + "code": "PE.LMA" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "https://www.ign.gob.pe/" + ], + "aliases": [], + "acronyms": [ + "IGN" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Instituto_Geogr%C3%A1fico_Nacional_%28Per%C3%BA%29", + "labels": [ + { + "label": "National Geographic Institute", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 1019 1769", + "all": [ + "0000 0001 1019 1769" + ] + }, + "Wikidata": { + "preferred": "Q24843248", + "all": [ + "Q24843248" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/01nzphv03.json b/v1.0.1/01nzphv03.json new file mode 100644 index 000000000..8b3a8b812 --- /dev/null +++ b/v1.0.1/01nzphv03.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/01nzphv03", + "name": "Pacific Centre for Isotopic and Geochemical Research", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.24966, + "lng": -123.11934, + "state": null, + "state_code": null, + "city": "Vancouver", + "geonames_city": { + "id": 6173331, + "city": "Vancouver", + "geonames_admin1": { + "name": "British Columbia", + "id": 5909050, + "ascii_name": "British Columbia", + "code": "CA.02" + }, + "geonames_admin2": { + "name": "Metro Vancouver Regional District", + "id": 5965814, + "ascii_name": "Metro Vancouver Regional District", + "code": "CA.02.5915" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "https://pcigr.eos.ubc.ca/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/01qkd1z70.json b/v1.0.1/01qkd1z70.json new file mode 100644 index 000000000..33452381d --- /dev/null +++ b/v1.0.1/01qkd1z70.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/01qkd1z70", + "name": "Bannari Amman Institute of Technology", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 11.50526, + "lng": 77.23826, + "state": null, + "state_code": null, + "city": "Sathyamangalam", + "geonames_city": { + "id": 1256989, + "city": "Sathyamangalam", + "geonames_admin1": { + "name": "Tamil Nadu", + "id": 1255053, + "ascii_name": "Tamil Nadu", + "code": "IN.25" + }, + "geonames_admin2": { + "name": "Erode", + "id": 8223995, + "ascii_name": "Erode", + "code": "IN.25.610" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1269750 + } + ], + "links": [ + "https://www.bitsathy.ac.in/" + ], + "aliases": [ + "Bannariamman Institute of Technology" + ], + "acronyms": [ + "BIT SATHY" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bannari_Amman_Institute_of_Technology", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 1765 1192", + "all": [ + "0000 0004 1765 1192" + ] + }, + "Wikidata": { + "preferred": "Q4835740", + "all": [ + "Q4835740" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/01v7jw115.json b/v1.0.1/01v7jw115.json new file mode 100644 index 000000000..93660aecf --- /dev/null +++ b/v1.0.1/01v7jw115.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/01v7jw115", + "name": "T'Sou-ke First Nation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.37463, + "lng": -123.72762, + "state": null, + "state_code": null, + "city": "Sooke", + "geonames_city": { + "id": 6151264, + "city": "Sooke", + "geonames_admin1": { + "name": "British Columbia", + "id": 5909050, + "ascii_name": "British Columbia", + "code": "CA.02" + }, + "geonames_admin2": { + "name": "Capital Regional District", + "id": 5916420, + "ascii_name": "Capital Regional District", + "code": "CA.02.5917" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "https://www.tsoukenation.com/" + ], + "aliases": [ + "T'Sou-ke Nation", + "T'Souke Nation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/T%27Sou-ke_Nation", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q2382930", + "all": [ + "Q2382930" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/01vqrde47.json b/v1.0.1/01vqrde47.json new file mode 100644 index 000000000..7a4fde6b4 --- /dev/null +++ b/v1.0.1/01vqrde47.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/01vqrde47", + "name": "Nançay Radio Observatory", + "email_address": null, + "ip_addresses": [], + "established": 1956, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Paris Observatory", + "type": "Parent", + "id": "https://ror.org/029nkcm90" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "University of Orléans", + "type": "Parent", + "id": "https://ror.org/014zrew76" + } + ], + "addresses": [ + { + "lat": 47.3501, + "lng": 2.19286, + "state": null, + "state_code": null, + "city": "Nançay", + "geonames_city": { + "id": 2991013, + "city": "Nançay", + "geonames_admin1": { + "name": "Centre-Val de Loire", + "id": 3027939, + "ascii_name": "Centre-Val de Loire", + "code": "FR.24" + }, + "geonames_admin2": { + "name": "Cher", + "id": 3025480, + "ascii_name": "Cher", + "code": "FR.24.18" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.obs-nancay.fr" + ], + "aliases": [], + "acronyms": [ + "USN" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Nan%C3%A7ay_Radio_Observatory", + "labels": [ + { + "label": "Station de Radioastronomie de Nançay", + "iso639": "fr" + }, + { + "label": "Unité Scientifique de Nançay", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0471 7041", + "all": [ + "0000 0004 0471 7041" + ] + }, + "Wikidata": { + "preferred": "Q60643512", + "all": [ + "Q60643512" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/01xcd2w79.json b/v1.0.1/01xcd2w79.json new file mode 100644 index 000000000..fa79710f2 --- /dev/null +++ b/v1.0.1/01xcd2w79.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/01xcd2w79", + "name": "Flathead National Forest", + "email_address": null, + "ip_addresses": [], + "established": 1897, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "US Forest Service", + "type": "Parent", + "id": "https://ror.org/03zmjc935" + } + ], + "addresses": [ + { + "lat": 48.02857, + "lng": -113.80539, + "state": null, + "state_code": null, + "city": "Flathead National Forest", + "geonames_city": { + "id": 5652383, + "city": "Flathead National Forest", + "geonames_admin1": { + "name": "Montana", + "id": 5667009, + "ascii_name": "Montana", + "code": "US.MT" + }, + "geonames_admin2": { + "name": "Flathead", + "id": 5652361, + "ascii_name": "Flathead", + "code": "US.MT.029" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.fs.usda.gov/flathead" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Flathead_National_Forest", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q1427349", + "all": [ + "Q1427349" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/01xfrxk65.json b/v1.0.1/01xfrxk65.json new file mode 100644 index 000000000..4a0eaa61f --- /dev/null +++ b/v1.0.1/01xfrxk65.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/01xfrxk65", + "name": "California Geological Survey", + "email_address": null, + "ip_addresses": [], + "established": 1853, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "California Department of Conservation", + "type": "Parent", + "id": "https://ror.org/00vmaka31" + } + ], + "addresses": [ + { + "lat": 38.58157, + "lng": -121.4944, + "state": null, + "state_code": null, + "city": "Sacramento", + "geonames_city": { + "id": 5389489, + "city": "Sacramento", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Sacramento", + "id": 5389519, + "ascii_name": "Sacramento", + "code": "US.CA.067" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.conservation.ca.gov/cgs" + ], + "aliases": [ + "California Division of Mines and Geology" + ], + "acronyms": [ + "CGS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/California_Geological_Survey", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0807 116X", + "all": [ + "0000 0001 0807 116X" + ] + }, + "Wikidata": { + "preferred": "Q5020505", + "all": [ + "Q5020505" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/01y280z29.json b/v1.0.1/01y280z29.json new file mode 100644 index 000000000..f0adbfdfd --- /dev/null +++ b/v1.0.1/01y280z29.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01y280z29", + "name": "Universidad Nacional de Barranca", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -10.66599, + "lng": -77.65707, + "state": null, + "state_code": null, + "city": "Barranca", + "geonames_city": { + "id": 8349564, + "city": "Barranca", + "geonames_admin1": { + "name": "Lima region", + "id": 3936452, + "ascii_name": "Lima region", + "code": "PE.15" + }, + "geonames_admin2": { + "name": "Barranca", + "id": 8349564, + "ascii_name": "Barranca", + "code": "PE.15.1502" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "https://www.unab.edu.pe/" + ], + "aliases": [], + "acronyms": [ + "UNAB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National University of Barranca", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6022 2983", + "all": [ + "0000 0004 6022 2983" + ] + }, + "Wikidata": { + "preferred": "Q57987995", + "all": [ + "Q57987995" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/01yhex183.json b/v1.0.1/01yhex183.json new file mode 100644 index 000000000..36f11c292 --- /dev/null +++ b/v1.0.1/01yhex183.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01yhex183", + "name": "Gothenburg Natural History Museum", + "email_address": null, + "ip_addresses": [], + "established": 1833, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 57.72288, + "lng": 11.94577, + "state": null, + "state_code": null, + "city": "Gothenburg Municipality", + "geonames_city": { + "id": 2711533, + "city": "Gothenburg Municipality", + "geonames_admin1": { + "name": "Västra Götaland", + "id": 3337386, + "ascii_name": "Västra Götaland", + "code": "SE.28" + }, + "geonames_admin2": { + "name": "Gothenburg Municipality", + "id": 2711533, + "ascii_name": "Gothenburg Municipality", + "code": "SE.28.1480" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2661886 + } + ], + "links": [ + "https://www.gnm.se/" + ], + "aliases": [], + "acronyms": [ + "GNM" + ], + "status": "active", + "wikipedia_url": "https://sv.wikipedia.org/wiki/G%C3%B6teborgs_Naturhistoriska_museum", + "labels": [ + { + "label": "Göteborgs Naturhistoriska Museum", + "iso639": "sv" + } + ], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0059 3334", + "all": [ + "0000 0001 0059 3334" + ] + }, + "Wikidata": { + "preferred": "Q848411", + "all": [ + "Q848411" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/01znn6x10.json b/v1.0.1/01znn6x10.json new file mode 100644 index 000000000..6934bedf8 --- /dev/null +++ b/v1.0.1/01znn6x10.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/01znn6x10", + "name": "KBase", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "United States Department of Energy", + "type": "Parent", + "id": "https://ror.org/01bj3aw27" + } + ], + "addresses": [ + { + "lat": 37.87159, + "lng": -122.27275, + "state": null, + "state_code": null, + "city": "Berkeley", + "geonames_city": { + "id": 5327684, + "city": "Berkeley", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Alameda", + "id": 5322745, + "ascii_name": "Alameda", + "code": "US.CA.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.kbase.us/" + ], + "aliases": [ + "Department of Energy Systems Biology Knowledgebase" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/01zqrkn57.json b/v1.0.1/01zqrkn57.json new file mode 100644 index 000000000..278eb8ac7 --- /dev/null +++ b/v1.0.1/01zqrkn57.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/01zqrkn57", + "name": "Municipal Higher Education Institution \"Kherson Academy of Continuing Education\" of the Kherson Regional Council", + "email_address": null, + "ip_addresses": [], + "established": 1944, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 46.63695, + "lng": 32.61458, + "state": null, + "state_code": null, + "city": "Kherson", + "geonames_city": { + "id": 706448, + "city": "Kherson", + "geonames_admin1": { + "name": "Kherson Oblast", + "id": 706442, + "ascii_name": "Kherson Oblast", + "code": "UA.08" + }, + "geonames_admin2": { + "name": "Kherson Raion", + "id": 9875813, + "ascii_name": "Kherson Raion", + "code": "UA.08.9875813" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 690791 + } + ], + "links": [ + "http://academy.ks.ua/" + ], + "aliases": [ + "MHEI \"Kherson academy of continuing education\"" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Комунальний вищий навчальний заклад \"Херсонська академія неперервної освіти\" Херсонської обласної ради", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/01zy7yh11.json b/v1.0.1/01zy7yh11.json new file mode 100644 index 000000000..08a92a136 --- /dev/null +++ b/v1.0.1/01zy7yh11.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/01zy7yh11", + "name": "Bundesinstitut für Bau-, Stadt- und Raumforschung", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Bundesamt für Bauwesen und Raumordnung", + "type": "Parent", + "id": "https://ror.org/04hqtn844" + } + ], + "addresses": [ + { + "lat": 50.87894, + "lng": 7.12292, + "state": null, + "state_code": null, + "city": "Cologne Bonn Airport", + "geonames_city": { + "id": 6296510, + "city": "Cologne Bonn Airport", + "geonames_admin1": { + "name": "North Rhine-Westphalia", + "id": 2861876, + "ascii_name": "North Rhine-Westphalia", + "code": "DE.07" + }, + "geonames_admin2": { + "name": "Cologne District", + "id": 2886241, + "ascii_name": "Cologne District", + "code": "DE.07.053" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.bbsr.bund.de/" + ], + "aliases": [], + "acronyms": [ + "BBSR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/0201hm243.json b/v1.0.1/0201hm243.json new file mode 100644 index 000000000..7c00e46bc --- /dev/null +++ b/v1.0.1/0201hm243.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/0201hm243", + "name": "Phenomics Australia", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -35.28346, + "lng": 149.12807, + "state": null, + "state_code": null, + "city": "Canberra", + "geonames_city": { + "id": 2172517, + "city": "Canberra", + "geonames_admin1": { + "name": "Australian Capital Territory", + "id": 2177478, + "ascii_name": "Australian Capital Territory", + "code": "AU.01" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "http://australianphenomics.org.au/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/021gxf250.json b/v1.0.1/021gxf250.json new file mode 100644 index 000000000..d9d15d032 --- /dev/null +++ b/v1.0.1/021gxf250.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/021gxf250", + "name": "Virtual Library of Virginia", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.84622, + "lng": -77.30637, + "state": null, + "state_code": null, + "city": "Fairfax", + "geonames_city": { + "id": 4758023, + "city": "Fairfax", + "geonames_admin1": { + "name": "Virginia", + "id": 6254928, + "ascii_name": "Virginia", + "code": "US.VA" + }, + "geonames_admin2": { + "name": "City of Fairfax", + "id": 4758109, + "ascii_name": "City of Fairfax", + "code": "US.VA.600" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://vivalib.org/" + ], + "aliases": [], + "acronyms": [ + "VIVA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Virtual_Library_of_Virginia", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0496 5192", + "all": [ + "0000 0004 0496 5192" + ] + }, + "Wikidata": { + "preferred": "Q7934991", + "all": [ + "Q7934991" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02201g510.json b/v1.0.1/02201g510.json new file mode 100644 index 000000000..9915c7281 --- /dev/null +++ b/v1.0.1/02201g510.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/02201g510", + "name": "Universidad Le Cordon Bleu", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -12.04318, + "lng": -77.02824, + "state": null, + "state_code": null, + "city": "Lima", + "geonames_city": { + "id": 3936456, + "city": "Lima", + "geonames_admin1": { + "name": "Lima", + "id": 3936451, + "ascii_name": "Lima", + "code": "PE.LMA" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "https://www.ulcb.edu.pe/" + ], + "aliases": [], + "acronyms": [ + "ULCB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Le Cordon Bleu University", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6022 3070", + "all": [ + "0000 0004 6022 3070" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/023ycer62.json b/v1.0.1/023ycer62.json new file mode 100644 index 000000000..b91dfb46a --- /dev/null +++ b/v1.0.1/023ycer62.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/023ycer62", + "name": "Universidad Nacional Autónoma de Huanta", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -12.5, + "lng": -74.16667, + "state": null, + "state_code": null, + "city": "Provincia de Huanta", + "geonames_city": { + "id": 3939385, + "city": "Provincia de Huanta", + "geonames_admin1": { + "name": "Ayacucho", + "id": 3947018, + "ascii_name": "Ayacucho", + "code": "PE.05" + }, + "geonames_admin2": { + "name": "Provincia de Huanta", + "id": 3939385, + "ascii_name": "Provincia de Huanta", + "code": "PE.05.0504" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "https://www.unah.edu.pe/" + ], + "aliases": [], + "acronyms": [ + "UNAH" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Universidad_Nacional_Aut%C3%B3noma_de_Huanta", + "labels": [ + { + "label": "Huanta National Autonomous University", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q97178641", + "all": [ + "Q97178641" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02684yk50.json b/v1.0.1/02684yk50.json new file mode 100644 index 000000000..24aa985ce --- /dev/null +++ b/v1.0.1/02684yk50.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/02684yk50", + "name": "Mataram College of Health Sciences", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -8.67697, + "lng": 116.33286, + "state": null, + "state_code": null, + "city": "Lombok Island", + "geonames_city": { + "id": 7869837, + "city": "Lombok Island", + "geonames_admin1": { + "name": "West Nusa Tenggara", + "id": 1633792, + "ascii_name": "West Nusa Tenggara", + "code": "ID.17" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1643084 + } + ], + "links": [ + "http://id.stikes-mataram.ac.id/" + ], + "aliases": [], + "acronyms": [ + "STIKES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Sekolah Tinggi Ilmu Kesehatan (STIKES) Mataram", + "iso639": "id" + } + ], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0406 3711", + "all": [ + "0000 0004 0406 3711" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/026ewty38.json b/v1.0.1/026ewty38.json new file mode 100644 index 000000000..a61804f7e --- /dev/null +++ b/v1.0.1/026ewty38.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/026ewty38", + "name": "Universidad Nacional Intercultural de la Selva Central Juan Santos Atahualpa", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -11.05, + "lng": -75.31667, + "state": null, + "state_code": null, + "city": "Chanchamayo", + "geonames_city": { + "id": 3944390, + "city": "Chanchamayo", + "geonames_admin1": { + "name": "Junin", + "id": 3937485, + "ascii_name": "Junin", + "code": "PE.12" + }, + "geonames_admin2": { + "name": "Chanchamayo", + "id": 3944390, + "ascii_name": "Chanchamayo", + "code": "PE.12.1203" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "http://www.uniscjsa.edu.pe/" + ], + "aliases": [], + "acronyms": [ + "UNISCJSA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Intercultural University of the Central Jungle Juan Santos Atahualpa", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q51736099", + "all": [ + "Q51736099" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/027790w81.json b/v1.0.1/027790w81.json new file mode 100644 index 000000000..b86e52caf --- /dev/null +++ b/v1.0.1/027790w81.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/027790w81", + "name": "Open Data Commons for Spinal Cord Injury", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "University of California, San Diego", + "type": "Related", + "id": "https://ror.org/0168r3w48" + }, + { + "label": "University of California, San Francisco", + "type": "Related", + "id": "https://ror.org/043mz5j54" + }, + { + "label": "University of Alberta", + "type": "Related", + "id": "https://ror.org/0160cpw27" + } + ], + "addresses": [ + { + "lat": 32.84727, + "lng": -117.2742, + "state": null, + "state_code": null, + "city": "La Jolla", + "geonames_city": { + "id": 5363943, + "city": "La Jolla", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "San Diego", + "id": 5391832, + "ascii_name": "San Diego", + "code": "US.CA.073" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://odc-sci.org/" + ], + "aliases": [], + "acronyms": [ + "ODC-SCI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/02c3p9381.json b/v1.0.1/02c3p9381.json new file mode 100644 index 000000000..b72da51ef --- /dev/null +++ b/v1.0.1/02c3p9381.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/02c3p9381", + "name": "Instituto Nacional de Rehabilitación de \"Dra. Adriana Rebaza Flores\" Amistad Perú-Japón", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Ministry of Health", + "type": "Parent", + "id": "https://ror.org/04gq6mn61" + } + ], + "addresses": [ + { + "lat": -12.04318, + "lng": -77.02824, + "state": null, + "state_code": null, + "city": "Lima", + "geonames_city": { + "id": 3936456, + "city": "Lima", + "geonames_admin1": { + "name": "Lima", + "id": 3936451, + "ascii_name": "Lima", + "code": "PE.LMA" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "http://www.inr.gob.pe/" + ], + "aliases": [], + "acronyms": [ + "INR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Rehabilitation Institute of \"Dra. Adriana Rebaza Flores\" Peru-Japan Friendship", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0514 2753", + "all": [ + "0000 0004 0514 2753" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02dbp3m50.json b/v1.0.1/02dbp3m50.json new file mode 100644 index 000000000..afbce6ab8 --- /dev/null +++ b/v1.0.1/02dbp3m50.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/02dbp3m50", + "name": "Escuela Postgrado Neumann Business School", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -18.01465, + "lng": -70.25362, + "state": null, + "state_code": null, + "city": "Tacna", + "geonames_city": { + "id": 3928128, + "city": "Tacna", + "geonames_admin1": { + "name": "Tacna", + "id": 3928127, + "ascii_name": "Tacna", + "code": "PE.23" + }, + "geonames_admin2": { + "name": "Provincia de Tacna", + "id": 3928126, + "ascii_name": "Provincia de Tacna", + "code": "PE.23.2301" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "https://www.nbs.edu.pe/" + ], + "aliases": [ + "Escuela de Postgrado Neumann", + "EP Neumann" + ], + "acronyms": [ + "NBS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Neumann Business School Graduate School", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7592 7396", + "all": [ + "0000 0004 7592 7396" + ] + }, + "Wikidata": { + "preferred": "Q52620115", + "all": [ + "Q52620115" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02dzza612.json b/v1.0.1/02dzza612.json new file mode 100644 index 000000000..c6f3e0bb7 --- /dev/null +++ b/v1.0.1/02dzza612.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/02dzza612", + "name": "Punta Galeta Marine Laboratory", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Smithsonian Institution", + "type": "Related", + "id": "https://ror.org/01pp8nd67" + }, + { + "label": "Smithsonian Tropical Research Institute", + "type": "Related", + "id": "https://ror.org/035jbxr46" + } + ], + "addresses": [ + { + "lat": 9.40296, + "lng": -79.86416, + "state": null, + "state_code": null, + "city": "Punta Galeta", + "geonames_city": { + "id": 3709416, + "city": "Punta Galeta", + "geonames_admin1": { + "name": "Colón", + "id": 3712073, + "ascii_name": "Colón", + "code": "PA.04" + }, + "geonames_admin2": { + "name": "Colón District", + "id": 3712075, + "ascii_name": "Colón District", + "code": "PA.04.0301" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3703430 + } + ], + "links": [ + "https://stri.si.edu/facility/punta-galeta" + ], + "aliases": [ + "Galeta Marine Laboratories", + "Galeta Marine Laboratory" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Panama", + "country_code": "PA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/02e4h5817.json b/v1.0.1/02e4h5817.json new file mode 100644 index 000000000..cc0be50e2 --- /dev/null +++ b/v1.0.1/02e4h5817.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/02e4h5817", + "name": "Nosivska Breeding And Research Station", + "email_address": null, + "ip_addresses": [], + "established": 1911, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.93466, + "lng": 31.69545, + "state": null, + "state_code": null, + "city": "Doslidne", + "geonames_city": { + "id": 8401407, + "city": "Doslidne", + "geonames_admin1": { + "name": "Chernihiv", + "id": 710734, + "ascii_name": "Chernihiv", + "code": "UA.02" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 690791 + } + ], + "links": [ + "http://nosivkasds.at.ua/" + ], + "aliases": [], + "acronyms": [ + "NSDS" + ], + "status": "active", + "wikipedia_url": "https://uk.wikipedia.org/wiki/%D0%9D%D0%BE%D1%81%D1%96%D0%B2%D1%81%D1%8C%D0%BA%D0%B0_%D1%81%D0%B5%D0%BB%D0%B5%D0%BA%D1%86%D1%96%D0%B9%D0%BD%D0%BE-%D0%B4%D0%BE%D1%81%D0%BB%D1%96%D0%B4%D0%BD%D0%B0_%D1%81%D1%82%D0%B0%D0%BD%D1%86%D1%96%D1%8F", + "labels": [ + { + "label": "Носівська селекційно-дослідна станція", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q12134455", + "all": [ + "Q12134455" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02e838q34.json b/v1.0.1/02e838q34.json new file mode 100644 index 000000000..8adc6f815 --- /dev/null +++ b/v1.0.1/02e838q34.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/02e838q34", + "name": "Instituto Nacional de Estadística e Informática", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -12.04318, + "lng": -77.02824, + "state": null, + "state_code": null, + "city": "Lima", + "geonames_city": { + "id": 3936456, + "city": "Lima", + "geonames_admin1": { + "name": "Lima", + "id": 3936451, + "ascii_name": "Lima", + "code": "PE.LMA" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "https://www.inei.gob.pe/" + ], + "aliases": [], + "acronyms": [ + "INEI" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Instituto_Nacional_de_Estad%C3%ADstica_e_Inform%C3%A1tica", + "labels": [ + { + "label": "National Institute of Statistics and Informatics", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2207 2089", + "all": [ + "0000 0001 2207 2089" + ] + }, + "Wikidata": { + "preferred": "Q793736", + "all": [ + "Q793736" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02f4ks689.json b/v1.0.1/02f4ks689.json new file mode 100644 index 000000000..056bd25cf --- /dev/null +++ b/v1.0.1/02f4ks689.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/02f4ks689", + "name": "Axiom Data Science", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 61.21806, + "lng": -149.90028, + "state": null, + "state_code": null, + "city": "Anchorage", + "geonames_city": { + "id": 5879400, + "city": "Anchorage", + "geonames_admin1": { + "name": "Alaska", + "id": 5879092, + "ascii_name": "Alaska", + "code": "US.AK" + }, + "geonames_admin2": { + "name": "Anchorage", + "id": 5879348, + "ascii_name": "Anchorage", + "code": "US.AK.020" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.axiomdatascience.com/" + ], + "aliases": [], + "acronyms": [ + "AXDS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/02fn69884.json b/v1.0.1/02fn69884.json new file mode 100644 index 000000000..118376eb1 --- /dev/null +++ b/v1.0.1/02fn69884.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/02fn69884", + "name": "Universidad Villanueva", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.villanueva.edu/" + ], + "aliases": [ + "Universidad Internacional Villanueva", + "Centro Universitario Villanueva" + ], + "acronyms": [ + "UV" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Universidad_Villanueva", + "labels": [ + { + "label": "Villanueva University", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0005 0507 0582", + "all": [ + "0000 0005 0507 0582" + ] + }, + "Wikidata": { + "preferred": "Q63226588", + "all": [ + "Q63226588" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02hhf2525.json b/v1.0.1/02hhf2525.json new file mode 100644 index 000000000..cd6e63bcd --- /dev/null +++ b/v1.0.1/02hhf2525.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/02hhf2525", + "name": "Academician F. H. Burchak Scientific-Research Institute of Private Law and Entrepreneurship", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.45466, + "lng": 30.5238, + "state": null, + "state_code": null, + "city": "Kyiv", + "geonames_city": { + "id": 703448, + "city": "Kyiv", + "geonames_admin1": { + "name": "Kyiv City", + "id": 703447, + "ascii_name": "Kyiv City", + "code": "UA.12" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 690791 + } + ], + "links": [ + "https://ndippp.gov.ua/" + ], + "aliases": [], + "acronyms": [ + "NDIPPP" + ], + "status": "active", + "wikipedia_url": "https://uk.wikipedia.org/wiki/%D0%9D%D0%B0%D1%83%D0%BA%D0%BE%D0%B2%D0%BE-%D0%B4%D0%BE%D1%81%D0%BB%D1%96%D0%B4%D0%BD%D0%B8%D0%B9_%D1%96%D0%BD%D1%81%D1%82%D0%B8%D1%82%D1%83%D1%82_%D0%BF%D1%80%D0%B8%D0%B2%D0%B0%D1%82%D0%BD%D0%BE%D0%B3%D0%BE_%D0%BF%D1%80%D0%B0%D0%B2%D0%B0_%D1%96_%D0%BF%D1%96%D0%B4%D0%BF%D1%80%D0%B8%D1%94%D0%BC%D0%BD%D0%B8%D1%86%D1%82%D0%B2%D0%B0_%D1%96%D0%BC%D0%B5%D0%BD%D1%96_%D0%B0%D0%BA%D0%B0%D0%B4%D0%B5%D0%BC%D1%96%D0%BA%D0%B0_%D0%A4._%D0%93._%D0%91%D1%83%D1%80%D1%87%D0%B0%D0%BA%D0%B0", + "labels": [ + { + "label": "Науково-дослідниq інститут приватного права і підприємництва імені академіка Ф. Г. Бурчака", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q16708724", + "all": [ + "Q16708724" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02jfhsn35.json b/v1.0.1/02jfhsn35.json new file mode 100644 index 000000000..5f5779d30 --- /dev/null +++ b/v1.0.1/02jfhsn35.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/02jfhsn35", + "name": "CSIRO BioFoundry", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commonwealth Scientific and Industrial Research Organisation", + "type": "Parent", + "id": "https://ror.org/03qn8fb07" + } + ], + "addresses": [ + { + "lat": -27.46794, + "lng": 153.02809, + "state": null, + "state_code": null, + "city": "Brisbane", + "geonames_city": { + "id": 2174003, + "city": "Brisbane", + "geonames_admin1": { + "name": "Queensland", + "id": 2152274, + "ascii_name": "Queensland", + "code": "AU.04" + }, + "geonames_admin2": { + "name": "Brisbane", + "id": 7839562, + "ascii_name": "Brisbane", + "code": "AU.04.31000" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "http://www.csiro.au/BioFoundry" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/02jn8gs50.json b/v1.0.1/02jn8gs50.json new file mode 100644 index 000000000..cfeabe4bf --- /dev/null +++ b/v1.0.1/02jn8gs50.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/02jn8gs50", + "name": "Brazilian Association of Psychiatry", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Sociedade Brasileira de Psicologia", + "type": "Related", + "id": "https://ror.org/03w7hce19" + } + ], + "addresses": [ + { + "lat": -22.90642, + "lng": -43.18223, + "state": null, + "state_code": null, + "city": "Rio de Janeiro", + "geonames_city": { + "id": 3451190, + "city": "Rio de Janeiro", + "geonames_admin1": { + "name": "Rio de Janeiro", + "id": 3451189, + "ascii_name": "Rio de Janeiro", + "code": "BR.21" + }, + "geonames_admin2": { + "name": "Rio de Janeiro", + "id": 6322060, + "ascii_name": "Rio de Janeiro", + "code": "BR.21.3304557" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3469034 + } + ], + "links": [ + "https://www.abp.org.br/" + ], + "aliases": [], + "acronyms": [ + "ABP" + ], + "status": "active", + "wikipedia_url": "https://pt.wikipedia.org/wiki/Associa%C3%A7%C3%A3o_Brasileira_de_Psiquiatria", + "labels": [ + { + "label": "Associação Brasileira de Psiquiatria", + "iso639": "pt" + } + ], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 8514 5187", + "all": [ + "0000 0004 8514 5187" + ] + }, + "Wikidata": { + "preferred": "Q9633893", + "all": [ + "Q9633893" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02jq1vf72.json b/v1.0.1/02jq1vf72.json new file mode 100644 index 000000000..beb9575c7 --- /dev/null +++ b/v1.0.1/02jq1vf72.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/02jq1vf72", + "name": "Coibita Island", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Smithsonian Institution", + "type": "Related", + "id": "https://ror.org/01pp8nd67" + }, + { + "label": "Smithsonian Tropical Research Institute", + "type": "Related", + "id": "https://ror.org/035jbxr46" + } + ], + "addresses": [ + { + "lat": 7.64496, + "lng": -81.70292, + "state": null, + "state_code": null, + "city": "Isla Ranchería", + "geonames_city": { + "id": 3702035, + "city": "Isla Ranchería", + "geonames_admin1": { + "name": "Veraguas", + "id": 3700159, + "ascii_name": "Veraguas", + "code": "PA.10" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3703430 + } + ], + "links": [ + "https://stri.si.edu/facility/coibita-island" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Isla Coibita, Ranchería", + "iso639": "es" + } + ], + "country": { + "country_name": "Panama", + "country_code": "PA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/02mxc2926.json b/v1.0.1/02mxc2926.json new file mode 100644 index 000000000..e39c558a2 --- /dev/null +++ b/v1.0.1/02mxc2926.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/02mxc2926", + "name": "Population Health Research Network", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -31.98418, + "lng": 115.81603, + "state": null, + "state_code": null, + "city": "Crawley", + "geonames_city": { + "id": 10041014, + "city": "Crawley", + "geonames_admin1": { + "name": "Western Australia", + "id": 2058645, + "ascii_name": "Western Australia", + "code": "AU.08" + }, + "geonames_admin2": { + "name": "Subiaco", + "id": 7839640, + "ascii_name": "Subiaco", + "code": "AU.08.57980" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "https://www.phrn.org.au/" + ], + "aliases": [], + "acronyms": [ + "PHRN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0487 1567", + "all": [ + "0000 0004 0487 1567" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02n7p8p77.json b/v1.0.1/02n7p8p77.json new file mode 100644 index 000000000..2aeb3c898 --- /dev/null +++ b/v1.0.1/02n7p8p77.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/02n7p8p77", + "name": "Shandong Institute of Advanced Technology", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.66833, + "lng": 116.99722, + "state": null, + "state_code": null, + "city": "Jinan", + "geonames_city": { + "id": 1805753, + "city": "Jinan", + "geonames_admin1": { + "name": "Shandong", + "id": 1796328, + "ascii_name": "Shandong", + "code": "CN.25" + }, + "geonames_admin2": { + "name": "Jinan Shi", + "id": 1805751, + "ascii_name": "Jinan Shi", + "code": "CN.25.3701" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1814991 + } + ], + "links": [ + "http://www.sdiat.cn/" + ], + "aliases": [], + "acronyms": [ + "SDIAT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "山东高等技术研究院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q110140441", + "all": [ + "Q110140441" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02n8xct56.json b/v1.0.1/02n8xct56.json new file mode 100644 index 000000000..5131d0409 --- /dev/null +++ b/v1.0.1/02n8xct56.json @@ -0,0 +1,72 @@ +{ + "id": "https://ror.org/02n8xct56", + "name": "Digital Health Cooperative Research Centre", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": -33.86785, + "lng": 151.20732, + "state": null, + "state_code": null, + "city": "Sydney", + "geonames_city": { + "id": 2147714, + "city": "Sydney", + "geonames_admin1": { + "name": "New South Wales", + "id": 2155400, + "ascii_name": "New South Wales", + "code": "AU.02" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "https://www.digitalhealthcrc.com" + ], + "aliases": [ + "Digital Health", + "Digital Health CRC" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/02pry0c91.json b/v1.0.1/02pry0c91.json new file mode 100644 index 000000000..9265ab981 --- /dev/null +++ b/v1.0.1/02pry0c91.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/02pry0c91", + "name": "Hakai Institute", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Tula Foundation", + "type": "Parent", + "id": "https://ror.org/0029jxk29" + } + ], + "addresses": [ + { + "lat": 50.01634, + "lng": -125.24459, + "state": null, + "state_code": null, + "city": "Campbell River", + "geonames_city": { + "id": 5914132, + "city": "Campbell River", + "geonames_admin1": { + "name": "British Columbia", + "id": 5909050, + "ascii_name": "British Columbia", + "code": "CA.02" + }, + "geonames_admin2": { + "name": "Strathcona Regional District", + "id": 8593707, + "ascii_name": "Strathcona Regional District", + "code": "CA.02.5924" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "https://www.hakai.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Hakai_Institute", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9225 7240", + "all": [ + "0000 0004 9225 7240" + ] + }, + "FundRef": { + "preferred": "100016884", + "all": [ + "100016884" + ] + }, + "Wikidata": { + "preferred": "Q5640294", + "all": [ + "Q5640294" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02pv64t29.json b/v1.0.1/02pv64t29.json new file mode 100644 index 000000000..2347df839 --- /dev/null +++ b/v1.0.1/02pv64t29.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/02pv64t29", + "name": "Woods Hole Coastal and Marine Science Center", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "United States Geological Survey", + "type": "Parent", + "id": "https://ror.org/035a68863" + } + ], + "addresses": [ + { + "lat": 41.52657, + "lng": -70.67466, + "state": null, + "state_code": null, + "city": "Woods Hole", + "geonames_city": { + "id": 4956152, + "city": "Woods Hole", + "geonames_admin1": { + "name": "Massachusetts", + "id": 6254926, + "ascii_name": "Massachusetts", + "code": "US.MA" + }, + "geonames_admin2": { + "name": "Barnstable", + "id": 4929772, + "ascii_name": "Barnstable", + "code": "US.MA.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.usgs.gov/centers/whcmsc" + ], + "aliases": [], + "acronyms": [ + "WHCMSC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/02q3q8311.json b/v1.0.1/02q3q8311.json new file mode 100644 index 000000000..a4a62c3fb --- /dev/null +++ b/v1.0.1/02q3q8311.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02q3q8311", + "name": "State University of Infrastructure and Technologies", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.45466, + "lng": 30.5238, + "state": null, + "state_code": null, + "city": "Kyiv", + "geonames_city": { + "id": 703448, + "city": "Kyiv", + "geonames_admin1": { + "name": "Kyiv City", + "id": 703447, + "ascii_name": "Kyiv City", + "code": "UA.12" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 690791 + } + ], + "links": [ + "https://duit.edu.ua/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://uk.wikipedia.org/wiki/%D0%94%D0%B5%D1%80%D0%B6%D0%B0%D0%B2%D0%BD%D0%B8%D0%B9_%D1%83%D0%BD%D1%96%D0%B2%D0%B5%D1%80%D1%81%D0%B8%D1%82%D0%B5%D1%82_%D1%96%D0%BD%D1%84%D1%80%D0%B0%D1%81%D1%82%D1%80%D1%83%D0%BA%D1%82%D1%83%D1%80%D0%B8_%D1%82%D0%B0_%D1%82%D0%B5%D1%85%D0%BD%D0%BE%D0%BB%D0%BE%D0%B3%D1%96%D0%B9", + "labels": [ + { + "label": "ДЕРЖАВНИЙ УНІВЕРСИТЕТ ІНФРАСТРУКТУРИ ТА ТЕХНОЛОГІЙ", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9529 5701", + "all": [ + "0000 0004 9529 5701" + ] + }, + "Wikidata": { + "preferred": "Q56368232", + "all": [ + "Q56368232" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02q7mkh03.json b/v1.0.1/02q7mkh03.json new file mode 100644 index 000000000..2949da5c9 --- /dev/null +++ b/v1.0.1/02q7mkh03.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/02q7mkh03", + "name": "Inter-University Consortium for Political and Social Research", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "University of Michigan–Ann Arbor", + "type": "Parent", + "id": "https://ror.org/00jmfr291" + } + ], + "addresses": [ + { + "lat": 42.27756, + "lng": -83.74088, + "state": null, + "state_code": null, + "city": "Ann Arbor", + "geonames_city": { + "id": 4984247, + "city": "Ann Arbor", + "geonames_admin1": { + "name": "Michigan", + "id": 5001836, + "ascii_name": "Michigan", + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Washtenaw", + "id": 5014120, + "ascii_name": "Washtenaw", + "code": "US.MI.161" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.icpsr.umich.edu/" + ], + "aliases": [], + "acronyms": [ + "ICPSR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Inter-university_Consortium_for_Political_and_Social_Research", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0943 5850", + "all": [ + "0000 0001 0943 5850" + ] + }, + "Wikidata": { + "preferred": "Q6044782", + "all": [ + "Q6044782" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02qqjk369.json b/v1.0.1/02qqjk369.json new file mode 100644 index 000000000..207a2ff09 --- /dev/null +++ b/v1.0.1/02qqjk369.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/02qqjk369", + "name": "Institute of Information Technologies and Learning Tools of the NAES of Ukraine", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "National Academy of Educational Sciences of Ukraine", + "type": "Parent", + "id": "https://ror.org/05h1pdj54" + } + ], + "addresses": [ + { + "lat": 50.45466, + "lng": 30.5238, + "state": null, + "state_code": null, + "city": "Kyiv", + "geonames_city": { + "id": 703448, + "city": "Kyiv", + "geonames_admin1": { + "name": "Kyiv City", + "id": 703447, + "ascii_name": "Kyiv City", + "code": "UA.12" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 690791 + } + ], + "links": [ + "https://iitlt.gov.ua/eng/" + ], + "aliases": [ + "IITLT NAES of Ukraine" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://uk.wikipedia.org/wiki/%D0%86%D0%BD%D1%81%D1%82%D0%B8%D1%82%D1%83%D1%82_%D1%96%D0%BD%D1%84%D0%BE%D1%80%D0%BC%D0%B0%D1%86%D1%96%D0%B9%D0%BD%D0%B8%D1%85_%D1%82%D0%B5%D1%85%D0%BD%D0%BE%D0%BB%D0%BE%D0%B3%D1%96%D0%B9_%D1%96_%D0%B7%D0%B0%D1%81%D0%BE%D0%B1%D1%96%D0%B2_%D0%BD%D0%B0%D0%B2%D1%87%D0%B0%D0%BD%D0%BD%D1%8F_%D0%9D%D0%90%D0%9F%D0%9D_%D0%A3%D0%BA%D1%80%D0%B0%D1%97%D0%BD%D0%B8", + "labels": [ + { + "label": "Інститут інформаційних технологій і засобів навчання НАПН України", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q12074710", + "all": [ + "Q12074710" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02qyzaf42.json b/v1.0.1/02qyzaf42.json new file mode 100644 index 000000000..137022fb9 --- /dev/null +++ b/v1.0.1/02qyzaf42.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/02qyzaf42", + "name": "The Cancer Imaging Archive", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "University of Arkansas for Medical Sciences", + "type": "Related", + "id": "https://ror.org/00xcryt71" + }, + { + "label": "National Cancer Institute", + "type": "Related", + "id": "https://ror.org/040gcmg81" + }, + { + "label": "Frederick National Laboratory for Cancer Research", + "type": "Related", + "id": "https://ror.org/03v6m3209" + } + ], + "addresses": [ + { + "lat": 34.74648, + "lng": -92.28959, + "state": null, + "state_code": null, + "city": "Little Rock", + "geonames_city": { + "id": 4119403, + "city": "Little Rock", + "geonames_admin1": { + "name": "Arkansas", + "id": 4099753, + "ascii_name": "Arkansas", + "code": "US.AR" + }, + "geonames_admin2": { + "name": "Pulaski", + "id": 4127619, + "ascii_name": "Pulaski", + "code": "US.AR.119" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.cancerimagingarchive.net" + ], + "aliases": [], + "acronyms": [ + "TCIA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/The_Cancer_Imaging_Archive_%28TCIA%29", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q25339822", + "all": [ + "Q25339822" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02r5q9a81.json b/v1.0.1/02r5q9a81.json new file mode 100644 index 000000000..470f12dcc --- /dev/null +++ b/v1.0.1/02r5q9a81.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/02r5q9a81", + "name": "Universidad Nacional Autónoma de Chota", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -7.16378, + "lng": -78.50027, + "state": null, + "state_code": null, + "city": "Cajamarca", + "geonames_city": { + "id": 3699088, + "city": "Cajamarca", + "geonames_admin1": { + "name": "Cajamarca", + "id": 3699087, + "ascii_name": "Cajamarca", + "code": "PE.06" + }, + "geonames_admin2": { + "name": "Provincia de Cajamarca", + "id": 3699086, + "ascii_name": "Provincia de Cajamarca", + "code": "PE.06.0601" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "http://www.unach.edu.pe/" + ], + "aliases": [], + "acronyms": [ + "UNACH" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Universidad_Nacional_Aut%C3%B3noma_de_Chota", + "labels": [ + { + "label": "National Autonomous University of Chota", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6022 3011", + "all": [ + "0000 0004 6022 3011" + ] + }, + "Wikidata": { + "preferred": "Q27139634", + "all": [ + "Q27139634" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02sjhqg84.json b/v1.0.1/02sjhqg84.json new file mode 100644 index 000000000..e70406e23 --- /dev/null +++ b/v1.0.1/02sjhqg84.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02sjhqg84", + "name": "Poltekkes Kemenkes Kendari", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -3.9778, + "lng": 122.51507, + "state": null, + "state_code": null, + "city": "Kendari", + "geonames_city": { + "id": 1640344, + "city": "Kendari", + "geonames_admin1": { + "name": "Southeast Sulawesi", + "id": 1626230, + "ascii_name": "Southeast Sulawesi", + "code": "ID.22" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1643084 + } + ], + "links": [ + "https://www.poltekkeskendari.ac.id/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://id.wikipedia.org/wiki/Poltekkes_Kendari", + "labels": [ + { + "label": "Health Polytechnic Kendari", + "iso639": "en" + }, + { + "label": "Politeknik Kesehatan Kemenkes Kendari", + "iso639": "id" + } + ], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9334 5111", + "all": [ + "0000 0004 9334 5111" + ] + }, + "Wikidata": { + "preferred": "Q19731019", + "all": [ + "Q19731019" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02ts2sn48.json b/v1.0.1/02ts2sn48.json new file mode 100644 index 000000000..33f2c8b1c --- /dev/null +++ b/v1.0.1/02ts2sn48.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02ts2sn48", + "name": "Connecticut Geological Survey", + "email_address": null, + "ip_addresses": [], + "established": 1903, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Connecticut Department of Energy and Environmental Protection", + "type": "Parent", + "id": "https://ror.org/02hv6yw42" + } + ], + "addresses": [ + { + "lat": 41.76371, + "lng": -72.68509, + "state": null, + "state_code": null, + "city": "Hartford", + "geonames_city": { + "id": 4835797, + "city": "Hartford", + "geonames_admin1": { + "name": "Connecticut", + "id": 4831725, + "ascii_name": "Connecticut", + "code": "US.CT" + }, + "geonames_admin2": { + "name": "Hartford", + "id": 4835806, + "ascii_name": "Hartford", + "code": "US.CT.003" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.ct.gov/deep/geology" + ], + "aliases": [], + "acronyms": [ + "CGS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0000 9753 8333", + "all": [ + "0000 0000 9753 8333" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02w3v2f07.json b/v1.0.1/02w3v2f07.json new file mode 100644 index 000000000..bc3739141 --- /dev/null +++ b/v1.0.1/02w3v2f07.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/02w3v2f07", + "name": "Canadian Centre for Electron Microscopy", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "McMaster University", + "type": "Related", + "id": "https://ror.org/02fa3aq29" + } + ], + "addresses": [ + { + "lat": 43.25011, + "lng": -79.84963, + "state": null, + "state_code": null, + "city": "Hamilton", + "geonames_city": { + "id": 5969782, + "city": "Hamilton", + "geonames_admin1": { + "name": "Ontario", + "id": 6093943, + "ascii_name": "Ontario", + "code": "CA.08" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "https://ccem.mcmaster.ca/" + ], + "aliases": [], + "acronyms": [ + "CCEM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/02wnejx52.json b/v1.0.1/02wnejx52.json new file mode 100644 index 000000000..2de6541e2 --- /dev/null +++ b/v1.0.1/02wnejx52.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/02wnejx52", + "name": "National Academy of Legal Sciences of Ukraine", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "National Academy of Sciences of Ukraine", + "type": "Parent", + "id": "https://ror.org/00je4t102" + } + ], + "addresses": [ + { + "lat": 49.98081, + "lng": 36.25272, + "state": null, + "state_code": null, + "city": "Kharkiv", + "geonames_city": { + "id": 706483, + "city": "Kharkiv", + "geonames_admin1": { + "name": "Kharkiv", + "id": 706482, + "ascii_name": "Kharkiv", + "code": "UA.07" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 690791 + } + ], + "links": [ + "http://www.aprnu.kharkiv.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://uk.wikipedia.org/wiki/%D0%9D%D0%B0%D1%86%D1%96%D0%BE%D0%BD%D0%B0%D0%BB%D1%8C%D0%BD%D0%B0_%D0%B0%D0%BA%D0%B0%D0%B4%D0%B5%D0%BC%D1%96%D1%8F_%D0%BF%D1%80%D0%B0%D0%B2%D0%BE%D0%B2%D0%B8%D1%85_%D0%BD%D0%B0%D1%83%D0%BA_%D0%A3%D0%BA%D1%80%D0%B0%D1%97%D0%BD%D0%B8", + "labels": [ + { + "label": "Національна академія правових наук України", + "iso639": "uk" + }, + { + "label": "Академия правовых наук Украины", + "iso639": "uk" + }, + { + "label": "Академія правових наук України", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9517 9524", + "all": [ + "0000 0004 9517 9524" + ] + }, + "Wikidata": { + "preferred": "Q4314802", + "all": [ + "Q4314802" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02xbecd21.json b/v1.0.1/02xbecd21.json new file mode 100644 index 000000000..a90e26a32 --- /dev/null +++ b/v1.0.1/02xbecd21.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02xbecd21", + "name": "Oregon Water Resources Department", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.9429, + "lng": -123.0351, + "state": null, + "state_code": null, + "city": "Salem", + "geonames_city": { + "id": 5750162, + "city": "Salem", + "geonames_admin1": { + "name": "Oregon", + "id": 5744337, + "ascii_name": "Oregon", + "code": "US.OR" + }, + "geonames_admin2": { + "name": "Marion", + "id": 5739051, + "ascii_name": "Marion", + "code": "US.OR.047" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.oregon.gov/owrd/" + ], + "aliases": [ + "Oregon State Water Resources Department" + ], + "acronyms": [ + "OWRD" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Oregon_Water_Resources_Department", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0684 1300", + "all": [ + "0000 0001 0684 1300" + ] + }, + "Wikidata": { + "preferred": "Q7101419", + "all": [ + "Q7101419" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/02yhdfk86.json b/v1.0.1/02yhdfk86.json new file mode 100644 index 000000000..bdc6664a2 --- /dev/null +++ b/v1.0.1/02yhdfk86.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/02yhdfk86", + "name": "Brazilian Association of Scientific Editors", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": -22.88583, + "lng": -48.445, + "state": null, + "state_code": null, + "city": "Botucatu", + "geonames_city": { + "id": 3469136, + "city": "Botucatu", + "geonames_admin1": { + "name": "São Paulo", + "id": 3448433, + "ascii_name": "São Paulo", + "code": "BR.27" + }, + "geonames_admin2": { + "name": "Botucatu", + "id": 6322151, + "ascii_name": "Botucatu", + "code": "BR.27.3507506" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3469034 + } + ], + "links": [ + "https://www.abecbrasil.org.br/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Associação Brasileira de Editores Científicos", + "iso639": "pt" + } + ], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/02zj7b759.json b/v1.0.1/02zj7b759.json new file mode 100644 index 000000000..c19192450 --- /dev/null +++ b/v1.0.1/02zj7b759.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/02zj7b759", + "name": "Australian Plant Phenomics Facility", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": -34.92866, + "lng": 138.59863, + "state": null, + "state_code": null, + "city": "Adelaide", + "geonames_city": { + "id": 2078025, + "city": "Adelaide", + "geonames_admin1": { + "name": "South Australia", + "id": 2061327, + "ascii_name": "South Australia", + "code": "AU.05" + }, + "geonames_admin2": { + "name": "Adelaide", + "id": 7839644, + "ascii_name": "Adelaide", + "code": "AU.05.40070" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "https://www.plantphenomics.org.au/" + ], + "aliases": [], + "acronyms": [ + "APPF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/030wzvf80.json b/v1.0.1/030wzvf80.json new file mode 100644 index 000000000..3175128ba --- /dev/null +++ b/v1.0.1/030wzvf80.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/030wzvf80", + "name": "Cartográfica de Canarias", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 28.46824, + "lng": -16.25462, + "state": null, + "state_code": null, + "city": "Tenerife", + "geonames_city": { + "id": 2511174, + "city": "Tenerife", + "geonames_admin1": { + "name": "Canary Islands", + "id": 2593110, + "ascii_name": "Canary Islands", + "code": "ES.53" + }, + "geonames_admin2": { + "name": "Santa Cruz de Tenerife", + "id": 2511173, + "ascii_name": "Santa Cruz de Tenerife", + "code": "ES.53.TF" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.grafcan.es/" + ], + "aliases": [], + "acronyms": [ + "GRAFCAN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/031dyqa07.json b/v1.0.1/031dyqa07.json new file mode 100644 index 000000000..6b9d20d1f --- /dev/null +++ b/v1.0.1/031dyqa07.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/031dyqa07", + "name": "Universidad María Auxiliadora", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -12.04318, + "lng": -77.02824, + "state": null, + "state_code": null, + "city": "Lima", + "geonames_city": { + "id": 3936456, + "city": "Lima", + "geonames_admin1": { + "name": "Lima", + "id": 3936451, + "ascii_name": "Lima", + "code": "PE.LMA" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "https://uma.edu.pe/" + ], + "aliases": [], + "acronyms": [ + "UMA" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Universidad_Mar%C3%ADa_Auxiliadora", + "labels": [ + { + "label": "María Auxiliadora University", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 5986 4022", + "all": [ + "0000 0004 5986 4022" + ] + }, + "Wikidata": { + "preferred": "Q65973058", + "all": [ + "Q65973058" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/03294c124.json b/v1.0.1/03294c124.json new file mode 100644 index 000000000..7ab47d2bd --- /dev/null +++ b/v1.0.1/03294c124.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/03294c124", + "name": "Lakeland University Japan", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "name": "Tokyo", + "id": 1850144, + "ascii_name": "Tokyo", + "code": "JP.40" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://luj.lakeland.edu/" + ], + "aliases": [], + "acronyms": [ + "LUJ" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Lakeland_University_Japan_and_VWU_Global", + "labels": [], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q6478785", + "all": [ + "Q6478785" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/034d7ma87.json b/v1.0.1/034d7ma87.json new file mode 100644 index 000000000..6c63cf923 --- /dev/null +++ b/v1.0.1/034d7ma87.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/034d7ma87", + "name": "Digital Repository of Ireland", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 53.33306, + "lng": -6.24889, + "state": null, + "state_code": null, + "city": "Dublin", + "geonames_city": { + "id": 2964574, + "city": "Dublin", + "geonames_admin1": { + "name": "Leinster", + "id": 7521314, + "ascii_name": "Leinster", + "code": "IE.L" + }, + "geonames_admin2": { + "name": "Dublin City", + "id": 7778677, + "ascii_name": "Dublin City", + "code": "IE.L.33" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2963597 + } + ], + "links": [ + "https://www.dri.ie/" + ], + "aliases": [], + "acronyms": [ + "DRI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Digital_Repository_of_Ireland", + "labels": [ + { + "label": "Taisclann Dhigiteach na hÉireann", + "iso639": "ga" + } + ], + "country": { + "country_name": "Ireland", + "country_code": "IE" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q47461569", + "all": [ + "Q47461569" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/034ebnm46.json b/v1.0.1/034ebnm46.json new file mode 100644 index 000000000..c9b9d9ff4 --- /dev/null +++ b/v1.0.1/034ebnm46.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/034ebnm46", + "name": "Minnesota Geological Survey", + "email_address": null, + "ip_addresses": [], + "established": 1872, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "University of Minnesota", + "type": "Parent", + "id": "https://ror.org/017zqws13" + } + ], + "addresses": [ + { + "lat": 44.94441, + "lng": -93.09327, + "state": null, + "state_code": null, + "city": "Saint Paul", + "geonames_city": { + "id": 5045360, + "city": "Saint Paul", + "geonames_admin1": { + "name": "Minnesota", + "id": 5037779, + "ascii_name": "Minnesota", + "code": "US.MN" + }, + "geonames_admin2": { + "name": "Ramsey", + "id": 5042563, + "ascii_name": "Ramsey", + "code": "US.MN.123" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://cse.umn.edu/mgs" + ], + "aliases": [], + "acronyms": [ + "MGS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Minnesota_Geological_Survey", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q13415296", + "all": [ + "Q13415296" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/035tz7392.json b/v1.0.1/035tz7392.json new file mode 100644 index 000000000..c23be2985 --- /dev/null +++ b/v1.0.1/035tz7392.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/035tz7392", + "name": "Gothenburg Botanic Garden", + "email_address": null, + "ip_addresses": [], + "established": 1923, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Västra Götaland Regional Council", + "type": "Parent", + "id": "https://ror.org/00a4x6777" + } + ], + "addresses": [ + { + "lat": 57.70716, + "lng": 11.96679, + "state": null, + "state_code": null, + "city": "Gothenburg", + "geonames_city": { + "id": 2711537, + "city": "Gothenburg", + "geonames_admin1": { + "name": "Västra Götaland", + "id": 3337386, + "ascii_name": "Västra Götaland", + "code": "SE.28" + }, + "geonames_admin2": { + "name": "Gothenburg Municipality", + "id": 2711533, + "ascii_name": "Gothenburg Municipality", + "code": "SE.28.1480" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2661886 + } + ], + "links": [ + "https://www.botaniska.se/" + ], + "aliases": [], + "acronyms": [ + "GBG" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Gothenburg_Botanical_Garden", + "labels": [ + { + "label": "Göteborgs Botaniska Trädgård", + "iso639": "sv" + } + ], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 1012 4355", + "all": [ + "0000 0001 1012 4355" + ] + }, + "Wikidata": { + "preferred": "Q956772", + "all": [ + "Q956772" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/036dczj04.json b/v1.0.1/036dczj04.json new file mode 100644 index 000000000..57d1f177b --- /dev/null +++ b/v1.0.1/036dczj04.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/036dczj04", + "name": "Ministry of Sports", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 24.68773, + "lng": 46.72185, + "state": null, + "state_code": null, + "city": "Riyadh", + "geonames_city": { + "id": 108410, + "city": "Riyadh", + "geonames_admin1": { + "name": "Riyadh Region", + "id": 108411, + "ascii_name": "Riyadh Region", + "code": "SA.10" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 102358 + } + ], + "links": [ + "https://www.mos.gov.sa/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Sports_%28Saudi_Arabia%29", + "labels": [], + "country": { + "country_name": "Saudi Arabia", + "country_code": "SA" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q10966946", + "all": [ + "Q10966946" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/036ttgc90.json b/v1.0.1/036ttgc90.json new file mode 100644 index 000000000..f13955b9e --- /dev/null +++ b/v1.0.1/036ttgc90.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/036ttgc90", + "name": "Universidad Privada de Huancayo \"Franklin Roosevelt\"", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -12.06513, + "lng": -75.20486, + "state": null, + "state_code": null, + "city": "Huancayo", + "geonames_city": { + "id": 3939459, + "city": "Huancayo", + "geonames_admin1": { + "name": "Junin", + "id": 3937485, + "ascii_name": "Junin", + "code": "PE.12" + }, + "geonames_admin2": { + "name": "Provincia de Huancayo", + "id": 3939456, + "ascii_name": "Provincia de Huancayo", + "code": "PE.12.1201" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "http://uroosevelt.edu.pe/" + ], + "aliases": [ + "Roosevelt University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Private University of Huancayo \"Franklin Roosevelt\"", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 5905 7706", + "all": [ + "0000 0004 5905 7706" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/039kwqk96.json b/v1.0.1/039kwqk96.json new file mode 100644 index 000000000..c6fe4ac15 --- /dev/null +++ b/v1.0.1/039kwqk96.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/039kwqk96", + "name": "Long Term Ecological Research Network", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.42083, + "lng": -119.69819, + "state": null, + "state_code": null, + "city": "Santa Barbara", + "geonames_city": { + "id": 5392952, + "city": "Santa Barbara", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Santa Barbara", + "id": 5392967, + "ascii_name": "Santa Barbara", + "code": "US.CA.083" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://lternet.edu/" + ], + "aliases": [ + "Long-Term Ecological Research Network", + "LTER Network" + ], + "acronyms": [ + "LTER" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Long_Term_Ecological_Research_Network", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0000 8820 3822", + "all": [ + "0000 0000 8820 3822" + ] + }, + "Wikidata": { + "preferred": "Q6673290", + "all": [ + "Q6673290" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/039vhkg84.json b/v1.0.1/039vhkg84.json new file mode 100644 index 000000000..b04481072 --- /dev/null +++ b/v1.0.1/039vhkg84.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/039vhkg84", + "name": "Comisión Nacional de Investigación y Desarrollo Aeroespacial", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -12.04318, + "lng": -77.02824, + "state": null, + "state_code": null, + "city": "Lima", + "geonames_city": { + "id": 3936456, + "city": "Lima", + "geonames_admin1": { + "name": "Lima", + "id": 3936451, + "ascii_name": "Lima", + "code": "PE.LMA" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "http://www.conida.gob.pe/" + ], + "aliases": [], + "acronyms": [ + "CONIDA" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Comisi%C3%B3n_Nacional_de_Investigaci%C3%B3n_y_Desarrollo_Aeroespacial", + "labels": [ + { + "label": "National Commission for Aerospace Research and Development", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0396 3697", + "all": [ + "0000 0004 0396 3697" + ] + }, + "Wikidata": { + "preferred": "Q15909864", + "all": [ + "Q15909864" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/03av75f26.json b/v1.0.1/03av75f26.json new file mode 100644 index 000000000..532bd53cc --- /dev/null +++ b/v1.0.1/03av75f26.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/03av75f26", + "name": "Max Planck Institute for Multidisciplinary Sciences", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.53443, + "lng": 9.93228, + "state": null, + "state_code": null, + "city": "Göttingen", + "geonames_city": { + "id": 2918632, + "city": "Göttingen", + "geonames_admin1": { + "name": "Lower Saxony", + "id": 2862926, + "ascii_name": "Lower Saxony", + "code": "DE.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.06.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.mpinat.mpg.de/" + ], + "aliases": [], + "acronyms": [ + "MPINAT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Max_Planck_Institute_for_Biophysical_Chemistry", + "labels": [ + { + "label": "Max Planck Institut für Multidisziplinäre Naturwissenschaften", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/03ckf5b20.json b/v1.0.1/03ckf5b20.json new file mode 100644 index 000000000..b60af5103 --- /dev/null +++ b/v1.0.1/03ckf5b20.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/03ckf5b20", + "name": "Scientific Institute of Rabat", + "email_address": null, + "ip_addresses": [], + "established": 1920, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.01325, + "lng": -6.83255, + "state": null, + "state_code": null, + "city": "Rabat", + "geonames_city": { + "id": 2538475, + "city": "Rabat", + "geonames_admin1": { + "name": "Rabat-Salé-Kénitra", + "id": 11281877, + "ascii_name": "Rabat-Salé-Kénitra", + "code": "MA.04" + }, + "geonames_admin2": { + "name": "Rabat", + "id": 2538474, + "ascii_name": "Rabat", + "code": "MA.04.421" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2542007 + } + ], + "links": [ + "http://www.israbat.ac.ma/" + ], + "aliases": [ + "Institut Scientifique de Rabat" + ], + "acronyms": [ + "ISR" + ], + "status": "active", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Institut_scientifique_de_Rabat", + "labels": [ + { + "label": "المعهد العلمي الرباط", + "iso639": "ar" + } + ], + "country": { + "country_name": "Morocco", + "country_code": "MA" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q3152518", + "all": [ + "Q3152518" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/03ddvws43.json b/v1.0.1/03ddvws43.json new file mode 100644 index 000000000..2269dd17c --- /dev/null +++ b/v1.0.1/03ddvws43.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03ddvws43", + "name": "Unichem Laboratories", + "email_address": null, + "ip_addresses": [], + "established": 1944, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.07283, + "lng": 72.88261, + "state": null, + "state_code": null, + "city": "Mumbai", + "geonames_city": { + "id": 1275339, + "city": "Mumbai", + "geonames_admin1": { + "name": "Maharashtra", + "id": 1264418, + "ascii_name": "Maharashtra", + "code": "IN.16" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1269750 + } + ], + "links": [ + "https://www.unichemlabs.com/" + ], + "aliases": [ + "Acasia", + "Unichem Europe", + "Unichem USA" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Unichem_Laboratories", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0502 9777", + "all": [ + "0000 0004 0502 9777" + ] + }, + "Wikidata": { + "preferred": "Q7884723", + "all": [ + "Q7884723" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/03dgx1q54.json b/v1.0.1/03dgx1q54.json new file mode 100644 index 000000000..1a5f9eeb0 --- /dev/null +++ b/v1.0.1/03dgx1q54.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03dgx1q54", + "name": "National MS Center Melsbroek", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.91851, + "lng": 4.50989, + "state": null, + "state_code": null, + "city": "Steenokkerzeel", + "geonames_city": { + "id": 2786124, + "city": "Steenokkerzeel", + "geonames_admin1": { + "name": "Flanders", + "id": 3337388, + "ascii_name": "Flanders", + "code": "BE.VLG" + }, + "geonames_admin2": { + "name": "Flemish Brabant Province", + "id": 3333250, + "ascii_name": "Flemish Brabant Province", + "code": "BE.VLG.VBR" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2802361 + } + ], + "links": [ + "https://mscenter.be/nl" + ], + "aliases": [ + "MS Center" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://nl.wikipedia.org/wiki/Nationaal_Multiple_Sclerose_Centrum", + "labels": [ + { + "label": "MS-Kliniek", + "iso639": "nl" + }, + { + "label": "Nationaal Multiple Sclerose Centrum", + "iso639": "nl" + } + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q2356005", + "all": [ + "Q2356005" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/03e7mhc87.json b/v1.0.1/03e7mhc87.json new file mode 100644 index 000000000..15dbbce46 --- /dev/null +++ b/v1.0.1/03e7mhc87.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/03e7mhc87", + "name": "Kansas City National Security Campus", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "United States Department of Energy", + "type": "Parent", + "id": "https://ror.org/01bj3aw27" + }, + { + "label": "National Nuclear Security Administration", + "type": "Related", + "id": "https://ror.org/03sk1we31" + }, + { + "label": "Honeywell (United States)", + "type": "Related", + "id": "https://ror.org/02t71h845" + } + ], + "addresses": [ + { + "lat": 39.09973, + "lng": -94.57857, + "state": null, + "state_code": null, + "city": "Kansas City", + "geonames_city": { + "id": 4393217, + "city": "Kansas City", + "geonames_admin1": { + "name": "Missouri", + "id": 4398678, + "ascii_name": "Missouri", + "code": "US.MO" + }, + "geonames_admin2": { + "name": "Jackson", + "id": 4392183, + "ascii_name": "Jackson", + "code": "US.MO.095" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://kcnsc.doe.gov/" + ], + "aliases": [ + "Kansas City Plant" + ], + "acronyms": [ + "KCNSC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Kansas_City_Plant", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q6364819", + "all": [ + "Q6364819" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/03fktew82.json b/v1.0.1/03fktew82.json new file mode 100644 index 000000000..054c4fa52 --- /dev/null +++ b/v1.0.1/03fktew82.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/03fktew82", + "name": "Institute of Social Sciences and Humanities, Skopje", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.99646, + "lng": 21.43141, + "state": null, + "state_code": null, + "city": "Skopje", + "geonames_city": { + "id": 785842, + "city": "Skopje", + "geonames_admin1": { + "name": "Grad Skopje", + "id": 11398357, + "ascii_name": "Grad Skopje", + "code": "MK.F6" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 718075 + } + ], + "links": [ + "https://www.isshs.edu.mk/" + ], + "aliases": [], + "acronyms": [ + "ISSHS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Институтот за општествени и хуманистички науки – Скопје", + "iso639": "mk" + } + ], + "country": { + "country_name": "North Macedonia", + "country_code": "MK" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q74435207", + "all": [ + "Q74435207" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/03pep4w33.json b/v1.0.1/03pep4w33.json new file mode 100644 index 000000000..eaba1d252 --- /dev/null +++ b/v1.0.1/03pep4w33.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/03pep4w33", + "name": "The Intergovernmental Committee on Surveying and Mapping", + "email_address": null, + "ip_addresses": [], + "established": 1988, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -35.28346, + "lng": 149.12807, + "state": null, + "state_code": null, + "city": "Canberra", + "geonames_city": { + "id": 2172517, + "city": "Canberra", + "geonames_admin1": { + "name": "Australian Capital Territory", + "id": 2177478, + "ascii_name": "Australian Capital Territory", + "code": "AU.01" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "https://www.icsm.gov.au/" + ], + "aliases": [], + "acronyms": [ + "ICSM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/03q3ecb97.json b/v1.0.1/03q3ecb97.json new file mode 100644 index 000000000..bdf5a3553 --- /dev/null +++ b/v1.0.1/03q3ecb97.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/03q3ecb97", + "name": "Coral Publications", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 24.8608, + "lng": 67.0104, + "state": null, + "state_code": null, + "city": "Karachi", + "geonames_city": { + "id": 1174872, + "city": "Karachi", + "geonames_admin1": { + "name": "Sindh", + "id": 1164807, + "ascii_name": "Sindh", + "code": "PK.05" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1168579 + } + ], + "links": [ + "https://www.coralpublications.org/" + ], + "aliases": [], + "acronyms": [ + "CORAL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Pakistan", + "country_code": "PK" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/03q60bw50.json b/v1.0.1/03q60bw50.json new file mode 100644 index 000000000..049dc6c42 --- /dev/null +++ b/v1.0.1/03q60bw50.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/03q60bw50", + "name": "Centro Nacional de Investigaciones de Café", + "email_address": null, + "ip_addresses": [], + "established": 1938, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 5.06889, + "lng": -75.51738, + "state": null, + "state_code": null, + "city": "Manizales", + "geonames_city": { + "id": 3675443, + "city": "Manizales", + "geonames_admin1": { + "name": "Caldas", + "id": 3687951, + "ascii_name": "Caldas", + "code": "CO.37" + }, + "geonames_admin2": { + "name": "Manizales", + "id": 3675444, + "ascii_name": "Manizales", + "code": "CO.37.17001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3686110 + } + ], + "links": [ + "https://www.cenicafe.org/" + ], + "aliases": [ + "Cenicafé" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Centro_Nacional_de_Investigaciones_de_Caf%C3%A9", + "labels": [ + { + "label": "National Coffee Research Center", + "iso639": "en" + } + ], + "country": { + "country_name": "Colombia", + "country_code": "CO" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2294 2697", + "all": [ + "0000 0001 2294 2697" + ] + }, + "FundRef": { + "preferred": "100019597", + "all": [ + "100019597" + ] + }, + "Wikidata": { + "preferred": "Q21511954", + "all": [ + "Q21511954" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/03qhydd02.json b/v1.0.1/03qhydd02.json new file mode 100644 index 000000000..2ced3ea3c --- /dev/null +++ b/v1.0.1/03qhydd02.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/03qhydd02", + "name": "North Carolina Geological Survey", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "North Carolina Department of Environment and Natural Resources", + "type": "Parent", + "id": "https://ror.org/01ftg8r37" + } + ], + "addresses": [ + { + "lat": 35.7721, + "lng": -78.63861, + "state": null, + "state_code": null, + "city": "Raleigh", + "geonames_city": { + "id": 4487042, + "city": "Raleigh", + "geonames_admin1": { + "name": "North Carolina", + "id": 4482348, + "ascii_name": "North Carolina", + "code": "US.NC" + }, + "geonames_admin2": { + "name": "Wake", + "id": 4497286, + "ascii_name": "Wake", + "code": "US.NC.183" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://deq.nc.gov/about/divisions/energy-mineral-land-resources/north-carolina-geological-survey" + ], + "aliases": [ + "NC Geological Survey" + ], + "acronyms": [ + "NCGS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/03s4kfm57.json b/v1.0.1/03s4kfm57.json new file mode 100644 index 000000000..e3845c89c --- /dev/null +++ b/v1.0.1/03s4kfm57.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/03s4kfm57", + "name": "High Tropics Foundation", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 4.60971, + "lng": -74.08175, + "state": null, + "state_code": null, + "city": "Bogotá", + "geonames_city": { + "id": 3688689, + "city": "Bogotá", + "geonames_admin1": { + "name": "Bogota D.C.", + "id": 3688685, + "ascii_name": "Bogota D.C.", + "code": "CO.34" + }, + "geonames_admin2": { + "name": "Bogotá D.C.", + "id": 9609540, + "ascii_name": "Bogotá D.C.", + "code": "CO.34.11001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3686110 + } + ], + "links": [ + "http://www.tropicoalto.ong/" + ], + "aliases": [ + "Fundación Trópico Alto" + ], + "acronyms": [ + "FTA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Colombia", + "country_code": "CO" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/03t9kaa43.json b/v1.0.1/03t9kaa43.json new file mode 100644 index 000000000..121723bd0 --- /dev/null +++ b/v1.0.1/03t9kaa43.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/03t9kaa43", + "name": "Instituto Nacional de Defensa de la Competencia y de la Protección de la Propiedad Intelectual", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -12.04318, + "lng": -77.02824, + "state": null, + "state_code": null, + "city": "Lima", + "geonames_city": { + "id": 3936456, + "city": "Lima", + "geonames_admin1": { + "name": "Lima", + "id": 3936451, + "ascii_name": "Lima", + "code": "PE.LMA" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "https://www.indecopi.gob.pe/inicio" + ], + "aliases": [], + "acronyms": [ + "INDECOPI" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Instituto_Nacional_de_Defensa_de_la_Competencia_y_de_la_Protección_de_la_Propiedad_Intelectual", + "labels": [ + { + "label": "National Institute for the Defense of Competition and the Protection of Intellectual Property", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6335 2396", + "all": [ + "0000 0004 6335 2396" + ] + }, + "Wikidata": { + "preferred": "Q5917502", + "all": [ + "Q5917502" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/03tvpbp09.json b/v1.0.1/03tvpbp09.json new file mode 100644 index 000000000..f38672504 --- /dev/null +++ b/v1.0.1/03tvpbp09.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/03tvpbp09", + "name": "Ministry of Science, Technology, Knowledge and Innovation", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -33.45694, + "lng": -70.64827, + "state": null, + "state_code": null, + "city": "Santiago", + "geonames_city": { + "id": 3871336, + "city": "Santiago", + "geonames_admin1": { + "name": "Santiago Metropolitan", + "id": 3873544, + "ascii_name": "Santiago Metropolitan", + "code": "CL.12" + }, + "geonames_admin2": { + "name": "Provincia de Santiago", + "id": 3871332, + "ascii_name": "Provincia de Santiago", + "code": "CL.12.131" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3895114 + } + ], + "links": [ + "http://www.minciencia.gob.cl/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Ministerio_de_Ciencia%2C_Tecnolog%C3%ADa%2C_Conocimiento_e_Innovaci%C3%B3n_de_Chile", + "labels": [ + { + "label": "Ministerio de Ciencia, Tecnología, Conocimiento e Innovación", + "iso639": "es" + } + ], + "country": { + "country_name": "Chile", + "country_code": "CL" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q56197811", + "all": [ + "Q56197811" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/03vb2cr34.json b/v1.0.1/03vb2cr34.json new file mode 100644 index 000000000..4850c5865 --- /dev/null +++ b/v1.0.1/03vb2cr34.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/03vb2cr34", + "name": "4Science", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.46427, + "lng": 9.18951, + "state": null, + "state_code": null, + "city": "Milan", + "geonames_city": { + "id": 3173435, + "city": "Milan", + "geonames_admin1": { + "name": "Lombardy", + "id": 3174618, + "ascii_name": "Lombardy", + "code": "IT.09" + }, + "geonames_admin2": { + "name": "Milan", + "id": 3173434, + "ascii_name": "Milan", + "code": "IT.09.MI" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3175395 + } + ], + "links": [ + "https://www.4science.it/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q65557960", + "all": [ + "Q65557960" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/03vtv7935.json b/v1.0.1/03vtv7935.json new file mode 100644 index 000000000..9ba06e1e5 --- /dev/null +++ b/v1.0.1/03vtv7935.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/03vtv7935", + "name": "Virginia Department of Energy Geology and Mineral Resources Program", + "email_address": null, + "ip_addresses": [], + "established": 1835, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.02931, + "lng": -78.47668, + "state": null, + "state_code": null, + "city": "Charlottesville", + "geonames_city": { + "id": 4752031, + "city": "Charlottesville", + "geonames_admin1": { + "name": "Virginia", + "id": 6254928, + "ascii_name": "Virginia", + "code": "US.VA" + }, + "geonames_admin2": { + "name": "Charlottesville", + "id": 4752046, + "ascii_name": "Charlottesville", + "code": "US.VA.540" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.energy.virginia.gov/geology/geologymineralresources.shtml" + ], + "aliases": [ + "Virginia Division of Mineral Resources", + "Virginia Department of Mines, Minerals and Energy", + "Virginia Division of Geology and Mineral Resources" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0625 6830", + "all": [ + "0000 0001 0625 6830 " + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/03wfagk22.json b/v1.0.1/03wfagk22.json new file mode 100644 index 000000000..9bf645295 --- /dev/null +++ b/v1.0.1/03wfagk22.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/03wfagk22", + "name": "St. Lawrence Global Observatory", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Fisheries and Oceans Canada", + "type": "Related", + "id": "https://ror.org/02qa1x782" + }, + { + "label": "Université du Québec à Rimouski", + "type": "Related", + "id": "https://ror.org/049jtt335" + }, + { + "label": "Technopole Maritime du Québec", + "type": "Related", + "id": "https://ror.org/01ncvjw08" + }, + { + "label": "Centre de Recherche sur les Biotechnologies Marines", + "type": "Related", + "id": "https://ror.org/01aa78f69" + }, + { + "label": "Memorial University of Newfoundland", + "type": "Related", + "id": "https://ror.org/04haebc03" + }, + { + "label": "Université du Québec à Trois-Rivières", + "type": "Related", + "id": "https://ror.org/02xrw9r68" + }, + { + "label": "Shipping Federation of Canada", + "type": "Related", + "id": "https://ror.org/0515hsf31" + }, + { + "label": "World Wildlife Fund Canada", + "type": "Related", + "id": "https://ror.org/020tdv696" + } + ], + "addresses": [ + { + "lat": 48.44879, + "lng": -68.52396, + "state": null, + "state_code": null, + "city": "Rimouski", + "geonames_city": { + "id": 6354895, + "city": "Rimouski", + "geonames_admin1": { + "name": "Quebec", + "id": 6115047, + "ascii_name": "Quebec", + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Bas-Saint-Laurent", + "id": 6691318, + "ascii_name": "Bas-Saint-Laurent", + "code": "CA.10.01" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "https://ogsl.ca/en/home-slgo/" + ], + "aliases": [], + "acronyms": [ + "SLGO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Observatoire Global du Saint-Laurent (OGSL)", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/03xaryf14.json b/v1.0.1/03xaryf14.json new file mode 100644 index 000000000..4ec957fec --- /dev/null +++ b/v1.0.1/03xaryf14.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/03xaryf14", + "name": "Center for Scientific Collaboration and Community Engagement", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.80437, + "lng": -122.2708, + "state": null, + "state_code": null, + "city": "Oakland", + "geonames_city": { + "id": 5378538, + "city": "Oakland", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Alameda", + "id": 5322745, + "ascii_name": "Alameda", + "code": "US.CA.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.cscce.org/" + ], + "aliases": [], + "acronyms": [ + "CSCCE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/03yef2k78.json b/v1.0.1/03yef2k78.json new file mode 100644 index 000000000..661d2e1cb --- /dev/null +++ b/v1.0.1/03yef2k78.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/03yef2k78", + "name": "Universidad Nacional Autónoma de Tayacaja Daniel Hernández Morillo", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -12.25, + "lng": -74.75, + "state": null, + "state_code": null, + "city": "Provincia de Tayacaja", + "geonames_city": { + "id": 3927670, + "city": "Provincia de Tayacaja", + "geonames_admin1": { + "name": "Huancavelica", + "id": 3939467, + "ascii_name": "Huancavelica", + "code": "PE.09" + }, + "geonames_admin2": { + "name": "Provincia de Tayacaja", + "id": 3927670, + "ascii_name": "Provincia de Tayacaja", + "code": "PE.09.0907" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "https://unat.edu.pe/" + ], + "aliases": [], + "acronyms": [ + "UNAT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Autonomous University of Tayacaja Daniel Hernández Morillo", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6470 1041", + "all": [ + "0000 0004 6470 1041" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/03yhwzd24.json b/v1.0.1/03yhwzd24.json new file mode 100644 index 000000000..807fe2c46 --- /dev/null +++ b/v1.0.1/03yhwzd24.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/03yhwzd24", + "name": "Instituto Nacional de Salud del Niño-San Borja", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": -12.04318, + "lng": -77.02824, + "state": null, + "state_code": null, + "city": "Lima", + "geonames_city": { + "id": 3936456, + "city": "Lima", + "geonames_admin1": { + "name": "Lima", + "id": 3936451, + "ascii_name": "Lima", + "code": "PE.LMA" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "http://www.insnsb.gob.pe/" + ], + "aliases": [ + "INSN-San Borja" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Institute of Child Health-San Borja", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7744 3088", + "all": [ + "0000 0004 7744 3088" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/041anjn10.json b/v1.0.1/041anjn10.json new file mode 100644 index 000000000..b6dfcada2 --- /dev/null +++ b/v1.0.1/041anjn10.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/041anjn10", + "name": "Community of Physics", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.7104, + "lng": 90.40744, + "state": null, + "state_code": null, + "city": "Dhaka", + "geonames_city": { + "id": 1185241, + "city": "Dhaka", + "geonames_admin1": { + "name": "Dhaka", + "id": 1337179, + "ascii_name": "Dhaka", + "code": "BD.81" + }, + "geonames_admin2": { + "name": "Dhaka", + "id": 1337178, + "ascii_name": "Dhaka", + "code": "BD.81.3026" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1210997 + } + ], + "links": [ + "https://www.cpbd.ac/" + ], + "aliases": [], + "acronyms": [ + "CP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q51077272", + "all": [ + "Q51077272" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/042mm0k03.json b/v1.0.1/042mm0k03.json new file mode 100644 index 000000000..39d1ca38d --- /dev/null +++ b/v1.0.1/042mm0k03.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/042mm0k03", + "name": "Microscopy Australia", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": -33.86785, + "lng": 151.20732, + "state": null, + "state_code": null, + "city": "Sydney", + "geonames_city": { + "id": 2147714, + "city": "Sydney", + "geonames_admin1": { + "name": "New South Wales", + "id": 2155400, + "ascii_name": "New South Wales", + "code": "AU.02" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "https://micro.org.au/" + ], + "aliases": [], + "acronyms": [ + "MicroAU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/043ncc240.json b/v1.0.1/043ncc240.json new file mode 100644 index 000000000..d2a4980ad --- /dev/null +++ b/v1.0.1/043ncc240.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/043ncc240", + "name": "Escuela de Postgrado Gěrens", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -12.04318, + "lng": -77.02824, + "state": null, + "state_code": null, + "city": "Lima", + "geonames_city": { + "id": 3936456, + "city": "Lima", + "geonames_admin1": { + "name": "Lima", + "id": 3936451, + "ascii_name": "Lima", + "code": "PE.LMA" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "https://gerens.pe/" + ], + "aliases": [], + "acronyms": [ + "GERENS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Gerens Graduate School", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6064 9493", + "all": [ + "0000 0004 6064 9493" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/044r01e44.json b/v1.0.1/044r01e44.json new file mode 100644 index 000000000..c1ad258a4 --- /dev/null +++ b/v1.0.1/044r01e44.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/044r01e44", + "name": "Japan Geoscience Union", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "name": "Tokyo", + "id": 1850144, + "ascii_name": "Tokyo", + "code": "JP.40" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "https://www.jpgu.org/" + ], + "aliases": [], + "acronyms": [ + "JpGU" + ], + "status": "active", + "wikipedia_url": "https://ja.wikipedia.org/wiki/%E6%97%A5%E6%9C%AC%E5%9C%B0%E7%90%83%E6%83%91%E6%98%9F%E7%A7%91%E5%AD%A6%E9%80%A3%E5%90%88", + "labels": [ + { + "label": "日本地球惑星科学連合", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q11507752", + "all": [ + "Q11507752" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/048555y32.json b/v1.0.1/048555y32.json new file mode 100644 index 000000000..f23837a9b --- /dev/null +++ b/v1.0.1/048555y32.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/048555y32", + "name": "Biological Museum, Lund University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Lund University", + "type": "Parent", + "id": "https://ror.org/012a77v79" + } + ], + "addresses": [ + { + "lat": 55.70584, + "lng": 13.19321, + "state": null, + "state_code": null, + "city": "Lund", + "geonames_city": { + "id": 2693678, + "city": "Lund", + "geonames_admin1": { + "name": "Skåne", + "id": 3337385, + "ascii_name": "Skåne", + "code": "SE.27" + }, + "geonames_admin2": { + "name": "Lund Municipality", + "id": 2693555, + "ascii_name": "Lund Municipality", + "code": "SE.27.1281" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2661886 + } + ], + "links": [ + "https://www.biology.lu.se/biological-museum" + ], + "aliases": [], + "acronyms": [ + "LD", + "MZLU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Biologiska Museet, Lunds universitet", + "iso639": "sv" + } + ], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q105086168", + "all": [ + "Q105086168" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/0488nj033.json b/v1.0.1/0488nj033.json new file mode 100644 index 000000000..74f752f4e --- /dev/null +++ b/v1.0.1/0488nj033.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/0488nj033", + "name": "Natural History Museum Maastricht", + "email_address": null, + "ip_addresses": [], + "established": 1912, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.85, + "lng": 5.7, + "state": null, + "state_code": null, + "city": "Gemeente Maastricht", + "geonames_city": { + "id": 2751282, + "city": "Gemeente Maastricht", + "geonames_admin1": { + "name": "Limburg", + "id": 2751596, + "ascii_name": "Limburg", + "code": "NL.05" + }, + "geonames_admin2": { + "name": "Gemeente Maastricht", + "id": 2751282, + "ascii_name": "Gemeente Maastricht", + "code": "NL.05.0935" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2750405 + } + ], + "links": [ + "https://www.nhmmaastricht.nl/" + ], + "aliases": [], + "acronyms": [ + "NHMM", + "NHME", + "MAA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Maastricht_Natural_History_Museum", + "labels": [ + { + "label": "Natuurhistorisch Museum Maastricht", + "iso639": "nl" + } + ], + "country": { + "country_name": "Netherlands", + "country_code": "NL" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0000 8499 7610", + "all": [ + "0000 0000 8499 7610" + ] + }, + "Wikidata": { + "preferred": "Q2412016", + "all": [ + "Q2412016" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/04bk2qw80.json b/v1.0.1/04bk2qw80.json new file mode 100644 index 000000000..be408a921 --- /dev/null +++ b/v1.0.1/04bk2qw80.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/04bk2qw80", + "name": "Instituto Peruano de Energía Nuclear", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -12.04318, + "lng": -77.02824, + "state": null, + "state_code": null, + "city": "Lima", + "geonames_city": { + "id": 3936456, + "city": "Lima", + "geonames_admin1": { + "name": "Lima", + "id": 3936451, + "ascii_name": "Lima", + "code": "PE.LMA" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "http://www.ipen.gob.pe/" + ], + "aliases": [], + "acronyms": [ + "IPEN" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Instituto_Peruano_de_Energ%C3%ADa_Nuclear", + "labels": [ + { + "label": "Peruvian Institute of Nuclear Energy", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0513 4305", + "all": [ + "0000 0001 0513 4305" + ] + }, + "Wikidata": { + "preferred": "Q12176521", + "all": [ + "Q12176521" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/04df9ks57.json b/v1.0.1/04df9ks57.json new file mode 100644 index 000000000..0ba2a6d80 --- /dev/null +++ b/v1.0.1/04df9ks57.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/04df9ks57", + "name": "Universidad Nacional Intercultural \"Fabiola Salazar LeguÍa\" de Bagua", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -5.09006, + "lng": -78.39972, + "state": null, + "state_code": null, + "city": "Provincia de Bagua", + "geonames_city": { + "id": 3699485, + "city": "Provincia de Bagua", + "geonames_admin1": { + "name": "Amazonas", + "id": 3699699, + "ascii_name": "Amazonas", + "code": "PE.01" + }, + "geonames_admin2": { + "name": "Provincia de Bagua", + "id": 3699485, + "ascii_name": "Provincia de Bagua", + "code": "PE.01.0102" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "http://www.unibagua.edu.pe/" + ], + "aliases": [], + "acronyms": [ + "UNIB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Intercultural University \"Fabiola Salazar LeguÍa\" of Bagua", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q57987734", + "all": [ + "Q57987734" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/04efm0253.json b/v1.0.1/04efm0253.json new file mode 100644 index 000000000..c829ee29f --- /dev/null +++ b/v1.0.1/04efm0253.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/04efm0253", + "name": "Technological University of the Shannon: Midlands Midwest", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Athlone Institute of Technology", + "type": "Related", + "id": "https://ror.org/02dyxwz31" + } + ], + "addresses": [ + { + "lat": 53.42278, + "lng": -7.93722, + "state": null, + "state_code": null, + "city": "Athlone", + "geonames_city": { + "id": 3313472, + "city": "Athlone", + "geonames_admin1": { + "name": "Leinster", + "id": 7521314, + "ascii_name": "Leinster", + "code": "IE.L" + }, + "geonames_admin2": { + "name": "County Westmeath", + "id": 2960972, + "ascii_name": "County Westmeath", + "code": "IE.L.29" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2963597 + } + ], + "links": [ + "https://tus.ie/" + ], + "aliases": [], + "acronyms": [ + "TUS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Technological_University_of_the_Shannon%3A_Midlands_Midwest", + "labels": [ + { + "label": "Ollscoil Teicneolaíochta na Sionainne: Lár Tíre Iarthar Láir", + "iso639": "ga" + } + ], + "country": { + "country_name": "Ireland", + "country_code": "IE" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q106646552", + "all": [ + "Q106646552" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/04f19vj70.json b/v1.0.1/04f19vj70.json new file mode 100644 index 000000000..5b8872336 --- /dev/null +++ b/v1.0.1/04f19vj70.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/04f19vj70", + "name": "Patient-Led Research Collaborative", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "name": "Washington, D.C.", + "id": 4138106, + "ascii_name": "Washington, D.C.", + "code": "US.DC" + }, + "geonames_admin2": { + "name": "Washington", + "id": 4140987, + "ascii_name": "Washington", + "code": "US.DC.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://patientresearchcovid19.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/04gcece27.json b/v1.0.1/04gcece27.json new file mode 100644 index 000000000..163d5392d --- /dev/null +++ b/v1.0.1/04gcece27.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/04gcece27", + "name": "Natural History Museum of the Lesvos Petrified Forest", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.21161, + "lng": 25.85263, + "state": null, + "state_code": null, + "city": "Sigri", + "geonames_city": { + "id": 253919, + "city": "Sigri", + "geonames_admin1": { + "name": "North Aegean", + "id": 6697806, + "ascii_name": "North Aegean", + "code": "GR.ESYE41" + }, + "geonames_admin2": { + "name": "Lesbos", + "id": 258465, + "ascii_name": "Lesbos", + "code": "GR.ESYE41.51" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 390903 + } + ], + "links": [ + "https://www.lesvosmuseum.gr/" + ], + "aliases": [], + "acronyms": [ + "NHMLPF" + ], + "status": "active", + "wikipedia_url": "https://el.wikipedia.org/wiki/%CE%9C%CE%BF%CF%85%CF%83%CE%B5%CE%AF%CE%BF_%CE%A6%CF%85%CF%83%CE%B9%CE%BA%CE%AE%CF%82_%CE%99%CF%83%CF%84%CE%BF%CF%81%CE%AF%CE%B1%CF%82_%CE%91%CF%80%CE%BF%CE%BB%CE%B9%CE%B8%CF%89%CE%BC%CE%AD%CE%BD%CE%BF%CF%85_%CE%94%CE%AC%CF%83%CE%BF%CF%85%CF%82_%CE%9B%CE%AD%CF%83%CE%B2%CE%BF%CF%85", + "labels": [ + { + "label": "Μουσείο Φυσικής Ιστορίας Απολιθωμένου Δάσους Λέσβου", + "iso639": "el" + } + ], + "country": { + "country_name": "Greece", + "country_code": "GR" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q6980528", + "all": [ + "Q6980528" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/04j4kad11.json b/v1.0.1/04j4kad11.json new file mode 100644 index 000000000..2ac77579e --- /dev/null +++ b/v1.0.1/04j4kad11.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/04j4kad11", + "name": "Centre for Environmental Data Analysis", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Natural Environment Research Council", + "type": "Related", + "id": "https://ror.org/02b5d8509" + } + ], + "addresses": [ + { + "lat": 53.41667, + "lng": -0.96667, + "state": null, + "state_code": null, + "city": "Harwell", + "geonames_city": { + "id": 2647384, + "city": "Harwell", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Nottinghamshire", + "id": 2641169, + "ascii_name": "Nottinghamshire", + "code": "GB.ENG.J9" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "https://www.ceda.ac.uk/" + ], + "aliases": [], + "acronyms": [ + "CEDA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Centre_for_Environmental_Data_Analysis", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q48815787", + "all": [ + "Q48815787" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/04mmwq306.json b/v1.0.1/04mmwq306.json new file mode 100644 index 000000000..0daa0a0e8 --- /dev/null +++ b/v1.0.1/04mmwq306.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/04mmwq306", + "name": "Trabzon University", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.005, + "lng": 39.72694, + "state": null, + "state_code": null, + "city": "Trabzon", + "geonames_city": { + "id": 738648, + "city": "Trabzon", + "geonames_admin1": { + "name": "Trabzon", + "id": 738647, + "ascii_name": "Trabzon", + "code": "TR.61" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 298795 + } + ], + "links": [ + "http://www.trabzon.edu.tr/" + ], + "aliases": [], + "acronyms": [ + "TRU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Trabzon_University", + "labels": [ + { + "label": "Trabzon Üniversitesi", + "iso639": "tr" + } + ], + "country": { + "country_name": "Turkey", + "country_code": "TR" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7889 928X", + "all": [ + "0000 0004 7889 928X" + ] + }, + "Wikidata": { + "preferred": "Q52162277", + "all": [ + "Q52162277" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/04p8xrf95.json b/v1.0.1/04p8xrf95.json new file mode 100644 index 000000000..54f5512bb --- /dev/null +++ b/v1.0.1/04p8xrf95.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/04p8xrf95", + "name": "Tetiaroa Society", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": -17.025, + "lng": -149.55833, + "state": null, + "state_code": null, + "city": "Tetiaroa", + "geonames_city": { + "id": 4033390, + "city": "Tetiaroa", + "geonames_admin1": { + "name": null, + "ascii_name": null, + "id": null, + "code": "PF.00" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 4030656 + } + ], + "links": [ + "https://www.tetiaroasociety.org/" + ], + "aliases": [], + "acronyms": [ + "TS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "French Polynesia", + "country_code": "PF" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0005 0267 6108", + "all": [ + "0000 0005 0267 6108" + ] + }, + "FundRef": { + "preferred": "100016851", + "all": [ + "100016851" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/04pd1hv08.json b/v1.0.1/04pd1hv08.json new file mode 100644 index 000000000..cc322f749 --- /dev/null +++ b/v1.0.1/04pd1hv08.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/04pd1hv08", + "name": "Ukrainian Research Institute of Design and Ergonomics of the National Aviation University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "National Aviation University", + "type": "Parent", + "id": "https://ror.org/01f74x078" + } + ], + "addresses": [ + { + "lat": 50.45466, + "lng": 30.5238, + "state": null, + "state_code": null, + "city": "Kyiv", + "geonames_city": { + "id": 703448, + "city": "Kyiv", + "geonames_admin1": { + "name": "Kyiv City", + "id": 703447, + "ascii_name": "Kyiv City", + "code": "UA.12" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 690791 + } + ], + "links": [ + "http://ndi-design.nau.edu.ua" + ], + "aliases": [], + "acronyms": [ + "UkrRIED NAU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "УкрНДІ ДЕ НАУ", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/04qzdz471.json b/v1.0.1/04qzdz471.json new file mode 100644 index 000000000..cd8c6c735 --- /dev/null +++ b/v1.0.1/04qzdz471.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/04qzdz471", + "name": "Centro de diseño, cine y televisión", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.42847, + "lng": -99.12766, + "state": null, + "state_code": null, + "city": "Mexico City", + "geonames_city": { + "id": 3530597, + "city": "Mexico City", + "geonames_admin1": { + "name": "Mexico City", + "id": 3527646, + "ascii_name": "Mexico City", + "code": "MX.09" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3996063 + } + ], + "links": [ + "http://www3.centro.edu.mx/" + ], + "aliases": [], + "acronyms": [ + "CENTRO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q52660807", + "all": [ + "Q52660807" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/04t667177.json b/v1.0.1/04t667177.json new file mode 100644 index 000000000..eebdc7df7 --- /dev/null +++ b/v1.0.1/04t667177.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/04t667177", + "name": "Nordre Øyeren Bird Observatory", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 59.92626, + "lng": 11.06527, + "state": null, + "state_code": null, + "city": "Rælingen", + "geonames_city": { + "id": 3142561, + "city": "Rælingen", + "geonames_admin1": { + "name": "Viken", + "id": 12110595, + "ascii_name": "Viken", + "code": "NO.30" + }, + "geonames_admin2": { + "name": "Rælingen", + "id": 3142561, + "ascii_name": "Rælingen", + "code": "NO.30.3027" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3144096 + } + ], + "links": [ + "http://www.noef.no/" + ], + "aliases": [], + "acronyms": [ + "NØF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Nordre Øyeren Fuglestasjon", + "iso639": "no" + } + ], + "country": { + "country_name": "Norway", + "country_code": "NO" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q106653361", + "all": [ + "Q106653361" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/04tmban63.json b/v1.0.1/04tmban63.json new file mode 100644 index 000000000..d97059aee --- /dev/null +++ b/v1.0.1/04tmban63.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/04tmban63", + "name": "German Institute for Development Evaluation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.87894, + "lng": 7.12292, + "state": null, + "state_code": null, + "city": "Cologne Bonn Airport", + "geonames_city": { + "id": 6296510, + "city": "Cologne Bonn Airport", + "geonames_admin1": { + "name": "North Rhine-Westphalia", + "id": 2861876, + "ascii_name": "North Rhine-Westphalia", + "code": "DE.07" + }, + "geonames_admin2": { + "name": "Cologne District", + "id": 2886241, + "ascii_name": "Cologne District", + "code": "DE.07.053" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.deval.org/" + ], + "aliases": [], + "acronyms": [ + "DEval" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/04wmpkv79.json b/v1.0.1/04wmpkv79.json new file mode 100644 index 000000000..1fd5af0af --- /dev/null +++ b/v1.0.1/04wmpkv79.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/04wmpkv79", + "name": "Universidad Nacional Intercultural de Quillabamba", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -12, + "lng": -73, + "state": null, + "state_code": null, + "city": "Provincia de La Convención", + "geonames_city": { + "id": 3937248, + "city": "Provincia de La Convención", + "geonames_admin1": { + "name": "Cusco", + "id": 3941583, + "ascii_name": "Cusco", + "code": "PE.08" + }, + "geonames_admin2": { + "name": "Provincia de La Convención", + "id": 3937248, + "ascii_name": "Provincia de La Convención", + "code": "PE.08.0809" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "http://www.uniq.edu.pe/" + ], + "aliases": [], + "acronyms": [ + "UNIQ" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Intercultural University of Quillabamba", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/04y2aw426.json b/v1.0.1/04y2aw426.json new file mode 100644 index 000000000..b1769b35e --- /dev/null +++ b/v1.0.1/04y2aw426.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/04y2aw426", + "name": "De Bastei", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.8425, + "lng": 5.85278, + "state": null, + "state_code": null, + "city": "Nijmegen", + "geonames_city": { + "id": 2750053, + "city": "Nijmegen", + "geonames_admin1": { + "name": "Gelderland", + "id": 2755634, + "ascii_name": "Gelderland", + "code": "NL.03" + }, + "geonames_admin2": { + "name": "Gemeente Nijmegen", + "id": 2750052, + "ascii_name": "Gemeente Nijmegen", + "code": "NL.03.0268" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2750405 + } + ], + "links": [ + "https://www.debastei.nl/" + ], + "aliases": [ + "Natuurmuseum Nijmegen" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://nl.wikipedia.org/wiki/De_Bastei", + "labels": [], + "country": { + "country_name": "Netherlands", + "country_code": "NL" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0000 8772 9208", + "all": [ + "0000 0000 8772 9208" + ] + }, + "Wikidata": { + "preferred": "Q55108539", + "all": [ + "Q55108539" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/04yy4tq26.json b/v1.0.1/04yy4tq26.json new file mode 100644 index 000000000..6919e62d4 --- /dev/null +++ b/v1.0.1/04yy4tq26.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/04yy4tq26", + "name": "Institute of Radio and Information Systems (IRIS)", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.20849, + "lng": 16.37208, + "state": null, + "state_code": null, + "city": "Vienna", + "geonames_city": { + "id": 2761369, + "city": "Vienna", + "geonames_admin1": { + "name": "Vienna", + "id": 2761367, + "ascii_name": "Vienna", + "code": "AT.09" + }, + "geonames_admin2": { + "name": "Vienna", + "id": 2761333, + "ascii_name": "Vienna", + "code": "AT.09.900" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2782113 + } + ], + "links": [ + "http://media-publisher.eu/" + ], + "aliases": [], + "acronyms": [ + "IRIS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut für Radio- und Informationssysteme – IRIS", + "iso639": "de" + } + ], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0005 0593 7764", + "all": [ + "0000 0005 0593 7764" + ] + }, + "Wikidata": { + "preferred": "Q110584472", + "all": [ + "Q110584472" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/04zsc3j83.json b/v1.0.1/04zsc3j83.json new file mode 100644 index 000000000..24a0eb6a3 --- /dev/null +++ b/v1.0.1/04zsc3j83.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/04zsc3j83", + "name": "Ministry of Culture and Tourism", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.91987, + "lng": 32.85427, + "state": null, + "state_code": null, + "city": "Ankara", + "geonames_city": { + "id": 323786, + "city": "Ankara", + "geonames_admin1": { + "name": "Ankara", + "id": 323784, + "ascii_name": "Ankara", + "code": "TR.68" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 298795 + } + ], + "links": [ + "https://www.ktb.gov.tr/" + ], + "aliases": [ + "Kültür ve Turizm Bakanlığı" + ], + "acronyms": [ + "KTB" + ], + "status": "active", + "wikipedia_url": "https://tr.wikipedia.org/wiki/T%C3%BCrkiye_Cumhuriyeti_K%C3%BClt%C3%BCr_ve_Turizm_Bakanl%C4%B1%C4%9F%C4%B1", + "labels": [ + { + "label": "Türkiye Cumhuriyeti Kültür ve Turizm Bakanlığı", + "iso639": "tr" + }, + { + "label": "T.C. Kültür ve Turizm Bakanlığı", + "iso639": "tr" + } + ], + "country": { + "country_name": "Turkey", + "country_code": "TR" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 1781 5781", + "all": [ + "0000 0001 1781 5781" + ] + }, + "Wikidata": { + "preferred": "Q3136957", + "all": [ + "Q3136957" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/04zvj8c18.json b/v1.0.1/04zvj8c18.json new file mode 100644 index 000000000..1abae377a --- /dev/null +++ b/v1.0.1/04zvj8c18.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/04zvj8c18", + "name": "Research Centre of the Slovenian Academy of Sciences and Arts", + "email_address": null, + "ip_addresses": [], + "established": 1981, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Slovenian Academy of Sciences and Arts", + "type": "Related", + "id": "https://ror.org/04evj0n95" + } + ], + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "name": "Ljubljana", + "id": 3239318, + "ascii_name": "Ljubljana", + "code": "SI.61" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3190538 + } + ], + "links": [ + "https://www.zrc-sazu.si/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2176 5262", + "all": [ + "0000 0001 2176 5262" + ] + }, + "Wikidata": { + "preferred": "Q15977604", + "all": [ + "Q15977604" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/051zgrs14.json b/v1.0.1/051zgrs14.json new file mode 100644 index 000000000..9c5b44d95 --- /dev/null +++ b/v1.0.1/051zgrs14.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/051zgrs14", + "name": "Universidad Nacional de Jaén", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -5.70729, + "lng": -78.80785, + "state": null, + "state_code": null, + "city": "Jaén", + "geonames_city": { + "id": 3696150, + "city": "Jaén", + "geonames_admin1": { + "name": "Cajamarca", + "id": 3699087, + "ascii_name": "Cajamarca", + "code": "PE.06" + }, + "geonames_admin2": { + "name": "Provincia de Jaén", + "id": 3696149, + "ascii_name": "Provincia de Jaén", + "code": "PE.06.0608" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "https://www.unj.edu.pe/" + ], + "aliases": [], + "acronyms": [ + "UNJ" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Universidad_Nacional_de_Ja%C3%A9n", + "labels": [ + { + "label": "National University of Jaén", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6022 2932", + "all": [ + "0000 0004 6022 2932" + ] + }, + "Wikidata": { + "preferred": "Q27139631", + "all": [ + "Q27139631" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/0530qwm02.json b/v1.0.1/0530qwm02.json new file mode 100644 index 000000000..6d054593e --- /dev/null +++ b/v1.0.1/0530qwm02.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/0530qwm02", + "name": "Earth and Environment Institute of Strasbourg", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "National School for Water and Environmental Engineering", + "type": "Parent", + "id": "https://ror.org/02jhjzd11" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://ites.unistra.fr/" + ], + "aliases": [], + "acronyms": [ + "ITES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut Terre et Environnement de Strasbourg", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/053drm788.json b/v1.0.1/053drm788.json new file mode 100644 index 000000000..a2c85e791 --- /dev/null +++ b/v1.0.1/053drm788.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/053drm788", + "name": "Universidad Nacional de Cañete", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -12.75, + "lng": -76.33333, + "state": null, + "state_code": null, + "city": "Provincia de Cañete", + "geonames_city": { + "id": 3945799, + "city": "Provincia de Cañete", + "geonames_admin1": { + "name": "Lima region", + "id": 3936452, + "ascii_name": "Lima region", + "code": "PE.15" + }, + "geonames_admin2": { + "name": "Provincia de Cañete", + "id": 3945799, + "ascii_name": "Provincia de Cañete", + "code": "PE.15.1505" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "http://undc.edu.pe/" + ], + "aliases": [], + "acronyms": [ + "UNDC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National University of Cañete", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 4912 1196", + "all": [ + "0000 0004 4912 1196" + ] + }, + "Wikidata": { + "preferred": "Q57987212", + "all": [ + "Q57987212" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/0553k7b06.json b/v1.0.1/0553k7b06.json new file mode 100644 index 000000000..755dc1311 --- /dev/null +++ b/v1.0.1/0553k7b06.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/0553k7b06", + "name": "National Registry of Exonerations", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.27756, + "lng": -83.74088, + "state": null, + "state_code": null, + "city": "Ann Arbor", + "geonames_city": { + "id": 4984247, + "city": "Ann Arbor", + "geonames_admin1": { + "name": "Michigan", + "id": 5001836, + "ascii_name": "Michigan", + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Washtenaw", + "id": 5014120, + "ascii_name": "Washtenaw", + "code": "US.MI.161" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.law.umich.edu/special/exoneration/Pages/about.aspx" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Registry_of_Exonerations", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q6978009", + "all": [ + "Q6978009" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/057gst528.json b/v1.0.1/057gst528.json new file mode 100644 index 000000000..2a1bfeea9 --- /dev/null +++ b/v1.0.1/057gst528.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/057gst528", + "name": "Gen-info", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.81444, + "lng": 15.97798, + "state": null, + "state_code": null, + "city": "Zagreb", + "geonames_city": { + "id": 3186886, + "city": "Zagreb", + "geonames_admin1": { + "name": "City of Zagreb", + "id": 3337532, + "ascii_name": "City of Zagreb", + "code": "HR.21" + }, + "geonames_admin2": { + "name": "HR.21.3186885", + "id": null, + "ascii_name": "HR.21.3186885", + "code": "HR.21.3186885" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3202326 + } + ], + "links": [ + "http://www.gen-info.hr" + ], + "aliases": [], + "acronyms": [ + "GNFO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Croatia", + "country_code": "HR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/0588n4k65.json b/v1.0.1/0588n4k65.json new file mode 100644 index 000000000..b3cb407ee --- /dev/null +++ b/v1.0.1/0588n4k65.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/0588n4k65", + "name": "Invest in Open Infrastructure", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Code for Science & Society", + "type": "Related", + "id": "https://ror.org/01dmavx46" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://investinopen.org/" + ], + "aliases": [], + "acronyms": [ + "IOI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q75736561", + "all": [ + "Q75736561" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/05bgydj64.json b/v1.0.1/05bgydj64.json new file mode 100644 index 000000000..c940b9c23 --- /dev/null +++ b/v1.0.1/05bgydj64.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/05bgydj64", + "name": "Paveprime", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.33678, + "lng": -0.11201, + "state": null, + "state_code": null, + "city": "Purley", + "geonames_city": { + "id": 2639842, + "city": "Purley", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.paveprime.com" + ], + "aliases": [], + "acronyms": [ + "PPL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/05cynqq24.json b/v1.0.1/05cynqq24.json new file mode 100644 index 000000000..c55b40707 --- /dev/null +++ b/v1.0.1/05cynqq24.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/05cynqq24", + "name": "Deutsche Gesellschaft für Erziehungswissenschaft", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "name": "Berlin", + "id": 2950157, + "ascii_name": "Berlin", + "code": "DE.16" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.16.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.dgfe.de/" + ], + "aliases": [], + "acronyms": [ + "DGfE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 1092 7326", + "all": [ + "0000 0001 1092 7326" + ] + }, + "FundRef": { + "preferred": "501100008740", + "all": [ + "501100008740" + ] + }, + "Wikidata": { + "preferred": "Q1202838", + "all": [ + "Q1202838" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/05dxn4584.json b/v1.0.1/05dxn4584.json new file mode 100644 index 000000000..fa52c952a --- /dev/null +++ b/v1.0.1/05dxn4584.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/05dxn4584", + "name": "Universidad Autónoma del Perú", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -12.04318, + "lng": -77.02824, + "state": null, + "state_code": null, + "city": "Lima", + "geonames_city": { + "id": 3936456, + "city": "Lima", + "geonames_admin1": { + "name": "Lima", + "id": 3936451, + "ascii_name": "Lima", + "code": "PE.LMA" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "https://www.autonoma.pe/" + ], + "aliases": [], + "acronyms": [ + "UA" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Universidad_Aut%C3%B3noma_del_Per%C3%BA", + "labels": [ + { + "label": "Autonomous University of Peru", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 5928 7456", + "all": [ + "0000 0004 5928 7456" + ] + }, + "Wikidata": { + "preferred": "Q58057626", + "all": [ + "Q58057626" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/05gfswd81.json b/v1.0.1/05gfswd81.json new file mode 100644 index 000000000..7d088f4ed --- /dev/null +++ b/v1.0.1/05gfswd81.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/05gfswd81", + "name": "Institute for Research in Biomedicine", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 46.19278, + "lng": 9.01703, + "state": null, + "state_code": null, + "city": "Bellinzona", + "geonames_city": { + "id": 2661567, + "city": "Bellinzona", + "geonames_admin1": { + "name": "Ticino", + "id": 2658370, + "ascii_name": "Ticino", + "code": "CH.TI" + }, + "geonames_admin2": { + "name": "Bellinzona", + "id": 6458870, + "ascii_name": "Bellinzona", + "code": "CH.TI.2101" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.irb.usi.ch/" + ], + "aliases": [], + "acronyms": [ + "IRB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Istituto di Ricerca in Biomedicina", + "iso639": "es" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0509 2792", + "all": [ + "0000 0004 0509 2792" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/05jj7mn84.json b/v1.0.1/05jj7mn84.json new file mode 100644 index 000000000..fbfeb7503 --- /dev/null +++ b/v1.0.1/05jj7mn84.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/05jj7mn84", + "name": "Lexical Computing", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.82838, + "lng": -0.13947, + "state": null, + "state_code": null, + "city": "Brighton", + "geonames_city": { + "id": 2654710, + "city": "Brighton", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Brighton and Hove", + "id": 3333133, + "ascii_name": "Brighton and Hove", + "code": "GB.ENG.B6" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "https://www.lexicalcomputing.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q45025716", + "all": [ + "Q45025716" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/05mhn0t19.json b/v1.0.1/05mhn0t19.json new file mode 100644 index 000000000..e94f7ebed --- /dev/null +++ b/v1.0.1/05mhn0t19.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/05mhn0t19", + "name": "Panamanian Association for the Advancement of Science", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Secretaría Nacional de Ciencia, Tecnología e Innovación", + "type": "Related", + "id": "https://ror.org/03gat5t60" + }, + { + "label": "Instituto de Investigaciones Científicas y Servicios de Alta Tecnología", + "type": "Related", + "id": "https://ror.org/04ngphv84" + }, + { + "label": "Instituto Conmemorativo Gorgas de Estudios de la Salud", + "type": "Related", + "id": "https://ror.org/019ev8b82" + } + ], + "addresses": [ + { + "lat": 9, + "lng": -80, + "state": null, + "state_code": null, + "city": "Panama", + "geonames_city": { + "id": 3703430, + "city": "Panama", + "geonames_admin1": { + "name": null, + "ascii_name": null, + "id": null, + "code": "PA.00" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3703430 + } + ], + "links": [ + "http://www.apanac.org.pa/" + ], + "aliases": [ + "Asociación Panameña para el Avance de la Ciencia" + ], + "acronyms": [ + "APANAC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Panama", + "country_code": "PA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/05qzrbt52.json b/v1.0.1/05qzrbt52.json new file mode 100644 index 000000000..a9306ed2c --- /dev/null +++ b/v1.0.1/05qzrbt52.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/05qzrbt52", + "name": "Archaeological Museum in Poznań", + "email_address": null, + "ip_addresses": [], + "established": 1862, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.40692, + "lng": 16.92993, + "state": null, + "state_code": null, + "city": "Poznan", + "geonames_city": { + "id": 3088171, + "city": "Poznan", + "geonames_admin1": { + "name": "Greater Poland", + "id": 3337498, + "ascii_name": "Greater Poland", + "code": "PL.86" + }, + "geonames_admin2": { + "name": "Poznań", + "id": 7530858, + "ascii_name": "Poznań", + "code": "PL.86.3064" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 798544 + } + ], + "links": [ + "https://www.muzarp.poznan.pl/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://pl.wikipedia.org/wiki/Muzeum_Archeologiczne_w_Poznaniu", + "labels": [ + { + "label": "Muzeum Archeologiczne w Poznaniu", + "iso639": "pl" + } + ], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 1931 3910", + "all": [ + "0000 0001 1931 3910" + ] + }, + "Wikidata": { + "preferred": "Q11786905", + "all": [ + "Q11786905" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/05s45j557.json b/v1.0.1/05s45j557.json new file mode 100644 index 000000000..da7dfc05a --- /dev/null +++ b/v1.0.1/05s45j557.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/05s45j557", + "name": "Fortuna Field Station", + "email_address": null, + "ip_addresses": [], + "established": 1976, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 8.5, + "lng": -82.41667, + "state": null, + "state_code": null, + "city": "Provincia de Chiriquí", + "geonames_city": { + "id": 3712410, + "city": "Provincia de Chiriquí", + "geonames_admin1": { + "name": "Chiriquí", + "id": 3712410, + "ascii_name": "Chiriquí", + "code": "PA.02" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3703430 + } + ], + "links": [ + "https://stri.si.edu/facility/fortuna" + ], + "aliases": [ + "Jorge L. Araúz Research Center", + "Fortuna Station", + "Green House", + "Vivero" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Panama", + "country_code": "PA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/05sffn795.json b/v1.0.1/05sffn795.json new file mode 100644 index 000000000..ebcfb6dbb --- /dev/null +++ b/v1.0.1/05sffn795.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/05sffn795", + "name": "Gamboa Laboratories", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Smithsonian Institution", + "type": "Related", + "id": "https://ror.org/01pp8nd67" + }, + { + "label": "Smithsonian Tropical Research Institute", + "type": "Related", + "id": "https://ror.org/035jbxr46" + } + ], + "addresses": [ + { + "lat": 9.11697, + "lng": -79.70105, + "state": null, + "state_code": null, + "city": "Gamboa", + "geonames_city": { + "id": 3709373, + "city": "Gamboa", + "geonames_admin1": { + "name": "Colón", + "id": 3712073, + "ascii_name": "Colón", + "code": "PA.04" + }, + "geonames_admin2": { + "name": "Colón District", + "id": 3712075, + "ascii_name": "Colón District", + "code": "PA.04.0301" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3703430 + } + ], + "links": [ + "https://stri.si.edu/facility/gamboa" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratorios de Gamboa", + "iso639": "es" + } + ], + "country": { + "country_name": "Panama", + "country_code": "PA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.0.1/05sk14837.json b/v1.0.1/05sk14837.json new file mode 100644 index 000000000..13d403b6d --- /dev/null +++ b/v1.0.1/05sk14837.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/05sk14837", + "name": "National Science Foundation Ice Core Facility", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "National Science Foundation", + "type": "Parent", + "id": "https://ror.org/021nxhr62" + }, + { + "label": "United States Geological Survey", + "type": "Parent", + "id": "https://ror.org/035a68863" + } + ], + "addresses": [ + { + "lat": 39.43373, + "lng": -104.89439, + "state": null, + "state_code": null, + "city": "Denver-Aurora-Lakewood, CO", + "geonames_city": { + "id": 12213207, + "city": "Denver-Aurora-Lakewood, CO", + "geonames_admin1": { + "name": "Colorado", + "id": 5417618, + "ascii_name": "Colorado", + "code": "US.CO" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://icecores.org/" + ], + "aliases": [ + "National Ice Core Laboratory", + "National Ice Core Lab", + "NICL" + ], + "acronyms": [ + "NSF-ICF" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Ice_Core_Laboratory", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q6973470", + "all": [ + "Q6973470" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/05t25a229.json b/v1.0.1/05t25a229.json new file mode 100644 index 000000000..9ab2b3e89 --- /dev/null +++ b/v1.0.1/05t25a229.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/05t25a229", + "name": "Instituto Nacional de Oftalmología \"Dr. Francisco Contreras Campos\"", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Ministry of Health", + "type": "Parent", + "id": "https://ror.org/04gq6mn61" + } + ], + "addresses": [ + { + "lat": -12.04318, + "lng": -77.02824, + "state": null, + "state_code": null, + "city": "Lima", + "geonames_city": { + "id": 3936456, + "city": "Lima", + "geonames_admin1": { + "name": "Lima", + "id": 3936451, + "ascii_name": "Lima", + "code": "PE.LMA" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "https://www.ino.gob.pe/" + ], + "aliases": [], + "acronyms": [ + "INO" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Instituto_Nacional_de_Oftalmolog%C3%ADa", + "labels": [ + { + "label": "National Institute of Ophthalmology \"Dr. Francisco Contreras Campos\"", + "iso639": "en" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 4670 9277", + "all": [ + "0000 0004 4670 9277" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/05v01tw04.json b/v1.0.1/05v01tw04.json new file mode 100644 index 000000000..d98b51049 --- /dev/null +++ b/v1.0.1/05v01tw04.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/05v01tw04", + "name": "Fundación Centro de Estudios Andaluces", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.38283, + "lng": -5.97317, + "state": null, + "state_code": null, + "city": "Seville", + "geonames_city": { + "id": 2510911, + "city": "Seville", + "geonames_admin1": { + "name": "Andalusia", + "id": 2593109, + "ascii_name": "Andalusia", + "code": "ES.51" + }, + "geonames_admin2": { + "name": "Seville", + "id": 2510910, + "ascii_name": "Seville", + "code": "ES.51.SE" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.centrodeestudiosandaluces.es/" + ], + "aliases": [ + "Fundación Centra", + "Centro de Estudios Andaluces" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Centro_de_Estudios_Andaluces", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2098 0411", + "all": [ + "0000 0001 2098 0411" + ] + }, + "Wikidata": { + "preferred": "Q5761665", + "all": [ + "Q5761665" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/05wf2rt56.json b/v1.0.1/05wf2rt56.json new file mode 100644 index 000000000..4c22046ce --- /dev/null +++ b/v1.0.1/05wf2rt56.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/05wf2rt56", + "name": "State Scientific Institution \"Ukrainian Institute of Scientific and Technical Expertise and Information\"", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Ministry of Education and Science", + "type": "Parent", + "id": "https://ror.org/03bra4w96" + } + ], + "addresses": [ + { + "lat": 50.45466, + "lng": 30.5238, + "state": null, + "state_code": null, + "city": "Kyiv", + "geonames_city": { + "id": 703448, + "city": "Kyiv", + "geonames_admin1": { + "name": "Kyiv City", + "id": 703447, + "ascii_name": "Kyiv City", + "code": "UA.12" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 690791 + } + ], + "links": [ + "http://www.ukrintei.ua/" + ], + "aliases": [], + "acronyms": [ + "УкрІНТЕІ" + ], + "status": "active", + "wikipedia_url": "https://uk.wikipedia.org/wiki/%D0%A3%D0%BA%D1%80%D0%B0%D1%97%D0%BD%D1%81%D1%8C%D0%BA%D0%B8%D0%B9_%D1%96%D0%BD%D1%81%D1%82%D0%B8%D1%82%D1%83%D1%82_%D0%BD%D0%B0%D1%83%D0%BA%D0%BE%D0%B2%D0%BE-%D1%82%D0%B5%D1%85%D0%BD%D1%96%D1%87%D0%BD%D0%BE%D1%97_%D0%B5%D0%BA%D1%81%D0%BF%D0%B5%D1%80%D1%82%D0%B8%D0%B7%D0%B8_%D1%82%D0%B0_%D1%96%D0%BD%D1%84%D0%BE%D1%80%D0%BC%D0%B0%D1%86%D1%96%D1%97", + "labels": [ + { + "label": "Державна наукова установа «Український інститут науково-технічної експертизи та інформації»", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0000 9824 7458", + "all": [ + "0000 0000 9824 7458" + ] + }, + "Wikidata": { + "preferred": "Q12100495", + "all": [ + "Q12100495" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/05wmhj005.json b/v1.0.1/05wmhj005.json new file mode 100644 index 000000000..31fd6002a --- /dev/null +++ b/v1.0.1/05wmhj005.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/05wmhj005", + "name": "Finnish Social Science Data Archive", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Tampere University", + "type": "Related", + "id": "https://ror.org/033003e23" + } + ], + "addresses": [ + { + "lat": 61.49911, + "lng": 23.78712, + "state": null, + "state_code": null, + "city": "Tampere", + "geonames_city": { + "id": 634963, + "city": "Tampere", + "geonames_admin1": { + "name": "Pirkanmaa", + "id": 830704, + "ascii_name": "Pirkanmaa", + "code": "FI.06" + }, + "geonames_admin2": { + "name": "Tampere", + "id": 9610686, + "ascii_name": "Tampere", + "code": "FI.06.064" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 660013 + } + ], + "links": [ + "https://www.fsd.tuni.fi/" + ], + "aliases": [], + "acronyms": [ + "FSD" + ], + "status": "active", + "wikipedia_url": "https://fi.wikipedia.org/wiki/Yhteiskuntatieteellinen_tietoarkisto", + "labels": [ + { + "label": "Yhteiskuntatieteellinen tietoarkisto", + "iso639": "fi" + }, + { + "label": "Finlands Samhällsvetenskapliga Dataarkiv", + "iso639": "sv" + } + ], + "country": { + "country_name": "Finland", + "country_code": "FI" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7448 6517", + "all": [ + "0000 0004 7448 6517" + ] + }, + "Wikidata": { + "preferred": "Q11902697", + "all": [ + "Q11902697" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/05x83ep82.json b/v1.0.1/05x83ep82.json new file mode 100644 index 000000000..6531206cf --- /dev/null +++ b/v1.0.1/05x83ep82.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/05x83ep82", + "name": "Lviv University of Business and Law", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.83826, + "lng": 24.02324, + "state": null, + "state_code": null, + "city": "Lviv", + "geonames_city": { + "id": 702550, + "city": "Lviv", + "geonames_admin1": { + "name": "Lviv Oblast", + "id": 702549, + "ascii_name": "Lviv Oblast", + "code": "UA.15" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 690791 + } + ], + "links": [ + "http://lubp.com.ua/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://uk.wikipedia.org/wiki/%D0%9B%D1%8C%D0%B2%D1%96%D0%B2%D1%81%D1%8C%D0%BA%D0%B8%D0%B9_%D1%83%D0%BD%D1%96%D0%B2%D0%B5%D1%80%D1%81%D0%B8%D1%82%D0%B5%D1%82_%D0%B1%D1%96%D0%B7%D0%BD%D0%B5%D1%81%D1%83_%D1%82%D0%B0_%D0%BF%D1%80%D0%B0%D0%B2%D0%B0", + "labels": [ + { + "label": "Львівський університет бізнесу та права", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q16705458", + "all": [ + "Q16705458" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/05xsxgs79.json b/v1.0.1/05xsxgs79.json new file mode 100644 index 000000000..9bac5591b --- /dev/null +++ b/v1.0.1/05xsxgs79.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/05xsxgs79", + "name": "Arnold Arboretum", + "email_address": null, + "ip_addresses": [], + "established": 1872, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Harvard University", + "type": "Parent", + "id": "https://ror.org/03vek6s52" + } + ], + "addresses": [ + { + "lat": 42.35843, + "lng": -71.05977, + "state": null, + "state_code": null, + "city": "Boston", + "geonames_city": { + "id": 4930956, + "city": "Boston", + "geonames_admin1": { + "name": "Massachusetts", + "id": 6254926, + "ascii_name": "Massachusetts", + "code": "US.MA" + }, + "geonames_admin2": { + "name": "Suffolk", + "id": 4952349, + "ascii_name": "Suffolk", + "code": "US.MA.025" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.arboretum.harvard.edu/" + ], + "aliases": [ + "Arnold Arboretum of Harvard University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Arnold_Arboretum", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2293 3096", + "all": [ + "0000 0001 2293 3096" + ] + }, + "Wikidata": { + "preferred": "Q568666", + "all": [ + "Q568666" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/05xy1nn52.json b/v1.0.1/05xy1nn52.json new file mode 100644 index 000000000..6cc524033 --- /dev/null +++ b/v1.0.1/05xy1nn52.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/05xy1nn52", + "name": "Multiscale Bioimaging", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Göttingen", + "type": "Parent", + "id": "https://ror.org/01y9bpm73" + } + ], + "addresses": [ + { + "lat": 51.53443, + "lng": 9.93228, + "state": null, + "state_code": null, + "city": "Göttingen", + "geonames_city": { + "id": 2918632, + "city": "Göttingen", + "geonames_admin1": { + "name": "Lower Saxony", + "id": 2862926, + "ascii_name": "Lower Saxony", + "code": "DE.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.06.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://mbexc.de/" + ], + "aliases": [ + "EXC 2067: Multiscale Bioimaging: from Molecular Machines to Networks of Excitable Cells" + ], + "acronyms": [ + "MBExC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q96756740", + "all": [ + "Q96756740" + ] + } + } +} \ No newline at end of file diff --git a/v1.0.1/05yqfzf35.json b/v1.0.1/05yqfzf35.json new file mode 100644 index 000000000..88a45c674 --- /dev/null +++ b/v1.0.1/05yqfzf35.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/05yqfzf35", + "name": "UMR Géographie-cités", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "Related", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.91667, + "lng": 2.38333, + "state": null, + "state_code": null, + "city": "Aubervilliers", + "geonames_city": { + "id": 3036386, + "city": "Aubervilliers", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Seine-Saint-Denis", + "id": 2975246, + "ascii_name": "Seine-Saint-Denis", + "code": "FR.11.93" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://geographie-cites.cnrs.fr/" + ], + "aliases": [ + "UMR 8504" + ], + "acronyms": [ + "GC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0623 6436", + "all": [ + "0000 0004 0623 6436" + ] + }, + "Wikidata": { + "preferred": "Q51781143", + "all": [ + "Q51781143" + ] + } + } +} \ No newline at end of file